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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #374151;
  background: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #0f8a7e;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #1CBAAA;
}

h1, h2, h3, h4 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0d2b28;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  padding-left: 1.4rem;
}

img {
  max-width: 100%;
  height: auto;
}

.section {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f8a7e;
  border-bottom: 2px solid #0f8a7e;
  padding-bottom: 0.4rem;
  margin-bottom: 1.5rem;
}

.site-main {
  min-height: calc(100vh - 64px - 80px);
  padding-top: 64px;
}

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

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #e4f8f6;
  color: #0f8a7e;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  padding: 0.1rem 0.45rem;
  border-radius: 3px;
  background: #f7fdfb;
  color: #6b7280;
  border: 1px solid #d6eeeb;
  margin: 0.1rem 0.1rem 0.1rem 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #ffffff;
  border-bottom: 1px solid #d6eeeb;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-brand {
  font-weight: 600;
  font-size: 1rem;
  color: #0f8a7e;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-brand:hover {
  color: #1CBAAA;
}

.nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.2rem;
  margin-left: auto;
}
.nav-links li a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #6b7280;
  padding: 0.3rem 0.65rem;
  border-radius: 5px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links li a:hover, .nav-links li a.active {
  color: #0f8a7e;
  background: #e4f8f6;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0d2b28;
  border-radius: 2px;
  transition: 0.2s ease;
}

.profile-section {
  padding: 3.5rem 0 2.5rem;
}

.profile-hero {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.profile-photo {
  flex-shrink: 0;
  width: 220px;
  height: 270px;
  border-radius: 10px;
  object-fit: cover;
  object-position: top center;
  border: 3px solid #e4f8f6;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.12);
}

.profile-photo-placeholder {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #0f8a7e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -1px;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.2);
}

.profile-info {
  flex: 1;
  padding-top: 0;
}
.profile-info h1 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0d2b28;
  margin-bottom: 0.15rem;
}
.profile-info .profile-title {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 0.1rem;
}
.profile-info .profile-institution {
  font-size: 0.95rem;
  color: #0f8a7e;
  font-weight: 500;
  margin-bottom: 1rem;
}
.profile-info .profile-bio {
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 560px;
}
.profile-info .profile-social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.profile-info .profile-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: #6b7280;
  padding: 0.25rem 0.6rem;
  border: 1px solid #d6eeeb;
  border-radius: 20px;
  transition: all 0.2s ease;
  font-weight: 500;
}
.profile-info .profile-social a i {
  font-size: 0.85rem;
}
.profile-info .profile-social a:hover {
  color: #0f8a7e;
  border-color: #0f8a7e;
  background: #e4f8f6;
}

.news-card-body {
  font-size: 0.84rem;
  color: #374151;
  line-height: 1.55;
  flex: 1;
}
.news-card-body a {
  color: #0f8a7e;
  font-weight: 500;
}
.news-card-body a:hover {
  text-decoration: underline;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 5px;
  width: fit-content;
  border: 1px solid;
  margin-right: 0.4rem;
  vertical-align: middle;
  position: relative;
}
.news-tag i {
  width: 11px;
  height: 11px;
  font-size: 0.62rem;
}
.news-tag.tag-paper {
  background: #f0fdf4;
  color: #15803d;
  border-color: #dcfce7;
}
.news-tag.tag-grant {
  background: #eff6ff;
  color: #1e3a8a;
  border-color: #bfdbfe;
}
.news-tag.tag-award {
  background: #fffbeb;
  color: #b45309;
  border-color: #fde68a;
}
.news-tag.tag-talk {
  background: #faf5ff;
  color: #7e22ce;
  border-color: #e9d5ff;
}
.news-tag.tag-keynote {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}
.news-tag.tag-keynote::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 6px;
  height: 6px;
  background: #1CBAAA;
  border-radius: 50%;
  border: 1.5px solid #fff;
}
.news-tag.tag-media {
  background: #f1f5f9;
  color: #334155;
  border-color: #cbd5e1;
}
.news-tag.tag-service {
  background: #fdf4ff;
  color: #7e22ce;
  border-color: #f3e8ff;
}

