
:root {
  --bg: #fbfaf6;
  --surface: rgba(255,255,255,.80);
  --surface-2: rgba(255,255,255,.94);
  --text: #20262d;
  --muted: #68727d;
  --line: #e6e0d8;
  --accent: #2d6f9f;
  --accent-strong: #174e78;
  --accent-soft: rgba(45,111,159,.08);
  --shadow: 0 16px 42px rgba(33,45,62,.075);
  --max: 1120px;
}

html[data-theme="dark"] {
  --bg: #151719;
  --surface: rgba(27,30,34,.84);
  --surface-2: rgba(29,32,36,.94);
  --text: #edf0f2;
  --muted: #a8b0b8;
  --line: #31363c;
  --accent: #91bee8;
  --accent-strong: #c4ddf6;
  --accent-soft: rgba(145,190,232,.13);
  --shadow: 0 16px 42px rgba(0,0,0,.26);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 125px; }
body {
  margin: 0;
  background: radial-gradient(circle at top left, rgba(45,111,159,.055), transparent 32rem), var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial,
    "Noto Sans", "Hiragino Sans", "Yu Gothic", "Meiryo", "Microsoft YaHei", "Noto Sans CJK SC", "Noto Sans CJK JP",
    sans-serif;
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background .25s ease, color .25s ease;
}
a { color: var(--accent); text-decoration: none; transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease, opacity .18s ease, box-shadow .18s ease; }
a:hover { color: var(--accent-strong); }

.container { max-width: var(--max); margin: 0 auto; padding: 34px 34px 72px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 91%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  margin: -34px -34px 34px;
  padding: 16px 34px 14px;
}
.site-header::before {
  content: "";
  display: block;
  height: 1px;
  margin: -16px 0 14px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 40%, var(--line)), transparent);
  opacity: .68;
}
.motto-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2px 0 14px;
}

.brand-wrap {
  display: inline-block;
}

.brand {
  display: block;
  font-size: clamp(27px, 2.7vw, 35px);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 640;
  letter-spacing: .028em;
  line-height: 1.18;
  text-align: center;
  color: var(--text);
  background: linear-gradient(90deg, var(--accent-strong), #6aa9d6, var(--accent-strong));
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}

@supports (-webkit-background-clip:text) {
  .brand { color: transparent; }
}

.brand:hover { opacity: .9; text-decoration: none; }

.brand-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 45%;
  margin: 5px auto 0;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: .035em;
  line-height: 1.2;
  opacity: .86;
}

.brand-sub span:first-child {
  text-align: left;
}

.brand-sub span:last-child {
  text-align: right;
}

.brand-sub .zh {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.brand-sub .ja {
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

.nav-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; }
.main-nav { grid-column: 1; justify-self: start; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.utility-nav { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.nav-item { position: relative; padding: 4px 0 7px; }
.main-nav a, .nav-trigger {
  position: relative;
  color: var(--muted);
  font-size: 15px;
  font-weight: 450;
  letter-spacing: .015em;
  padding: 4px 0 7px;
  cursor: pointer;
}
.main-nav a::after, .nav-trigger::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width .22s ease;
}
.main-nav a:hover, .main-nav a.active, .nav-trigger:hover, .nav-trigger.active { color: var(--accent-strong); text-decoration: none; }
.main-nav a:hover::after, .main-nav a.active::after, .nav-trigger:hover::after, .nav-trigger.active::after { width: 100%; }
.nav-trigger.active { font-weight: 560; }

.dropdown {
  display: none;
  position: absolute;
  top: 32px;
  left: -14px;
  min-width: 205px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  z-index: 200;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--muted);
}
.dropdown a:hover { background: var(--accent-soft); color: var(--accent-strong); text-decoration: none; }
.dropdown a::after { display: none; }

.lang-nav { display: flex; gap: 6px; }
.lang-nav a, .theme-toggle {
  font-size: 12px;
  line-height: 1;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--surface);
}
.lang-nav a:hover, .theme-toggle:hover {
  color: var(--accent-strong);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  background: var(--accent-soft);
  text-decoration: none;
  transform: translateY(-1px);
}
.lang-nav a.active {
  color: var(--accent-strong);
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
  background: var(--accent-soft);
  font-weight: 560;
}
.theme-toggle { cursor: pointer; min-width: 39px; }
.theme-toggle .sun { display: none; }
html[data-theme="dark"] .theme-toggle .moon { display: none; }
html[data-theme="dark"] .theme-toggle .sun { display: inline; }

