
:root {
  --bg: #f7f5f2;
  --surface: #ffffff;
  --surface-muted: #fbfaf8;
  --text: #1e1e24;
  --muted: #5f6470;
  --line: #ded8ce;
  --primary: #8d1b22;
  --primary-dark: #641116;
  --primary-soft: #f4e5e6;
  --gold: #a37a27;
  --shadow: 0 24px 70px rgba(28, 26, 24, 0.10);
  --radius: 18px;
  --max: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a { color: var(--primary); text-decoration-thickness: 0.08em; text-underline-offset: 0.16em; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 12px; background: var(--text); color: white; padding: 8px 12px; z-index: 10; }
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand-text { display: grid; line-height: 1.2; }
.brand-text strong { font-size: 1.03rem; }
.brand-text small { color: var(--muted); font-size: 0.78rem; margin-top: 2px; }
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 9px 11px;
  border-radius: 999px;
  font-size: 0.91rem;
}
.site-nav a:hover,
.site-nav a.active {
  background: var(--primary-soft);
  color: var(--primary-dark);
}
.nav-toggle { display: none; }

.page-hero {
  padding: 54px 0 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(141,27,34,0.16), transparent 34%),
    linear-gradient(135deg, #fff 0%, #f6efe7 100%);
  border-bottom: 1px solid var(--line);
}
.home .page-hero { padding: 48px 0; }
.small-hero h1 { margin: 0; font-size: clamp(2.1rem, 4vw, 3.6rem); line-height: 1.08; letter-spacing: -0.04em; }
.eyebrow { margin: 0 0 10px; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; }
.lead { color: var(--muted); max-width: 820px; font-size: 1.1rem; margin: 18px 0 0; }
.lead.large { font-size: 1.18rem; }
.page-content { padding: 44px 0 64px; }
.prose > *:first-child { margin-top: 0; }
.prose h2 { margin: 36px 0 12px; font-size: 1.72rem; line-height: 1.2; letter-spacing: -0.02em; }
.prose h3 { margin: 24px 0 8px; font-size: 1.15rem; }
.prose p { margin: 0 0 16px; }
.prose ul { padding-left: 1.25rem; }
.prose li { margin: 6px 0; }

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 42px;
  align-items: center;
}
.home-hero-grid h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.hero-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}
.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}
.button.primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.button.ghost { background: transparent; }
.button:hover { transform: translateY(-1px); box-shadow: 0 12px 25px rgba(0,0,0,0.08); }
.button.disabled { color: var(--muted); background: #ece8e1; cursor: not-allowed; box-shadow: none; transform: none; }

.notice {
  padding: 15px 18px;
  border: 1px solid #e2c777;
  border-left: 5px solid var(--gold);
  border-radius: 14px;
  background: #fff9e8;
  color: #3f3521;
  margin: 0 0 28px;
}
.notice.important {
  border-color: #e2a2a6;
  border-left-color: var(--primary);
  background: #fff1f2;
}
.section-grid { display: grid; gap: 18px; margin: 24px 0; }
.two-columns { grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); }
.three-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 35px rgba(43, 37, 32, 0.06);
}
.card h2, .card h3 { margin-top: 0; }
.card.compact { padding: 20px; }
.accent-card { background: linear-gradient(180deg, #fff, #fff8f5); }
.text-link { font-weight: 700; text-decoration: none; }
.placeholder {
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.date-list,
.info-list {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
}
.date-list div,
.info-list div {
  display: grid;
  grid-template-columns: minmax(170px, 0.62fr) minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.date-list dt,
.info-list dt { color: var(--muted); font-weight: 700; }
.date-list dd,
.info-list dd { margin: 0; }
.date-list.standalone { max-width: 740px; }
.news-list { list-style: none; padding: 0 !important; margin: 0; }
.news-list li { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.news-list time { color: var(--muted); font-weight: 700; }
.topic-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 26px; }
.topic-cloud span {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.94rem;
}
.committee-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 24px 20px;
}
pre {
  background: #272427;
  color: #f4eee9;
  overflow: auto;
  padding: 16px;
  border-radius: 14px;
}
.check-list li::marker { color: var(--primary); }
.timeline {
  display: grid;
  gap: 16px;
  margin: 22px 0;
}
.timeline article {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 22px 86px;
}
.day-label {
  position: absolute;
  left: 20px;
  top: 22px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.78rem;
  text-align: center;
}
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0;
}
.speaker-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.avatar-placeholder {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 800;
}
.simple-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: table;
  margin: 18px 0 28px;
}
.simple-table th,
.simple-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
}
.simple-table th { background: #f1ede6; font-size: 0.9rem; }
.simple-table tr:last-child td { border-bottom: 0; }
.center { text-align: center !important; }
.previous-list { list-style: none; padding: 0 !important; }
.previous-list li { padding: 10px 0; border-bottom: 1px solid var(--line); }

.site-footer {
  background: #211c1c;
  color: #f9f5ef;
  padding: 38px 0;
}
.site-footer p { color: #d8d0c5; margin: 8px 0 0; }
.site-footer a { display: block; color: #f9f5ef; margin: 8px 0; text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.7fr 0.9fr; gap: 28px; align-items: start; }
.not-found { min-height: 70vh; display: grid; place-content: center; }

@media (max-width: 960px) {
  .home-hero-grid,
  .two-columns,
  .three-columns,
  .speaker-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; position: absolute; left: 20px; right: 20px; top: 72px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 10px; box-shadow: var(--shadow); }
  .site-nav.open { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-nav a { border-radius: 12px; }
  .nav-toggle { display: inline-flex; margin-left: auto; border: 1px solid var(--line); background: var(--surface); border-radius: 999px; padding: 8px 12px; font-weight: 700; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand-text small { display: none; }
  .home-hero-grid h1 { font-size: clamp(2.05rem, 14vw, 3.5rem); }
  .small-hero h1 { font-size: 2rem; }
  .date-list div,
  .info-list div,
  .news-list li { grid-template-columns: 1fr; gap: 4px; }
  .timeline article { padding-left: 20px; padding-top: 84px; }
  .day-label { top: 20px; }
  .site-nav.open { grid-template-columns: 1fr; }
  .simple-table { font-size: 0.92rem; }
  .simple-table th, .simple-table td { padding: 9px; }
}

/* Conference programme page
   Inspired by the clear masthead, banner, sidebar, and content hierarchy used
   by the IJTCS-FAW 2024 programme website. */
.program-page {
  min-width: 0;
  background: #ededed;
  color: #3e424b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
}

.program-page a {
  color: #2c6399;
}

.program-page a:hover {
  color: #21304b;
}

.program-shell {
  width: min(1080px, calc(100% - 40px));
  margin: 26px auto 42px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(33, 48, 75, 0.12);
}

.program-masthead {
  padding: 34px 48px 30px;
  background: #f4f4f4;
  text-align: center;
  border-bottom: 1px solid #d9d9d9;
}

.program-home-link {
  display: block;
  color: #21304b !important;
  text-decoration: none;
}

.program-series {
  display: block;
  margin-bottom: 7px;
  color: #607690;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.program-conference-name {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.18rem);
  font-weight: 700;
  line-height: 1.25;
}

.program-masthead p {
  margin: 16px 0 0;
  color: #4d5868;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.program-banner {
  position: relative;
  height: 278px;
  overflow: hidden;
  background: #d9d0c4;
}

.program-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 36, 57, 0.66), transparent 48%, rgba(24, 36, 57, 0.12));
  pointer-events: none;
}

.program-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.program-banner-label {
  position: absolute;
  z-index: 1;
  left: 44px;
  bottom: 35px;
  display: grid;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.program-banner-label span {
  margin-bottom: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.program-banner-label strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.program-banner-credit {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 10px;
  margin: 0;
  padding: 4px 7px;
  background: rgba(20, 30, 46, 0.74);
  color: #e7ebef;
  font-size: 0.62rem;
  line-height: 1.4;
}

.program-banner-credit a {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.56);
}

.program-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: stretch;
}

.program-sidebar {
  padding: 34px 26px 46px;
  background: #f8f8f8;
  border-right: 1px solid #dfe2e6;
}

.program-sidebar h2 {
  margin: 0 0 16px;
  color: #21304b;
  font-size: 1.12rem;
  line-height: 1.3;
}

.program-nav-block nav {
  display: grid;
  margin: 0 -10px;
}

.program-nav-block nav a {
  position: relative;
  display: block;
  padding: 9px 10px;
  border-bottom: 1px solid #e2e4e7;
  color: #292f38;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.program-nav-block nav a:hover {
  background: #eef2f6;
  color: #21304b;
}

.program-nav-block nav a.active {
  padding-left: 17px;
  background: #e8edf3;
  color: #21304b;
}

.program-nav-block nav a.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #607690;
}