.callout {
  background: #e4f8f6;
  border-left: 4px solid #0f8a7e;
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.callout strong {
  color: #0f8a7e;
}
.callout a {
  color: #1CBAAA;
  font-weight: 500;
}
.callout a:hover {
  text-decoration: underline;
}

.publications-page {
  padding: 2rem 0;
}

.bibliography {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bibliography li {
  padding: 0;
  border: none;
}

.pub-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid #d6eeeb;
  align-items: start;
}
.pub-row:last-child {
  border-bottom: none;
}

.pub-venue-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding-top: 2px;
}

.venue {
  display: inline-flex;
  align-items: center;
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 4px 9px;
  border-radius: 5px;
  border: 1px solid;
  background: #e4f8f6;
  color: #0f8a7e;
  border-color: #b0e8e2;
}

.pub-year-label {
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  font-size: 0.73rem;
  color: #6b7280;
  font-weight: 500;
}

.venue.icse {
  background: #f5f3ff;
  color: #6d28d9;
  border-color: #ddd6fe;
}

.venue.fse,
.venue.esec {
  background: #fdf4ff;
  color: #a21caf;
  border-color: #f5d0fe;
}

.venue.ase {
  background: #f0fdf4;
  color: #15803d;
  border-color: #dcfce7;
}

.venue.msr {
  background: #fff7ed;
  color: #c2410c;
  border-color: #fed7aa;
}

.venue.saner {
  background: #eef2ff;
  color: #4f46e5;
  border-color: #c7d2fe;
}

.venue.icpc {
  background: #fffbeb;
  color: #b45309;
  border-color: #fde68a;
}

.venue.icsme,
.venue.icsme-era {
  background: #faf5ff;
  color: #7e22ce;
  border-color: #e9d5ff;
}

.venue.issta {
  background: #fff1f2;
  color: #be123c;
  border-color: #fecdd3;
}

.venue.ease {
  background: #ecfeff;
  color: #0e7490;
  border-color: #a5f3fc;
}