/* General */
h1,h2,h3 { 
  font-family:
    "PingFang SC",
    "Microsoft YaHei",
    "Noto Sans CJK SC",
    "Helvetica Neue",
    Arial,
    sans-serif;
  line-height: 1.28; color: var(--text); }
h1 { font-size: clamp(29px, 2.75vw, 38px); font-weight: 600; margin: 0 0 8px; letter-spacing: -.028em; }
h2 { font-size: 21px; font-weight: 590; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
p { margin-top: 0; }
main { max-width: 980px; }

.hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  margin: 28px 0 48px;
  padding: 18px 0 28px;
  overflow: hidden;
}
.hero::before {
  content: none;
}
.hero > div:first-child { position: relative; z-index: 1; max-width: 620px; }
.kicker { color: var(--muted); font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 11px; white-space: nowrap; }
.subtitle { color: var(--muted); font-size: 15.5px; margin-bottom: 18px; }
.hero h1::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin-top: 13px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 999px;
  opacity: .75;
}
.lead { font-size: 16.3px; color: var(--text); margin: 0 0 13px; max-width: 585px; }
.profile-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.profile-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  color: var(--accent);
  background: var(--surface);
}
.profile-links a:hover { background: var(--accent-soft); text-decoration: none; transform: translateY(-1px); }

.hero-profile-blog {
  height: 540px;
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 286px;
  grid-template-rows: minmax(0, 1fr);
  gap: 44px;
  align-items: stretch;
  margin: 28px 0 54px;
  padding: 6px 0 0;
  overflow: visible;
}
.hero-profile-blog::before { display: none; }
.hero-profile-blog > div:first-child { max-width: none; }

.featured-blog {
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.featured-blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 12px;
}

.blog-carousel-controls {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 3px;
}
.carousel-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent-strong);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, color .18s ease;
}
.carousel-btn:hover {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  background: var(--accent-soft);
  transform: translateY(-1px);
}
.featured-blog-carousel {
  display: flex;
  flex: 1;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  min-height: 0;
}
.featured-blog-carousel::-webkit-scrollbar {
  display: none;
}
.featured-blog-slide {
  flex: 0 0 100%;
  min-width: 0;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-soft) 62%, transparent), transparent 42%), var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  overflow: hidden;
  scroll-snap-align: start;
  color: inherit;
}
.featured-blog-slide:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-2px);
}
.featured-blog-image {
  min-height: 100%;
  background: color-mix(in srgb, var(--surface-2) 82%, var(--bg));
  border-right: 1px solid var(--line);
}
.featured-blog-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.featured-blog-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.blog-card-meta {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .055em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.featured-blog-content h2 {
  border: 0;
  padding: 0;
  max-width: 620px;
  margin: 0 0 14px;
  font-size: clamp(24px, 2.7vw, 35px);
  line-height: 1.16;
  letter-spacing: -.018em;
}
.featured-blog-content p {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 15.5px;
}
.blog-card-status {
  align-self: flex-start;
  color: var(--accent-strong);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-2) 78%, transparent);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 560;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.carousel-dots button {
  width: 24px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 34%, transparent);
  cursor: pointer;
  padding: 0;
  transition: width .18s ease, background .18s ease;
}
.carousel-dots button.active {
  width: 36px;
  background: var(--accent);
}

.profile-panel {
  position: relative;
  min-width: 0;
  height: 100%;
  background: none;
  padding: 18px 0 18px 22px;
  overflow: hidden;
}
.profile-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--line) 72%, transparent) 0, color-mix(in srgb, var(--line) 72%, transparent) 1px, color-mix(in srgb, var(--accent-soft) 34%, transparent) 1px, transparent 88%);
  pointer-events: none;
}
.profile-panel > * {
  position: relative;
  z-index: 1;
}
.profile-photo {
  width: 148px;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  margin: 0 0 18px;
}
.profile-panel h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
  font-size: clamp(28px, 2.7vw, 36px);
}
.profile-panel h1::after { display: none; }
.degree {
  color: var(--muted);
  font-size: .42em;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}