.program-sidebar-block {
  margin-top: 38px;
  padding-top: 26px;
  border-top: 3px solid #21304b;
}

.program-sidebar-block strong {
  display: block;
  color: #333b47;
  line-height: 1.4;
}

.program-sidebar-block p {
  margin: 5px 0 0;
  color: #66707d;
  font-size: 0.86rem;
  line-height: 1.65;
}

.program-sidebar-block.compact {
  border-top-width: 1px;
}

.organizer-list {
  display: grid;
  gap: 15px;
}

.organizer-item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.organizer-item:hover strong {
  color: #2c6399;
}

.organizer-logo {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.organizer-logo img {
  display: block;
  height: auto;
}

.organizer-logo.ccf img {
  width: 64px;
}

.organizer-logo.ruc img {
  width: 225px;
  max-width: none;
}

.organizer-copy small {
  display: block;
  margin-top: 3px;
  color: #66707d;
  font-size: 0.76rem;
  line-height: 1.35;
}

.program-content {
  min-width: 0;
  padding: 48px 52px 62px;
  background: #fff;
}

.program-kicker {
  margin: 0 0 8px;
  color: #6a788a;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.program-content > h1 {
  margin: 0;
  color: #21304b;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.35rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.program-intro {
  max-width: 700px;
  margin: 18px 0 0;
  color: #596471;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.75;
}

.program-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px 0 42px;
  border-top: 1px solid #cfd4da;
  border-bottom: 1px solid #cfd4da;
}