.venue.tse {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.venue.tosem {
  background: #f0fdfa;
  color: #0f766e;
  border-color: #99f6e4;
}

.venue.emse {
  background: #f0f9ff;
  color: #0369a1;
  border-color: #bae6fd;
}

.venue.jss {
  background: #eef2ff;
  color: #4338ca;
  border-color: #c7d2fe;
}

.venue.ist {
  background: #f8fafc;
  color: #475569;
  border-color: #e2e8f0;
}

.venue.infsof,
.venue.infsw {
  background: #fefce8;
  color: #854d0e;
  border-color: #fef08a;
}

.pub-content {
  min-width: 0;
}

.pub-title {
  font-weight: 600;
  font-size: 0.93rem;
  color: #0d2b28;
  line-height: 1.45;
  margin-bottom: 0.3rem;
}

.pub-authors {
  font-size: 0.84rem;
  color: #6b7280;
  margin-bottom: 0.2rem;
}
.pub-authors strong {
  color: #374151;
}

.pub-venue-full {
  font-size: 0.8rem;
  color: #6b7280;
  font-style: italic;
  margin-bottom: 0.45rem;
}

.pub-links {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.pub-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}
.pub-link i {
  font-size: 0.7rem;
}
.pub-link.pub-link-preprint {
  background: #f0fdf4;
  color: #15803d;
  border-color: #dcfce7;
}
.pub-link.pub-link-preprint:hover {
  background: #15803d;
  color: #fff;
  border-color: #15803d;
}
.pub-link.pub-link-doi {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}
.pub-link.pub-link-doi:hover {
  background: #1d4ed8;
  color: #fff;
  border-color: #1d4ed8;
}

.pub-year-nav {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #d6eeeb;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.25rem;
  padding: 0.55rem 0;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.pub-year-nav::-webkit-scrollbar {
  display: none;
}

.pub-year-pill {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  border: 1px solid #d6eeeb;
  color: #6b7280;
  background: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.pub-year-pill:hover {
  color: #1CBAAA;
  border-color: #1CBAAA;
  background: #e4f8f6;
  text-decoration: none;
}
.pub-year-pill.active {
  background: #1CBAAA;
  color: #ffffff;
  border-color: #1CBAAA;
}

h2.bibliography {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f8a7e;
  border-bottom: 2px solid #0f8a7e;
  padding-bottom: 0.4rem;
  margin: 2rem 0 0.75rem;
}
h2.bibliography:first-of-type {
  margin-top: 0;
}

.pub-row--book {
  grid-template-columns: 110px 1fr;
  align-items: start;
}

.book-cover {
  width: 100px;
  flex-shrink: 0;
}

.book-cover-img {
  width: 100%;
  display: block;
  border-radius: 4px;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.18);
}

.book-cover-placeholder {
  width: 100px;
  height: 140px;
  border-radius: 4px;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.18);
  background: linear-gradient(150deg, #0f8a7e 0%, #1CBAAA 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.5rem;
  text-align: center;
}
.book-cover-placeholder i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.55);
}
.book-cover-placeholder .book-cover-publisher {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.book-cover-placeholder .book-cover-year {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
}

@media (max-width: 560px) {
  .pub-row,
  .pub-row--book {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .pub-venue-col {
    flex-direction: row;
    align-items: center;
  }
  .book-cover,
  .book-cover-placeholder {
    width: 80px;
  }
  .book-cover-placeholder {
    height: 112px;
  }
}
.students-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.student-card {
  border: 1px solid #d6eeeb;
  border-radius: 10px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  background: #ffffff;
}
.student-card:hover {
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.1);
  transform: translateY(-2px);
}
.student-card .student-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.75rem;
  display: block;
  border: 2px solid #e4f8f6;
}
.student-card .student-avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0f8a7e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 0.75rem;
}
.student-card .student-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: #0d2b28;
  margin-bottom: 0.2rem;
}
.student-card .student-degree {
  font-size: 0.78rem;
  color: #0f8a7e;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.student-card .student-topic {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.4;
}
.student-card .student-links {
  margin-top: 0.6rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.student-card .student-links a {
  color: #6b7280;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.student-card .student-links a:hover {
  color: #0f8a7e;
}

.alumni-list {
  list-style: none;
  padding: 0;
}
.alumni-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #d6eeeb;
  font-size: 0.9rem;
}
.alumni-list li:last-child {
  border-bottom: none;
}
.alumni-list li .alumni-name {
  font-weight: 500;
  color: #0d2b28;
}
.alumni-list li .alumni-degree {
  color: #6b7280;
  font-size: 0.82rem;
}
.alumni-list li .alumni-year {
  color: #6b7280;
  font-size: 0.82rem;
  margin-left: auto;
  white-space: nowrap;
}
.alumni-list li .alumni-now {
  font-size: 0.82rem;
  color: #1CBAAA;
}

.page-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.page-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d6eeeb;
}
.page-header h1 {
  font-size: 1.8rem;
  color: #0d2b28;
  margin-bottom: 0.3rem;
}
.page-header .page-description {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
}

.page-content .section {
  margin-bottom: 2.5rem;
}
.page-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.page-content table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  padding: 0.5rem 0.75rem;
  border-bottom: 2px solid #d6eeeb;
}
.page-content table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid #d6eeeb;
  color: #374151;
  vertical-align: top;
}
.page-content table tr:last-child td {
  border-bottom: none;
}

.item-list {
  list-style: none;
  padding: 0;
}
.item-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #d6eeeb;
  font-size: 0.92rem;
}
.item-list li:last-child {
  border-bottom: none;
}
.item-list li .item-title {
  font-weight: 500;
  color: #0d2b28;
}
.item-list li .item-meta {
  font-size: 0.82rem;
  color: #6b7280;
  margin-top: 0.1rem;
}