.profile-affiliation {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.profile-field-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .055em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.research-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.research-list li {
  position: relative;
  padding-left: 16px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}
.research-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.profile-panel .profile-links {
  margin: 0 0 24px;
  gap: 8px;
}
.profile-panel .profile-links a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  border-color: color-mix(in srgb, var(--line) 84%, transparent);
  font-size: 11px;
  font-weight: 620;
  line-height: 1;
  letter-spacing: 0;
}
.profile-panel .profile-links img {
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 4px;
}
.profile-panel .profile-links svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.profile-panel .profile-links span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.profile-panel .profile-links a:hover {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.section { margin-top: 48px; }
.section-title {
  font-size: 21px;
  font-weight: 590;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin: 0 0 22px;
  letter-spacing: -.012em;
}
.section-intro { color: var(--muted); margin-top: -8px; margin-bottom: 22px; font-size: 15px; }

.highlight-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.highlight-card { border: 1px solid var(--line); border-radius: 16px; background: var(--surface); padding: 17px; color: inherit; }
.highlight-card:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.highlight-label { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.highlight-title { font-weight: 590; line-height: 1.45; color: var(--text); }
.highlight-meta { color: var(--muted); font-size: 13px; margin-top: 8px; }

.reports-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; align-items: stretch; }
.report-card {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 10px 30px rgba(35,48,67,.042);
}
.report-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 34%, var(--line)); text-decoration: none; }
.report-image-wrap {
  height: 270px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(45,111,159,.07), transparent), color-mix(in srgb, var(--surface-2) 82%, var(--bg));
  display: flex; align-items: center; justify-content: center;
}
.report-image-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; filter: drop-shadow(0 8px 15px rgba(0,0,0,.10)); }
.report-body { padding: 14px 16px 16px; }
.report-title { display: block; font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.38; margin-bottom: 6px; }
.report-link { font-size: 11px; color: var(--muted); letter-spacing: .01em; }

.news-list { display: grid; gap: 18px; }
.news-item { border-left: 3px solid var(--line); padding-left: 16px; }
.news-date { font-size: 13px; color: var(--muted); margin-bottom: 2px; }
.news-title { font-style: italic; }
.news-item a { font-size: 13px; }

/* Interior + timeline */
.page-title { margin-top: 4px; margin-bottom: 8px; font-size: clamp(25px, 2.2vw, 31px); font-weight: 590; letter-spacing: -.018em; }
.page-description { color: var(--muted); margin-bottom: 30px; max-width: 760px; font-size: 14.5px; }
.timeline-layout { display: grid; grid-template-columns: 96px minmax(0,1fr); gap: 28px; align-items: start; }
.timeline-nav { position: sticky; top: 118px; border-left: 1px solid var(--line); padding-left: 14px; }
.timeline-nav a { display: block; color: var(--muted); font-size: 13px; padding: 5px 0; }
.timeline-nav a:hover, .timeline-nav a.active { color: var(--accent-strong); text-decoration: none; font-weight: 560; }
.timeline-nav a.active::before { content: ""; display: inline-block; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; margin-left: -18px; margin-right: 11px; }
.category-heading { font-size: 20px; font-weight: 590; margin-top: 38px; border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.category-heading:first-child { margin-top: 0; }
.year-block { margin-top: 28px; }
.year-heading { font-size: 18px; font-weight: 590; border-bottom: 1px solid var(--line); padding-bottom: 7px; margin-bottom: 16px; color: var(--accent-strong); }
.pub-list,.supervision-list,.conference-list,.plain-list,.blog-list { list-style: none; margin: 0; padding: 0; }
.pub-item,.conference-item,.supervision-list li,.plain-list li,.blog-list li {
  padding: 0 0 15px 0;
  margin-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
}
.pub-title,.item-title { font-weight: 590; }
.pub-meta,.item-meta { color: var(--muted); font-size: 14px; }
.pub-doi { font-size: 13px; margin-top: 4px; overflow-wrap: anywhere; }
.misc-section {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 20px;
  margin-bottom: 22px;
}
.misc-section .category-heading { margin-top: 0; }
.course-card {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 18px 20px;
  background: var(--surface);
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(35,48,67,.035);
}
.course-title { font-size: 17px; font-weight: 590; }
.course-meta { color: var(--muted); }

.blog-filter { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0; }
.blog-filter span,
.blog-filter button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--muted);
  font-size: 13px;
  background: var(--surface);
  font: inherit;
  cursor: pointer;
}
.blog-filter button:hover,
.blog-filter button.active {
  color: var(--accent-strong);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  background: var(--accent-soft);
}
.blog-manifesto {
  font-size: 14px;
  color: var(--muted);
  margin: 14px 0 28px;
  letter-spacing: .01em;
}
.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.blog-index-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: inherit;
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 210px;
}
.blog-index-card:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.blog-index-image {
  background: color-mix(in srgb, var(--surface-2) 82%, var(--bg));
  border-right: 1px solid var(--line);
}
.blog-index-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.blog-index-body {
  padding: 20px;
}
.blog-index-body h2 {
  border: 0;
  margin: 0 0 10px;
  padding: 0;
  font-size: 19px;
  line-height: 1.32;
}
.blog-index-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  margin-bottom: 16px;
}
.blog-post {
  max-width: 860px;
}
.blog-post-hero {
  margin-bottom: 32px;
}
.blog-post-meta {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .055em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-post-hero img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 22px;
}
.blog-post-body {
  color: var(--text);
  font-size: 16px;
  line-height: 1.78;
}
.blog-post-body h2 {
  margin-top: 34px;
}
.blog-figure {
  margin: 30px 0;
}
.blog-figure img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.blog-figure figcaption {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 9px;
}
.blog-post-note {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
  font-size: 14px;
}
.blog-theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 24px 0 32px;
}
.blog-theme-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 16px;
}
.blog-theme-num {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  margin-bottom: 5px;
}
.blog-theme-name {
  font-size: 13.5px;
  font-weight: 590;
  line-height: 1.4;
}
.blog-pull-quote {
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  margin: 28px 0;
  padding: 3px 0 3px 18px;
}