.program-facts div {
  min-width: 0;
  padding: 15px 18px 16px;
  border-right: 1px solid #dfe2e6;
}

.program-facts div:first-child {
  padding-left: 0;
}

.program-facts div:last-child {
  border-right: 0;
}

.program-facts dt {
  margin-bottom: 3px;
  color: #7a828d;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.program-facts dd {
  margin: 0;
  color: #293342;
  font-weight: 700;
}

.program-section {
  margin-top: 42px;
}

.program-section > h2 {
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 3px solid #21304b;
  color: #21304b;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.68rem;
  line-height: 1.2;
}

.program-section > p {
  margin: 18px 0;
  line-height: 1.8;
}

.program-callout {
  padding: 17px 20px;
  border-left: 4px solid #607690;
  background: #f1f4f7;
}

.program-callout p {
  margin: 0;
  line-height: 1.75;
}

.program-callout p + p {
  margin-top: 3px;
}

.program-day-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 23px;
}

.program-day-grid article {
  position: relative;
  min-height: 260px;
  padding: 25px 20px 22px;
  border: 1px solid #d9dde2;
  border-top: 4px solid #607690;
  background: #fff;
}

.program-day-number {
  position: absolute;
  right: 16px;
  top: 13px;
  color: #e0e5ea;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.program-day-label {
  margin: 0 0 18px;
  color: #607690;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.program-day-grid h3 {
  max-width: 150px;
  min-height: 52px;
  margin: 0 0 12px;
  color: #21304b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.4;
}

.program-day-grid article > p:not(.program-day-label) {
  margin: 0 0 18px;
  color: #626b77;
  font-size: 0.86rem;
  line-height: 1.65;
}

.program-tba {
  display: inline-flex;
  padding: 4px 8px;
  border: 1px solid #bdc7d1;
  color: #4e6073;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-document-placeholder {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 17px;
  align-items: center;
  min-height: 122px;
  padding: 22px;
  border: 1px dashed #9ca8b4;
  background: #fafafa;
}

.program-document-placeholder strong {
  display: block;
  margin-bottom: 4px;
  color: #293442;
}

.program-document-placeholder p {
  margin: 0;
  color: #69727e;
  font-size: 0.88rem;
  line-height: 1.6;
}

.program-document-icon {
  width: 54px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid #b9c1c9;
  background: #fff;
  color: #8d1b22;
  font-size: 0.72rem;
  font-weight: 800;
}

.program-downloads ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid #dfe2e6;
  list-style: none;
}

.program-downloads li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 12px 4px;
  border-bottom: 1px solid #dfe2e6;
}

.program-downloads li span:last-child,
.program-downloads li strong {
  color: #76808b;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.program-footer {
  min-height: 82px;
  display: grid;
  place-content: center;
  padding: 18px 30px;
  background: #3e424b;
  color: #f2f2f2;
  text-align: center;
}