.talk-list {
  list-style: none;
  padding: 0;
}
.talk-list .talk-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0.4rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #d6eeeb;
  font-size: 0.9rem;
  align-items: baseline;
}
.talk-list .talk-item:last-child {
  border-bottom: none;
}
.talk-list .talk-item .talk-year {
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 500;
}
.talk-list .talk-item .talk-title {
  font-weight: 500;
  color: #0d2b28;
  margin-bottom: 0.15rem;
}
.talk-list .talk-item .talk-venue {
  color: #6b7280;
  font-size: 0.82rem;
}
.talk-list .talk-item .talk-links {
  margin-top: 0.3rem;
  display: flex;
  gap: 0.4rem;
}

.site-footer {
  background: #f7fdfb;
  border-top: 1px solid #d6eeeb;
  padding: 1.5rem 0;
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: #6b7280;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
}
.footer-links a {
  color: #6b7280;
  font-size: 1rem;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #0f8a7e;
}

.talks-strip {
  border: 1px solid #d6eeeb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 0.5rem;
}

.talks-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #d6eeeb;
  background: #f7fdfb;
  flex-wrap: wrap;
  gap: 8px;
}

.ts-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f8a7e;
  font-weight: 600;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #1CBAAA;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.live-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #1CBAAA;
  opacity: 0.35;
  animation: ts-pulse 2s ease-out infinite;
}

@keyframes ts-pulse {
  0% {
    transform: scale(1);
    opacity: 0.35;
  }
  70% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.ts-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #0d2b28;
  margin-top: 3px;
}
.ts-heading em {
  color: #0f8a7e;
  font-style: italic;
}

.ts-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.ts-page-label {
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  font-size: 0.7rem;
  color: #6b7280;
  margin-right: 4px;
  letter-spacing: 0.04em;
  user-select: none;
}
.ts-page-label b {
  color: #0d2b28;
  font-weight: 700;
}

.ts-arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #d6eeeb;
  background: #ffffff;
  border-radius: 7px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}
.ts-arrow:hover:not(:disabled) {
  border-color: #1CBAAA;
  color: #0f8a7e;
  background: #e4f8f6;
}
.ts-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.talks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.talk-cell {
  padding: 18px 20px;
  border-right: 1px solid #d6eeeb;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: background 0.2s ease;
}
.talk-cell:last-child, .talk-cell:nth-child(4n) {
  border-right: none;
}
.talk-cell:nth-child(-n+4) {
  border-bottom: 1px solid #d6eeeb;
}
.talk-cell:hover {
  background: #f7fdfb;
}
.talk-cell.featured {
  background: linear-gradient(135deg, #e4f8f6 0%, transparent 65%);
  position: relative;
}
.talk-cell.featured::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #1CBAAA, #0f8a7e);
  border-radius: 3px 0 0 3px;
}
.talk-cell.ts-hidden {
  display: none;
}

.ts-date {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  margin-top: 1px;
}

.ts-title-text {
  font-size: 0.87rem;
  font-weight: 600;
  color: #0d2b28;
  line-height: 1.4;
  flex: 1;
}

.ts-meta {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.35;
}
.ts-meta b {
  color: #374151;
}

.ts-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #0f8a7e;
  margin-top: auto;
  transition: gap 0.2s ease, color 0.2s ease;
}
.ts-link i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}
.ts-link:hover {
  color: #1CBAAA;
  text-decoration: none;
}
.ts-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 760px) {
  .talks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .talk-cell:nth-child(4n) {
    border-right: 1px solid #d6eeeb;
  }
  .talk-cell:nth-child(-n+4) {
    border-bottom: none;
  }
  .talk-cell:nth-child(2n) {
    border-right: none;
  }
  .talk-cell:nth-child(-n+2) {
    border-bottom: 1px solid #d6eeeb;
  }
}
@media (max-width: 480px) {
  .talks-grid {
    grid-template-columns: 1fr;
  }
  .talk-cell {
    border-right: none !important;
    border-bottom: 1px solid #d6eeeb;
  }
  .talk-cell:last-child {
    border-bottom: none;
  }
}
.tl-track {
  position: relative;
  padding-left: 36px;
}
.tl-track::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #1CBAAA 0%, #d6eeeb 100%);
  border-radius: 2px;
}

.tl-year {
  position: relative;
  margin: 2.4rem 0 1rem;
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f8a7e;
}
.tl-year:first-child {
  margin-top: 0;
}
.tl-year::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #0f8a7e;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px #0f8a7e;
  border-radius: 2px;
}