.footer { border-top: 1px solid var(--line); margin-top: 72px; padding-top: 18px; color: var(--muted); font-size: 13px; }

@media (max-width: 900px) {
  .site-header { position: static; }
  .nav-row { grid-template-columns: 1fr; }
  .main-nav,.utility-nav { grid-column: auto; justify-self: start; }
  .dropdown {
  display: none !important;
  position: static;
  box-shadow: none;
  margin-top: 8px;
  }
  .nav-item:hover .dropdown {
    display: none !important;
  }

  .nav-trigger {
    cursor: pointer;
  }
  .hero { min-height: auto; padding: 18px 0 28px; margin-top: 20px; }
  .hero::before { right: -18%; width: 90%; height: 62%; top: 52%; opacity: .12; }
  .hero-profile-blog {
    grid-template-columns: 1fr;
    gap: 24px;
    height: auto;
    min-height: auto;
    padding-top: 0;
    margin-bottom: 46px;
  }
  .profile-panel {
    border-left: 0;
    padding-left: 0;
  }
  .profile-panel::before {
    display: none;
  }
  .featured-blog {
    min-height: 470px;
  }
  .featured-blog-carousel {
    min-height: 410px;
  }
  .featured-blog-slide {
    grid-template-columns: 1fr;
  }
  .featured-blog-image {
    min-height: 185px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .highlight-grid,.reports-grid,.blog-card-grid { grid-template-columns: 1fr; }
  .timeline-layout { grid-template-columns: 1fr; }
  .timeline-nav { position: static; border-left: 0; padding-left: 0; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
  .timeline-nav a { border: 1px solid var(--line); border-radius: 999px; padding: 5px 10px; background: var(--surface); }
  .timeline-nav a.active::before { display: none; }
}
@media (max-width: 560px) {
  .container { padding: 28px 20px 54px; }
  .site-header { margin: -28px -20px 38px; padding: 18px 20px 16px; }
  .brand { font-size: 24px; }
  .brand-sub { width: 82%; font-size: 11px; }
  .main-nav { gap: 14px; }
  .kicker { white-space: normal; }
  .hero::before { display: none; }
  .hero-profile-blog { margin-top: 16px; margin-bottom: 40px; }
  .featured-blog-header { gap: 12px; }
  .blog-carousel-controls { padding-top: 2px; }
  .carousel-btn {
    width: 34px;
    height: 34px;
  }
  .featured-blog {
    min-height: 500px;
  }
  .featured-blog-content {
    padding: 22px;
  }
  .featured-blog-content h2 { font-size: 24px; }
  .blog-index-card { grid-template-columns: 1fr; }
  .blog-index-image {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .profile-panel { padding: 0; }
  .profile-photo { width: 112px; }
  body { font-size: 15.5px; }
}