.program-footer p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.65;
}

.program-footer p + p {
  color: #c9cdd2;
}

/* Shared content styling for every page in the unified conference shell. */
.site-page .program-content > h1 {
  max-width: 760px;
}

.site-page-body {
  margin-top: 38px;
  overflow-wrap: anywhere;
}

.site-page-body > *:first-child {
  margin-top: 0;
}

.site-page-body > h2,
.site-page-body > section > h2 {
  margin: 38px 0 16px;
  padding-bottom: 9px;
  border-bottom: 3px solid #21304b;
  color: #21304b;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.62rem;
  line-height: 1.2;
}

.site-page-body h3 {
  color: #2b394c;
  font-family: Georgia, "Times New Roman", serif;
}

.site-page-body p,
.site-page-body li {
  color: #4f5966;
}

.site-page-body .notice {
  border: 1px solid #c8b26f;
  border-left: 5px solid #9a7929;
  border-radius: 0;
  background: #fffaf0;
}

.site-page-body .notice.important {
  border-color: #c98f94;
  border-left-color: #8d1b22;
  background: #fff5f5;
}

.site-page-body .card,
.site-page-body .committee-section,
.site-page-body .speaker-card,
.site-page-body .timeline article {
  border: 1px solid #d8dde2;
  border-radius: 0;
  box-shadow: none;
}

.site-page-body .card,
.site-page-body .speaker-card {
  border-top: 4px solid #607690;
}

.site-page-body .accent-card {
  background: #f6f8fa;
}

.site-page-body .card h2,
.site-page-body .card h3 {
  color: #21304b;
  font-family: Georgia, "Times New Roman", serif;
}

.site-page-body .card h2 {
  padding-bottom: 8px;
  border-bottom: 1px solid #d8dde2;
  font-size: 1.36rem;
}

.site-page-body .topic-cloud span {
  border-color: #cbd1d8;
  border-radius: 0;
  background: #f4f6f8;
  color: #38475a;
}

.site-page-body .simple-table {
  border-color: #cbd1d8;
  border-radius: 0;
}

.site-page-body .simple-table th {
  background: #e9edf1;
  color: #253247;
}

.site-page-body .date-list div,
.site-page-body .info-list div,
.site-page-body .news-list li,
.site-page-body .previous-list li {
  border-color: #dfe2e6;
}

.site-page-body .date-list dt,
.site-page-body .info-list dt,
.site-page-body .news-list time {
  color: #56677b;
}

.site-page-body .button,
.site-home-actions .button,
.not-found-panel .button {
  border-color: #aeb7c1;
  border-radius: 0;
  color: #21304b;
}

.site-page-body .button.primary,
.site-home-actions .button.primary,
.not-found-panel .button.primary {
  border-color: #21304b;
  background: #21304b;
  color: #fff;
}

.site-page-body .button:hover,
.site-home-actions .button:hover,
.not-found-panel .button:hover {
  transform: none;
  background: #607690;
  color: #fff;
}

.site-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.campus-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.55fr);
  margin: 0 0 34px;
  overflow: hidden;
  background: #21304b;
}

.campus-feature img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center 48%;
}

.campus-feature figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  color: #fff;
}

.campus-feature figcaption > span {
  margin-bottom: 8px;
  color: #bbc8d6;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.campus-feature figcaption > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.35;
}

.campus-feature figcaption p {
  margin: 5px 0 23px;
  color: #e5eaf0;
}

.campus-feature figcaption small {
  color: #bfc8d2;
  font-size: 0.63rem;
  line-height: 1.55;
}

.campus-feature figcaption a {
  color: #fff;
}

.campus-feature.compact {
  margin: 22px 0 28px;
}

.campus-feature.compact img {
  height: 270px;
}

.not-found-panel {
  padding: 28px;
  border: 1px solid #d8dde2;
  border-left: 5px solid #607690;
  background: #f6f8fa;
}

.not-found-panel p {
  margin-top: 0;
}

.committee-group {
  padding: 22px 0;
  border-bottom: 1px solid #dfe2e6;
}

.committee-group:first-child {
  padding-top: 12px;
}

.committee-group:last-child {
  border-bottom: 0;
}

.committee-group > h3 {
  margin: 0 0 13px;
  color: #21304b;
  font-size: 1.08rem;
}

.committee-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0 !important;
  list-style: none;
}