.tl-entry {
  position: relative;
  margin-bottom: 10px;
}
.tl-entry::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #1CBAAA;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.tl-entry:hover::before {
  background: #1CBAAA;
}
.tl-entry.tl-keynote::before {
  background: #1CBAAA;
  border-color: #0f8a7e;
  box-shadow: 0 0 0 3px #e4f8f6;
}

.tl-card {
  border: 1px solid #d6eeeb;
  border-radius: 10px;
  padding: 14px 18px;
  background: #ffffff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.tl-card:hover {
  box-shadow: 0 4px 18px rgba(28, 186, 170, 0.1);
  border-color: #1CBAAA;
  transform: translateX(4px);
}
.tl-keynote .tl-card {
  background: linear-gradient(135deg, #e4f8f6 0%, #ffffff 55%);
  border-color: #1CBAAA;
  border-left: 3px solid #0f8a7e;
}

.tl-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 8px;
}

.tl-type {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.tl-type i {
  font-size: 0.68rem;
}
.tl-type.tl-type--keynote {
  background: #0f8a7e;
  color: #ffffff;
}
.tl-type.tl-type--talk {
  background: #e4f8f6;
  color: #0f8a7e;
  border: 1px solid #d6eeeb;
}
.tl-type.tl-type--tutorial {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #dcfce7;
}
.tl-type.tl-type--panel {
  background: #faf5ff;
  color: #7e22ce;
  border: 1px solid #e9d5ff;
}

.tl-date {
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  font-size: 0.65rem;
  color: #6b7280;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.tl-venue {
  font-size: 1rem;
  font-weight: 700;
  color: #0f8a7e;
  line-height: 1.25;
  margin-bottom: 4px;
}

.tl-title {
  font-size: 0.86rem;
  color: #374151;
  line-height: 1.5;
  font-style: italic;
}

.tl-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
  gap: 8px;
  flex-wrap: wrap;
}

.tl-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  color: #6b7280;
}
.tl-location i {
  font-size: 0.68rem;
  color: #1CBAAA;
}

.tl-links {
  display: flex;
  gap: 8px;
}
.tl-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  font-weight: 500;
  color: #0f8a7e;
  padding: 2px 8px;
  border: 1px solid #d6eeeb;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.tl-links a i {
  font-size: 0.68rem;
}
.tl-links a:hover {
  background: #e4f8f6;
  border-color: #1CBAAA;
  text-decoration: none;
}

@media (max-width: 480px) {
  .tl-track {
    padding-left: 28px;
  }
  .tl-track::before {
    left: 7px;
  }
  .tl-year::before, .tl-entry::before {
    left: -23px;
  }
  .tl-venue {
    font-size: 0.92rem;
  }
}
.svc-sub-h {
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f8a7e;
  margin: 1.6rem 0 0.9rem;
}
.svc-sub-h:first-child {
  margin-top: 0;
}

.org-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #e4f8f6;
  border: 1px solid #d6eeeb;
  border-radius: 10px;
  margin-bottom: 8px;
}
.org-card:last-of-type {
  margin-bottom: 20px;
}

.org-card-icon {
  width: 38px;
  height: 38px;
  background: #ffffff;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #0f8a7e;
  border: 1px solid #d6eeeb;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.org-card-text {
  line-height: 1.35;
}
.org-card-text b {
  color: #0d2b28;
  font-size: 0.9rem;
}
.org-card-text small {
  display: block;
  color: #6b7280;
  font-size: 0.78rem;
  margin-top: 1px;
}

