* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #1c2b4a;
  background-color: #f7f4ee;
}

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

.site-header {
  border-bottom: 3px solid #1c2b4a;
  padding: 20px 0;
  background-color: #f7f4ee;
}
.site-header .header-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.site-title {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.site-title .site-name {
  font-size: 1.85em;
  font-weight: 700;
  color: #1c2b4a;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.site-title .site-tagline {
  font-size: 0.95em;
  font-style: italic;
  font-weight: 400;
  color: #e0721a;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 25px;
  flex-wrap: wrap;
}

.nav-link {
  color: #1c2b4a;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 5px 2px;
  border-bottom: 3px solid transparent;
}
.nav-link:hover {
  border-bottom-color: rgb(235.916, 155.176, 90.584);
  text-decoration: none;
}
.nav-link.current {
  border-bottom-color: #e0721a;
  color: #1c2b4a;
}

main {
  padding: 40px 0;
  min-height: calc(100vh - 200px);
}

h1, h2, h3, h4, h5, h6 {
  color: #1c2b4a;
  margin-bottom: 15px;
  font-weight: 600;
}

h1 {
  font-size: 2.2em;
}

h2 {
  font-size: 1.4em;
  border-bottom: 4px solid #e0721a;
  padding-bottom: 8px;
  margin-top: 30px;
}

h3 {
  font-size: 1.2em;
  color: #2e6b4e;
}

p {
  margin-bottom: 15px;
}

a {
  color: #1c2b4a;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #e0721a;
  text-decoration: underline;
}

p a, .news-content a {
  color: #e0721a;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
p a:hover, .news-content a:hover {
  color: rgb(178.304, 90.744, 20.696);
}

.profile-section {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
  margin-top: 20px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .profile-section {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 10px;
  }
}

.profile-text {
  flex: 2;
}

.profile-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .profile-sidebar {
    margin-top: 0;
    width: 100%;
    max-width: 280px;
  }
}

.profile-image {
  width: 180px;
  height: 210px;
  object-fit: cover;
  object-position: top;
  border-radius: 3px;
  border: none;
  box-shadow: 8px 8px 0 #e0721a;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .profile-image {
    width: 140px;
    height: 165px;
  }
}

.role {
  text-align: center;
  color: #5c5c52;
  font-weight: 400;
  font-size: 0.9em;
  line-height: 1.5;
  margin-bottom: 20px;
  border-bottom: 2px solid #d8d3c8;
  padding-bottom: 15px;
  width: 100%;
}
.role a {
  color: #e0721a;
  font-size: 0.9em;
  display: block;
  margin-top: 8px;
}

.profile-sidebar .social-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  width: 100%;
}
.profile-sidebar .social-links a {
  color: #1c2b4a;
  font-size: 1.5em;
  line-height: 1;
  transition: color 0.15s ease, transform 0.15s ease;
  text-decoration: none;
}
.profile-sidebar .social-links a:hover {
  color: #e0721a;
  transform: scale(1.15);
  text-decoration: none;
}

.pub-note {
  color: #5c5c52;
  font-size: 0.9em;
  margin-bottom: 10px;
}

.publication {
  margin-bottom: 25px;
  padding: 25px;
  background-color: #eeeae0;
  border-radius: 3px;
  transition: box-shadow 0.2s ease;
}
.publication:hover {
  box-shadow: 6px 6px 0 #e0721a;
}
.publication .pub-title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1em;
}
.publication .pub-title a {
  color: #1c2b4a;
  text-decoration: none;
}
.publication .pub-title a:hover {
  color: #e0721a;
  text-decoration: underline;
}
.publication .pub-authors {
  margin-bottom: 5px;
  color: #5c5c52;
}
.publication .pub-venue {
  font-style: italic;
  color: #8a8578;
  margin-bottom: 8px;
  font-size: 0.95em;
}
.publication .pub-award {
  font-size: 0.85em;
  font-weight: 600;
  color: #2e6b4e;
  margin-bottom: 10px;
}
.publication .pub-links a {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 6px;
  font-size: 0.85em;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 2px;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 2px solid;
  color: #e0721a;
  border-color: #e0721a;
  background-color: transparent;
}
.publication .pub-links a:hover {
  background-color: #e0721a;
  color: white;
  text-decoration: none;
}
.publication .pub-links a[href*=github], .publication .pub-links a[href*=code], .publication .pub-links a[href*=Code] {
  color: #2e6b4e;
  border-color: #2e6b4e;
}
.publication .pub-links a[href*=github]:hover, .publication .pub-links a[href*=code]:hover, .publication .pub-links a[href*=Code]:hover {
  background-color: #2e6b4e;
  color: white;
}
.publication .pub-links a[href*=Website], .publication .pub-links a[href*=".com"]:not([href*=nature]):not([href*=doi]):not([href*=acm]):not([href*=github]) {
  color: #c13b2e;
  border-color: #c13b2e;
}
.publication .pub-links a[href*=Website]:hover, .publication .pub-links a[href*=".com"]:not([href*=nature]):not([href*=doi]):not([href*=acm]):not([href*=github]):hover {
  background-color: #c13b2e;
  color: white;
}

.news-item {
  margin-bottom: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #d8d3c8;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .news-item {
    flex-direction: column;
    gap: 5px;
  }
}
.news-item .news-date {
  font-weight: 600;
  color: white;
  background-color: #e0721a;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 0.85em;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: auto;
}
.news-item .news-content {
  flex: 1;
  line-height: 1.5;
}

.faq-item {
  margin-bottom: 25px;
}
.faq-item .faq-question {
  font-weight: 600;
  color: #1c2b4a;
  margin-bottom: 15px;
  font-size: 1.4em;
  border-bottom: 4px solid #e0721a;
  padding-bottom: 8px;
  margin-top: 30px;
}
.faq-item .faq-answer {
  padding-left: 0;
}
.faq-item .faq-answer ul, .faq-item .faq-answer ol {
  margin: 10px 0 10px 20px;
}
.faq-item .faq-answer li {
  margin-bottom: 5px;
}

.cv-actions {
  margin-top: 40px;
  margin-bottom: 20px;
}

.cv-download {
  display: inline-block;
  padding: 8px 20px;
  background-color: #1c2b4a;
  color: white;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.9em;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.cv-download:hover {
  background-color: #e0721a;
  color: white;
  text-decoration: none;
}

.cv-embed iframe {
  width: 100%;
  height: 85vh;
  border: 1px solid #d8d3c8;
  border-radius: 3px;
}

.site-footer {
  border-top: none;
  padding: 30px 0;
  text-align: center;
  color: #eeeae0;
  font-size: 0.9em;
  background-color: #1c2b4a;
}
.site-footer a {
  color: #eeeae0;
}
.site-footer a:hover {
  color: #e0721a;
  text-decoration: none;
}
.site-footer .social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.site-footer .social-links a {
  color: #e0721a;
  font-size: 1.4em;
  line-height: 1;
  transition: color 0.15s ease, transform 0.15s ease;
  text-decoration: none;
}
.site-footer .social-links a:hover {
  color: rgb(235.916, 155.176, 90.584);
  transform: scale(1.15);
  text-decoration: none;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .header-content {
    flex-direction: column;
    gap: 15px;
  }
  .nav-list {
    justify-content: center;
    gap: 15px;
  }
  h1 {
    font-size: 1.8em;
  }
  h2 {
    margin-left: 0;
    padding-left: 0;
  }
}

/*# sourceMappingURL=style.css.map */