/* body {
  font-family: Georgia, "Inter", serif;
  color: #111;
  background: #fff;
} */

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #666666;
  background: #fff;
}

.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.name {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 40px;
}

.main {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.photo img {
  width: 100%;
  border-radius: 4px;
}

.content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.links a {
  text-decoration: none;
  color: #000;
}

.links a:hover {
  text-decoration: underline;
}

.email {
  margin-top: 20px;
  font-size: 16px;
}

.job {
  font-weight: bold;
}

/* Section headers */
h2 {
  margin-top: 20px;
  font-size: 28px;
}

h3 {
  margin-top: 25px;
  font-size: 20px;
}

/* Paper list */
.papers {
  padding-left: 20px;
}

.papers li {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* .papers li {
  list-style-type: square !important;
  margin-bottom: 20px;
  line-height: 1.6;
} */
/* Maroon paper titles */
.paper-title {
  color: #800000;        /* maroon */
  text-decoration: none;
  font-weight: 500;
}

a.paper-title {
  text-decoration: underline;
}

a.paper-title:hover {
  text-decoration: underline;
}

/* Author line */
.authors {
  font-size: 0.95em;
}

.divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 40px 0 30px 0;
}

.teaching {
  list-style-type: square !important;
  padding-left: 22px !important;
}

.teaching li {
  list-style-type: square !important;
  margin-bottom: 10px;
  line-height: 1.5;
}

.bio-text {
  color: #666666;
}
.teaching-role {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #666666;
}


/* .abstract-btn {
  font-size: 14px;
  color: #2a5db0;
  cursor: pointer;
} */




/* .abstract-btn {
  color: #888;
  margin-left: 8px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
} */

/* hover */
.abstract-btn:hover {
  color: #8b0000;   /* same red as title */
  text-decoration: underline;
}


.abstract-btn {
  font-size: 14px;
  color: #777;
  cursor: pointer;
  /* margin-left: 12px; */
  position: relative;
  top: -1px;  
}
/* .abstract-btn:hover {
  text-decoration: underline;
} */

.arrow-icon {
  font-size: 10px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}



.paper-abstract {
  display: none;
  margin-left: 2px;
  padding-left: 16px;          /* gap between bar and text */

  border-left: 3px solid #444; /* the vertical bar */
  margin-top: 6px;
  margin-bottom: 2px;
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  max-width: 550px;
}

/* Mobile optimizations */
@media screen and (max-width: 768px) {
  .container {
    margin: 20px auto;
    padding: 0 15px;
  }

  .name {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
  }

  .main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .photo {
    max-width: 250px;
    margin: 0 auto;
  }

  .content p {
    font-size: 16px;
  }

  h2 {
    font-size: 24px;
  }

  .paper-abstract {
    max-width: 100%;
    font-size: 14px;
  }
}