.svc-timeline {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.svc-timeline-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.svc-year {
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: #6b7280;
  min-width: 34px;
  padding-top: 3px;
  flex-shrink: 0;
}

.svc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.pc-pill {
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  font-size: 0.67rem;
  background: #f7fdfb;
  color: #374151;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid #d6eeeb;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: default;
}
.pc-pill:hover {
  background: #e4f8f6;
  border-color: #1CBAAA;
  color: #0f8a7e;
}
.pc-pill.pc-pill--chair {
  background: #e4f8f6;
  color: #0f8a7e;
  border-color: #1CBAAA;
  font-weight: 700;
}
.pc-pill.pc-pill--chair:hover {
  background: #0f8a7e;
  border-color: #0f8a7e;
  color: #ffffff;
}

.svc-reviewing {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.svc-journal-pill {
  font-size: 0.78rem;
  font-weight: 500;
  color: #374151;
  background: #f7fdfb;
  border: 1px solid #d6eeeb;
  padding: 4px 10px;
  border-radius: 5px;
  transition: all 0.2s ease;
  cursor: default;
}
.svc-journal-pill:hover {
  background: #e4f8f6;
  border-color: #1CBAAA;
  color: #0f8a7e;
}

@media (max-width: 480px) {
  .svc-timeline-row {
    flex-direction: column;
    gap: 5px;
  }
  .svc-year {
    min-width: unset;
  }
}
.tools-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tool-card {
  border: 1px solid #d6eeeb;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.tool-card:hover {
  box-shadow: 0 6px 24px rgba(28, 186, 170, 0.1);
  border-color: #1CBAAA;
}
.tool-card.tool-card--discontinued {
  opacity: 0.7;
  border-style: dashed;
}
.tool-card.tool-card--discontinued:hover {
  border-color: #d6eeeb;
  box-shadow: none;
}

.tool-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px 14px;
  border-bottom: 1px solid #d6eeeb;
  background: #f7fdfb;
}

.tool-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.tool-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: contain;
}

.tool-icon--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f8a7e 0%, #1CBAAA 100%);
  color: #ffffff;
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  font-size: 1.1rem;
  font-weight: 700;
  border: 1px solid #d6eeeb;
  user-select: none;
}

.tool-name-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.tool-name {
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f8a7e;
  line-height: 1.2;
}

.tool-tagline {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.3;
}

.tool-header-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tool-platform {
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  background: #e4f8f6;
  color: #0f8a7e;
  border: 1px solid #d6eeeb;
  white-space: nowrap;
}

.tool-status {
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.tool-status.status-active {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #dcfce7;
}
.tool-status.status-discontinued {
  background: #f1f5f9;
  color: #6b7280;
  border: 1px solid #d6eeeb;
}

.tool-body {
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tool-description {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.65;
}

.tool-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tool-feature {
  font-size: 0.72rem;
  font-weight: 500;
  color: #374151;
  background: #f7fdfb;
  border: 1px solid #d6eeeb;
  padding: 3px 9px;
  border-radius: 20px;
}

.tool-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 22px 16px;
  border-top: 1px solid #d6eeeb;
}
.tool-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #0f8a7e;
  padding: 5px 12px;
  border: 1px solid #d6eeeb;
  border-radius: 6px;
  background: #ffffff;
  transition: all 0.2s ease;
}
.tool-links a i {
  font-size: 0.72rem;
}
.tool-links a:hover {
  background: #e4f8f6;
  border-color: #1CBAAA;
  text-decoration: none;
}
.tool-links a.tool-link--video {
  background: #0f8a7e;
  color: #ffffff;
  border-color: #0f8a7e;
}
.tool-links a.tool-link--video:hover {
  background: #1CBAAA;
  border-color: #1CBAAA;
}

@media (max-width: 560px) {
  .tool-header {
    flex-direction: column;
    gap: 8px;
  }
  .tool-header-right {
    justify-content: flex-start;
  }
  .tool-name {
    font-size: 0.98rem;
  }
}
.layout-outer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 0 2.5rem;
  align-items: start;
}

.layout-main {
  min-width: 0;
}
.layout-main > .container {
  padding-left: 0;
  padding-right: 0;
}
.layout-main > .page-container {
  padding-left: 0;
  padding-right: 0;
}

