/* Classic academic, Frederik-inspired */

body{
  font-family:"Times New Roman", Times, Georgia, serif;
  max-width:760px;
  margin:56px auto;
  padding:0 22px;
  line-height:1.6;
  font-size:17px;
  color:#111;
  background:#fff;
}

/* header row: name + nav */
.header{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
}

/* name */
.header h1{
  font-size:32px;
  font-weight:700;
  margin:0;
}

/* nav */
nav{
  font-size:16px;
}
nav a{
  color:#111;
  text-decoration:none;
  margin-left:12px;
}
nav a:hover{
  text-decoration:underline;
}

/* divider */
hr{
  border:0;
  border-top:1px solid #e0e0e0;
  margin:14px 0 26px 0;
}

/* intro block */
.intro{
  display:flex;
  flex-direction:row-reverse; /* photo on the right */
  align-items:center;
  gap:22px;
  justify-content:space-between;
}

.intro img{
  width:220px;
  height:220px;
  border-radius:0;
  object-fit:cover;
  flex:0 0 auto;
}

.intro-text p{
  margin:0;
  font-size:17px;
}

.intro-text p + p{
  margin-top:18px;
}

/* mobile */
@media (max-width:600px){
  .header{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }
  nav a{ margin-left:0; margin-right:10px; }
  .intro{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* Research page spacing */

.paper{
  margin-bottom:32px;
}

.paper p{
  margin-top:4px;
  margin-bottom:0;
}