.committee-list li {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  margin: 0;
  padding: 8px 11px;
  border-left: 3px solid #d2dae3;
  background: #f7f9fb;
}

.committee-list strong {
  color: #2c6399;
}

.committee-list span {
  color: #4f5966;
}

.committee-list.names-only li {
  grid-template-columns: 1fr;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.track-card {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #d3dce6;
  border-top: 5px solid #2f6bd6;
  background: #fff;
}

.track-card .track-code {
  margin: 0 0 10px;
  color: #2f6bd6;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.track-card h3 {
  margin: 0 0 24px;
  color: #245fcb;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.28rem;
  line-height: 1.35;
}

.track-card .track-chairs {
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid #e1e5e9;
  color: #343e4b;
  line-height: 1.65;
}

.track-details {
  display: grid;
  gap: 22px;
  margin: 24px 0 32px;
}

.track-detail {
  padding: 24px 26px;
  border: 1px solid #d3dce6;
  border-left: 5px solid #2f6bd6;
  background: #fff;
}

.track-detail .track-code {
  margin: 0 0 6px;
  color: #2f6bd6;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.track-detail h3 {
  margin: 0 0 16px;
  color: #245fcb;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  line-height: 1.35;
}

.track-topic-list {
  columns: 2;
  column-gap: 36px;
  margin: 0;
  padding-left: 20px;
}

.track-topic-list li {
  break-inside: avoid;
  margin: 0 0 8px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 28px 0 20px;
}

.journal-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 226px;
  padding: 24px;
  border: 1px solid #d3dce6;
  border-top: 5px solid #2f6bd6;
  background: #fff;
}

.journal-card img {
  width: 100%;
  max-width: 132px;
  height: 178px;
  margin: 0;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 8px 22px rgba(22, 42, 72, 0.14);
}

.journal-card h3 {
  margin: 0;
  color: #245fcb;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.16rem;
  line-height: 1.4;
}

.image-source-note {
  color: #607080;
  font-size: 0.85rem;
}

.committee-pending {
  margin-top: 38px;
}

.program-simple-tba {
  margin: 0;
  padding: 34px;
  border: 1px solid #d9dde2;
  border-left: 5px solid #607690;
  background: #f7f9fb;
  color: #607690;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .program-shell {
    width: min(100% - 24px, 760px);
    margin-top: 12px;
  }

  .program-layout {
    grid-template-columns: 1fr;
  }

  .program-content {
    order: 1;
  }

  .program-sidebar {
    order: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.85fr));
    gap: 28px;
    border-top: 1px solid #dfe2e6;
    border-right: 0;
  }

  .program-sidebar-block {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .program-shell {
    width: 100%;
    margin: 0;
    box-shadow: none;
  }

  .program-masthead {
    padding: 28px 20px 25px;
  }

  .program-masthead p {
    font-size: 0.95rem;
  }

  .program-banner {
    height: 220px;
  }

  .program-banner-label {
    left: 22px;
    bottom: 24px;
  }

  .program-content {
    padding: 38px 22px 48px;
  }

  .program-facts,
  .program-day-grid,
  .program-sidebar {
    grid-template-columns: 1fr;
  }

  .program-facts div,
  .program-facts div:first-child {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid #dfe2e6;
  }

  .program-facts div:last-child {
    border-bottom: 0;
  }

  .program-day-grid article {
    min-height: 0;
  }

  .program-day-grid h3 {
    min-height: 0;
  }

  .program-document-placeholder {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .program-document-placeholder .program-tba {
    grid-column: 2;
    justify-self: start;
  }

  .program-banner-credit {
    top: 7px;
    right: 8px;
    bottom: auto;
    max-width: calc(100% - 16px);
    font-size: 0.56rem;
  }

  .site-page .program-content > h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .campus-feature {
    grid-template-columns: 1fr;
  }

  .campus-feature img,
  .campus-feature.compact img {
    height: 245px;
  }

  .campus-feature figcaption {
    padding: 22px;
  }

  .committee-list li,
  .track-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .committee-list li {
    gap: 2px;
  }

  .track-card {
    min-height: 0;
  }

  .track-topic-list {
    columns: 1;
  }

  .journal-card {
    grid-template-columns: 110px minmax(0, 1fr);
    min-height: 0;
    padding: 20px;
  }

  .journal-card img {
    height: 150px;
  }

  .site-page-body .simple-table {
    display: block;
    overflow-x: auto;
  }
}