.sidebar {
  position: sticky;
  top: calc(64px + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 2rem;
  padding-bottom: 3rem;
  width: 90%;
}

.sb-card {
  border: 1px solid #d6eeeb;
  border-radius: 10px;
  padding: 16px;
  background: #ffffff;
}

.sb-heading {
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f8a7e;
  margin-bottom: 10px;
}

.sb-avatar {
  display: block;
  width: 72px;
  height: 88px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
  border: 2px solid #e4f8f6;
  margin: 0 auto 10px;
}

.sb-name {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0d2b28;
  margin-bottom: 2px;
}

.sb-title {
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
}

.sb-inst {
  text-align: center;
  font-size: 0.72rem;
  color: #0f8a7e;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 3px;
}

.sb-social {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sb-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #374151;
  padding: 5px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 500;
}
.sb-social a i {
  width: 14px;
  text-align: center;
  font-size: 0.8rem;
  color: #0f8a7e;
  flex-shrink: 0;
}
.sb-social a:hover {
  background: #e4f8f6;
  color: #0f8a7e;
  text-decoration: none;
}

.sb-logo-link {
  display: block;
  transition: opacity 0.2s ease;
}
.sb-logo-link img {
  display: block;
  width: 100%;
  height: auto;
}
.sb-logo-link:hover {
  opacity: 0.82;
}

.sb-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sb-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0d2b28;
  transition: all 0.2s ease;
}
.sb-link-item:hover {
  background: #e4f8f6;
  color: #0f8a7e;
  text-decoration: none;
}

.sb-link-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}
.sb-link-icon--fa {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e4f8f6;
  border: 1px solid #d6eeeb;
  font-size: 0.82rem;
  color: #0f8a7e;
}

.sb-book {
  display: block;
  transition: opacity 0.2s ease;
}
.sb-book:hover {
  opacity: 0.85;
  text-decoration: none;
}

.sb-book-cover {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  display: block;
}

.sb-affiliations {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sb-affil-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #374151;
  padding: 5px 8px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.sb-affil-item i {
  width: 14px;
  text-align: center;
  font-size: 0.78rem;
  color: #0f8a7e;
  flex-shrink: 0;
}
.sb-affil-item[href]:hover {
  background: #e4f8f6;
  color: #0f8a7e;
  text-decoration: none;
}

@media (max-width: 820px) {
  .layout-outer {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    padding-top: 0;
    padding-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .sidebar {
    grid-template-columns: 1fr;
  }
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 1.5rem 0;
}
.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.blog-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #d6eeeb;
}

.blog-heading {
  font-size: 2rem;
  color: #0d2b28;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}

.blog-subheading {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #d6eeeb;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  text-decoration: none;
  background: #ffffff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-featured:hover {
  box-shadow: 0 6px 28px rgba(15, 138, 126, 0.13);
  transform: translateY(-2px);
}

.blog-featured-img {
  min-height: 280px;
  background-size: cover;
  background-position: center;
}
.blog-featured-img--placeholder {
  background: linear-gradient(135deg, #0f8a7e 0%, #1CBAAA 100%);
}

.blog-featured-content {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.blog-featured-meta time {
  font-size: 0.78rem;
  color: #6b7280;
}

.blog-featured-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0d2b28;
  line-height: 1.3;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.blog-featured-excerpt {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.65;
  margin: 0 0 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #d6eeeb;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  background: #ffffff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-card:hover {
  box-shadow: 0 4px 20px rgba(15, 138, 126, 0.11);
  transform: translateY(-2px);
}
.blog-card:hover .blog-card-title {
  color: #0f8a7e;
}

.blog-card-img {
  height: 150px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.blog-card-img--placeholder {
  background: linear-gradient(135deg, #e4f8f6 0%, #d6eeeb 100%);
}

.blog-card-body {
  padding: 1.1rem 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}
.blog-card-meta time {
  font-size: 0.75rem;
  color: #6b7280;
}

.blog-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0d2b28;
  line-height: 1.35;
  margin: 0 0 0.5rem;
  transition: color 0.2s ease;
}

.blog-card-excerpt {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0 0 0.75rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.18rem 0.55rem;
  border-radius: 3px;
  background: #0f8a7e;
  color: #ffffff;
}
.post-category--sm {
  font-size: 0.63rem;
  padding: 0.14rem 0.45rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.post-tags--sm {
  margin-top: auto;
}

.post-tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  background: #e4f8f6;
  color: #0f8a7e;
  text-decoration: none;
  border: 1px solid #d6eeeb;
  transition: background 0.2s ease, color 0.2s ease;
}
.post-tag:hover {
  background: #0f8a7e;
  color: #ffffff;
  border-color: #0f8a7e;
}

.post-article {
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.post-hero {
  margin-bottom: 2.5rem;
}

.post-hero-img {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 1.75rem;
}

.post-hero-body {
  padding: 0;
}
.post-hero-body--no-img {
  padding-top: 2rem;
  border-top: none;
}

.post-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.post-meta-row time {
  font-size: 0.82rem;
  color: #6b7280;
}

.post-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0d2b28;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.post-lede {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0 0 1.1rem;
  font-style: italic;
}

.post-body {
  font-size: 0.97rem;
  line-height: 1.75;
  color: #374151;
  border-top: 1px solid #d6eeeb;
  padding-top: 2rem;
}
.post-body h2, .post-body h3 {
  color: #0d2b28;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.post-body h2 {
  font-size: 1.25rem;
}
.post-body h3 {
  font-size: 1.05rem;
}
.post-body p {
  margin: 0 0 1.1rem;
}
.post-body a {
  color: #0f8a7e;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-body a:hover {
  color: #1CBAAA;
}
.post-body ul, .post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.1rem;
}
.post-body ul li, .post-body ol li {
  margin-bottom: 0.35rem;
}
.post-body blockquote {
  border-left: 3px solid #1CBAAA;
  padding: 0.5rem 1rem;
  margin: 1.25rem 0;
  color: #6b7280;
  font-style: italic;
}
.post-body code {
  font-family: "SF Mono", Consolas, monospace;
  font-size: 0.87em;
  background: #e4f8f6;
  padding: 0.15em 0.4em;
  border-radius: 3px;
  color: #0f8a7e;
}
.post-body pre code {
  background: none;
  padding: 0;
  font-size: 0.88rem;
}
.post-body pre {
  background: #f8f9fa;
  border: 1px solid #d6eeeb;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  overflow-x: auto;
  margin: 1.25rem 0;
}
.post-body img {
  max-width: 100%;
  border-radius: 6px;
  margin: 1rem 0;
}

.post-footer {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #d6eeeb;
}

.post-back {
  font-size: 0.85rem;
  color: #0f8a7e;
  text-decoration: none;
  font-weight: 500;
}
.post-back:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }
  .blog-featured-img {
    min-height: 200px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .post-title {
    font-size: 1.5rem;
  }
  .post-hero-img {
    height: 200px;
  }
}
.fw-page {
  width: 100%;
}
.fw-page ~ aside.sidebar {
  display: none;
}

.layout-outer:has(+ * .fw-page),
body:has(.fw-page) .layout-outer {
  grid-template-columns: 1fr;
}

.smells-viewer {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 64px);
  width: 100%;
}

.smells-viewer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.25rem;
  background: #e4f8f6;
  border-bottom: 1px solid #d6eeeb;
  flex-shrink: 0;
}

.smells-viewer-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f8a7e;
}

.smells-viewer-open {
  font-size: 0.78rem;
  color: #0f8a7e;
  text-decoration: none;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border: 1px solid #d6eeeb;
  border-radius: 4px;
  background: #ffffff;
  transition: background 0.2s ease;
}
.smells-viewer-open:hover {
  background: #0f8a7e;
  color: #ffffff;
  border-color: #0f8a7e;
}

.smells-frame {
  flex: 1;
  width: 100%;
  border: none;
  display: block;
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #d6eeeb;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li a {
    display: block;
    padding: 0.65rem 1.5rem;
    border-radius: 0;
  }
  .nav-toggle {
    display: flex;
  }
  .profile-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }
  .profile-info .profile-social {
    justify-content: center;
  }
  .students-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .news-item {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .news-date {
    font-size: 0.75rem;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .talk-item {
    grid-template-columns: 1fr;
  }
  .talk-year {
    font-weight: 600;
  }
}

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