@font-face {
  font-family: "Noto Sans TC";
  src: url("fonts/NotoSansTC-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans TC";
  src: url("fonts/NotoSansTC-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans TC";
  src: url("fonts/NotoSansTC-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans TC";
  src: url("fonts/NotoSansTC-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans TC";
  src: url("fonts/NotoSansTC-Black.woff2") format("woff2");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f4f2ec;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --ink: #17263f;
  --muted: #677487;
  --line: rgba(31, 57, 90, 0.12);
  --accent: #4ea669;
  --accent-hover: #3fb963;
  --accent-deep: #21406d;
  --brand: #21406d;
  --brand-soft: #7ca7d8;
  --date: #9ea1a6;
  --shadow: 0 18px 60px rgba(25, 45, 72, 0.12);
  --radius-lg: 10px;
  --radius-md: 10px;
  --radius-sm: 10px;
  --shell: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8f6f1 0%, #f4f2ec 48%, #f0eee8 100%);
  min-height: 100vh;
}

body,
p,
td,
th,
input,
textarea,
select,
button {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(244, 242, 236, 0.86);
  border-bottom: 1px solid rgba(31, 57, 90, 0.08);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0px;
  min-height: 60px;
  padding: 8px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 72px;
  height: auto;
}

.brand-wordmark {
  width: 188px;
  height: auto;
}

.brand-logo {
  width: 260px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 3;
  flex: 0 0 100%;
  gap: 10px;
  flex-wrap: wrap;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #3369bbff;
  cursor: pointer;
}

.mobile-nav-toggle img {
  width: 22px;
  height: 22px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  font-size: 12pt;
  font-weight: 600;
  color: var(--ink);
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  background: rgba(124, 167, 216, 0.16);
  color: var(--brand);
  transform: translateY(-1px);
}

.nav-link.is-disabled {
  color: rgba(23, 38, 63, 0.42);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.nav-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  z-index: 30;
  min-width: 176px;
  padding: 10px;
  border: 1px solid rgba(33, 64, 109, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(25, 45, 72, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12pt;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus {
  background: rgba(124, 167, 216, 0.16);
  color: var(--brand);
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
}

.action-button,
.more-button,
.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.action-button {
  min-width: 112px;
  min-height: 40px;
  border-radius: 999px;
  font-size: 14pt;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0);
}

.action-button.ghost {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(33, 64, 109, 0.22);
}

.action-button.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(94, 189, 122, 0.22);
}

.action-button.is-disabled {
  color: rgba(23, 38, 63, 0.42);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(33, 64, 109, 0.14);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.action-button:hover,
.more-button:hover,
.inline-link:hover {
  transform: translateY(-2px);
}

.action-button.primary:hover {
  background: var(--accent-hover);
}

.action-button.ghost:hover,
.more-button:hover,
.article-nav-button:hover {
  background: rgba(124, 167, 216, 0.16);
  color: var(--brand);
}

.hero-section {
  padding: 0;
}

.hero-section.shell {
  width: 100%;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 26, 43, 0.52) 0%, rgba(15, 26, 43, 0.16) 52%, rgba(15, 26, 43, 0.42) 100%),
    linear-gradient(180deg, rgba(255, 184, 108, 0.16), transparent 48%);
}

.hero-copy {
  position: absolute;
  left: max(16px, calc((100vw - 1180px) / 2));
  bottom: 60px;
  z-index: 1;
  max-width: 520px;
  color: #fff;
}

.hero-eyebrow {
  margin: 0 0 12px;
  letter-spacing: 0.16em;
  font-size: 12pt;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.hero-copy p {
  margin: 0;
  font-size: 18pt;
  line-height: 1.72;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.hero-dot {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 14px;
  height: 14px;
  background: #fff;
  border: 1px solid #111;
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 4px #fff;
  flex: 0 0 14px;
}

.home-block,
.home-duo,
.inner-page {
  padding: 20px 0 32px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-kicker {
  width: 12px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, #6bc57f 0%, #4aa264 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
}

.headline-panel,
.stat-card,
.video-card,
.list-card,
.page-sidebar,
.detail-article,
.attachment-box,
.placeholder-panel,
.notes-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.headline-panel {
  padding: 12px 20px;
  border-radius: var(--radius-lg);
}

.headline-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.headline-row:last-child {
  border-bottom: 0;
}

.headline-title {
  color: var(--brand);
  font-size: 17pt;
  line-height: 1.6;
}

.headline-date,
.gallery-date,
.detail-date,
.list-meta,
.footer-registration {
  color: var(--date);
}

.section-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.more-button {
  min-width: 132px;
  min-height: 48px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(33, 64, 109, 0.24);
  border-radius: 999px;
  font-weight: 700;
}

.gallery-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-card,
.video-card {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.video-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  display: block;
  line-height: 0;
}

.gallery-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-copy {
  padding: 18px 18px 22px;
}

.gallery-copy h3 {
  margin: 10px 0 0;
  font-size: 24pt;
  line-height: 1.35;
}

.home-duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 26px;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-card {
  padding: 24px 20px;
  border-radius: 10px;
  text-align: center;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-value {
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

.stat-label {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
  white-space: pre-line;
}

.video-embed {
  width: 100%;
  min-height: 312px;
  aspect-ratio: 16 / 10;
  border: 0;
  display: block;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 12pt;
}

.breadcrumb a:hover {
  color: var(--brand);
}

.breadcrumb-sep {
  opacity: 0.55;
}

.page-header {
  max-width: 760px;
  margin-bottom: 24px;
}

.page-header h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.18;
}

.detail-header h1 {
  margin: 0 0 14px;
  font-size: clamp(24pt, 4vw, 38pt);
  line-height: 1.18;
}

.page-header p,
.placeholder-panel p,
.notes-card li {
  font-size: 18pt;
  line-height: 1.85;
  color: rgba(23, 38, 63, 0.88);
}

.detail-text p {
  font-size: 16pt;
  line-height: 1.85;
  color: rgba(23, 38, 63, 0.88);
}

.list-stack {
  display: grid;
  gap: 18px;
}

.list-card {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 22px;
  padding: 20px;
  border-radius: 10px;
}

.list-card-image {
  display: block;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
}

.list-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: left top;
}

.list-card-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.list-meta {
  display: flex;
  gap: 16px;
  font-size: 12pt;
}

.list-card-copy h2 {
  margin: 0;
  font-size: 32pt;
  line-height: 1.28;
}

.list-card-copy p {
  margin: 0;
  line-height: 1.8;
  color: rgba(23, 38, 63, 0.84);
}

.inline-link {
  width: fit-content;
  color: var(--brand);
  font-weight: 700;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.page-number,
.page-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(33, 64, 109, 0.16);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
}

.page-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-arrow img {
  width: 22px;
  height: 22px;
}

.page-arrow.is-disabled {
  opacity: 0.38;
  filter: grayscale(1);
  cursor: not-allowed;
}

.page-ellipsis {
  cursor: default;
}

.page-ellipsis[href] {
  cursor: pointer;
}

.page-ellipsis.is-disabled {
  opacity: 0.38;
  cursor: default;
}

.pager-command-sources {
  display: none;
}

.page-number.is-active {
  background: rgba(124, 167, 216, 0.18);
  border-color: rgba(33, 64, 109, 0.3);
  font-weight: 700;
}

.detail-article {
  border-radius: 10px;
  padding: 28px 34px 34px;
}

.detail-content {
  display: block;
}

.detail-text {
  min-width: 0;
}

.attachment-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 10px;
  margin-top: 24px;
}

.attachment-box img {
  width: 28px;
}

.detail-visual img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 24px;
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.article-nav-button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(33, 64, 109, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.article-nav-button.previous {
  justify-self: start;
}

.article-nav-button.back {
  justify-self: center;
}

.article-nav-button.next {
  justify-self: end;
}

.article-nav-button.is-disabled {
  opacity: 0.38;
  pointer-events: none;
}

.article-nav-button img {
  width: 22px;
  height: 22px;
}

.support-hero {
  position: relative;
  min-height: clamp(260px, 23.4375vw, 450px);
  background-color: #21406d;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.support-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 38, 65, 0.62) 0%, rgba(20, 38, 65, 0.32) 48%, rgba(20, 38, 65, 0.12) 100%);
}

.support-hero-copy {
  position: relative;
  z-index: 1;
  color: #fff;
}

.support-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: 0.08em;
}

.support-hero-copy p {
  width: min(680px, 100%);
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
  font-weight: 600;
}

.support-layout {
  align-items: start;
}

.contact-page {
  padding-bottom: 52px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: start;
}

.contact-map-panel {
  position: relative;
  min-height: 460px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(227, 231, 236, 0.9);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.contact-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 4px 0;
}

.contact-field {
  display: block;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(34, 51, 74, 0.38);
  border-radius: 0;
  background: transparent;
  padding: 14px 12px;
  color: var(--text);
  font: inherit;
  outline: 0;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.contact-field textarea {
  min-height: 154px;
  resize: vertical;
}

.contact-form-status {
  display: block;
  margin: -8px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-status.is-error {
  color: #a84242;
}

.contact-form-status.is-success {
  color: #356c54;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(38, 50, 65, 0.72);
  opacity: 1;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-bottom-color: #4c86c6;
  background: rgba(219, 235, 250, 0.58);
}

.contact-message-field {
  margin-bottom: 10px;
}

.contact-submit {
  position: relative;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 48px;
  border: 1px solid #cad5e2;
  border-radius: 999px;
  background: #fff;
  padding: 0 24px;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: rgba(124, 167, 216, 0.16);
  color: var(--brand);
  box-shadow: 0 12px 24px rgba(30, 42, 58, 0.08);
  transform: translateY(-2px);
}

.contact-submit:active {
  transform: scale(0.96);
}

.contact-form.is-submitting {
  cursor: progress;
}

.contact-form.is-submitting .contact-field,
form.is-submitting .contact-form .contact-field {
  opacity: 0.7;
}

.contact-form.is-submitting .contact-submit,
form.is-submitting .contact-form .contact-submit,
.contact-submit:disabled {
  cursor: progress;
  transform: none;
  opacity: 0.82;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(25, 39, 58, 0.16);
}

.contact-modal.is-open {
  display: flex;
}

.contact-modal-box {
  position: relative;
  display: grid;
  place-items: center;
  width: min(600px, 100%);
  min-height: 220px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(23, 34, 49, 0.18);
}

.contact-modal-box p {
  margin: 0;
  font-size: 32pt;
  font-weight: 700;
  color: var(--text);
}

.contact-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 30pt;
  line-height: 1;
  cursor: pointer;
}

.contact-modal-close:hover,
.contact-modal-close:focus-visible {
  background: rgba(219, 235, 250, 0.58);
}

.support-content {
  display: grid;
  gap: 18px;
  padding: 0;
}

.support-card,
.support-detail-card,
.support-accordion,
.support-section-title {
  border-radius: 10px;
  border: 1px solid rgba(227, 231, 236, 0.9);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: var(--shadow);
}

.support-card,
.support-detail-card,
.support-section-title {
  padding: 24px;
}

.support-card h2,
.support-detail-card h2,
.support-section-title h2 {
  clear: none;
  width: auto;
  padding: 0;
  background: none;
  color: var(--ink);
  letter-spacing: normal;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
}

.community-page-title--center {
  text-align: center;
}

.contact-simulation-controls {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  gap: 8px;
  z-index: 1;
}

.contact-simulation-option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid rgba(34, 51, 74, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(30, 42, 58, 0.1);
}

.contact-simulation-option input {
  width: 14px;
  height: 14px;
}

.contact-simulation-option.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.contact-submit-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  display: none;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.contact-submit-check {
  display: none;
  font-size: 18px;
  font-weight: 900;
  line-height: 18px;
}

.contact-submit-spinner {
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(34, 51, 74, 0.25);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: contact-submit-spin 0.8s linear infinite;
}

.contact-submit.is-loading .contact-submit-icon {
  display: block;
}

.contact-submit.is-loading .contact-submit-check {
  display: none;
}

.contact-submit.is-done {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

.contact-submit.is-done .contact-submit-icon {
  display: block;
}

.contact-submit.is-done .contact-submit-spinner {
  display: none;
}

.contact-submit.is-done .contact-submit-check {
  display: block;
  animation: contact-submit-check-in 0.34s ease-out both;
}

.contact-submit-native {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}

@keyframes contact-submit-spin {
  to { transform: rotate(360deg); }
}

@keyframes contact-submit-check-in {
  0% { opacity: 0; transform: scale(0.3) rotate(-18deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

.contact-error-message {
  justify-self: center;
  margin: 0;
  color: #b04747;
  font-size: 10pt;
  font-weight: 700;
  line-height: 1.6;
}

.support-card-title-blue {
  color: #4980d2ff;
}

.support-card p,
.support-detail-card p,
.support-section-title p,
.support-accordion-body p {
  margin: 0;
  font-size: 17pt;
  line-height: 1.85;
  color: rgba(23, 38, 63, 0.88);
}

.support-accordion-toggle {
  font-size: clamp(22px, 2.4vw, 26px);
}

.support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 238px);
  gap: 24px;
  align-items: center;
}

.support-card-copy {
  display: grid;
  gap: 8px;
}

.support-card-tagline,
.support-section-heading,
.support-simple-text {
  color: var(--brand);
  font-weight: 600;
}

.support-card-tagline {
  font-size: 18pt;
  line-height: 1.8;
}

.support-card-tagline.resource-help-phone {
  font-size: 24pt;
}

.support-card-note,
.support-section-note {
  color: var(--date);
  font-size: 16pt;
  line-height: 1.8;
}

.support-card p.support-card-note {
  color: #9ea1a6 !important;
  color: #9ea1a6ff !important;
}

.support-accordion-body p.support-section-note {
  color: #9ea1a6;
}

.support-card-nested {
  grid-column: 1 / -1;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.support-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #cad5e2;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

.support-accordion-toggle::-webkit-details-marker {
  display: none;
}

.support-accordion-toggle::marker {
  content: "";
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.support-action.is-primary {
  color: #fff;
  background: var(--accent);
  border-color: transparent;
}

.support-action:hover {
  transform: translateY(-2px);
  background: rgba(124, 167, 216, 0.16);
  color: var(--brand);
}

.support-action.is-primary:hover {
  color: #fff;
  background: var(--accent-hover);
}

.support-accordion {
  overflow: hidden;
}

.support-accordion-toggle {
  width: 100%;
  min-height: 68px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 800;
}

.support-accordion-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-align: left;
}

.support-accordion-title-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.support-accordion-arrow {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  transition: transform 0.18s ease;
}

.support-accordion-toggle[aria-expanded="true"] .support-accordion-arrow,
.support-accordion[open] .support-accordion-arrow {
  transform: rotate(90deg);
}

@media (prefers-reduced-motion: reduce) {
  .support-accordion-arrow {
    transition: none;
  }
}

.support-accordion-body {
  padding: 20px 22px 24px;
  border-top: 1px solid var(--line);
}

.support-section-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 238px);
  gap: 24px;
  align-items: center;
}

.support-section-row .support-actions {
  width: 238px;
  flex-direction: column;
  flex-wrap: nowrap;
}

.support-section-row .support-action {
  width: 100%;
  min-width: 0;
}

.support-section-copy {
  display: grid;
  gap: 8px;
}

.support-section-heading {
  display: block;
  font-size: 18pt;
  line-height: 1.8;
}

.support-section-text {
  color: var(--brand);
  font-size: 12pt;
  line-height: 1.8;
}

body[data-page="support"] .support-card-note,
body[data-page="support"] .support-section-text,
body[data-page="support"] .support-section-note,
body[data-page="support"] .support-accordion-body>p {
  font-size: 12pt;
}

body[data-page="support"] .support-card>.support-actions .support-action {
  font-size: 18pt;
}

body[data-page="support"] .support-card-nested .support-table th {
  font-size: 14pt;
}

.support-divider {
  height: 1px;
  margin: 20px 0;
  background: #e3e7ec;
}

.sunrise-card {
  display: grid;
  gap: 18px;
}


.resource-detail-card {
  display: grid;
  gap: 30px;
}

.support-detail-card.sunrise-card,
.support-detail-card.about-card,
.support-detail-card.resource-detail-card,
.support-detail-card.volunteer-detail-card,
.detail-content .detail-text {
  padding-bottom: 30px;
}

.resource-detail-title {
  margin: 0;
  color: var(--ink);
  font-size: 28pt;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.resource-detail-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
  min-height: 60px;
  padding: 10px 58px;
  border: 1px solid #cad5e2;
  border-radius: 999px;
  background: #fff;
  color: #21406d;
  font-size: 24pt;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.resource-detail-action:hover,
.resource-detail-action:focus-visible {
  background: rgba(124, 167, 216, 0.16);
  color: var(--brand);
  transform: translateY(-2px);
}

.resource-detail-action:active {
  transform: scale(0.96);
}

.resource-detail-action img {
  position: absolute;
  right: 22px;
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(22%) sepia(48%) saturate(1246%) hue-rotate(188deg) brightness(89%) contrast(91%);
}

.resource-feature-list-wrap {
  display: grid;
  gap: 20px;
}

.resource-feature-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  border-top: 1px solid #e7ebef;
  padding-top: 20px;
}

.resource-feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-height: 96px;
  padding: 18px;
  border-radius: 999px 999px 0 999px;
  background: #e6fcffff;
}

.resource-feature-icon {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(48%) sepia(56%) saturate(977%) hue-rotate(184deg) brightness(85%) contrast(89%);
}

.resource-feature-copy {
  display: grid;
  gap: 8px;
}

.resource-feature-copy h2 {
  margin: 0;
  color: #4980d1ff;
  font-size: 20pt;
  font-weight: 800;
  line-height: 1.35;
}

.support-detail-card .resource-feature-copy p {
  color: var(--brand);
  font-size: 12pt;
  line-height: 1.8;
}

.support-detail-card .resource-feature-list {
  margin: 0;
  padding-left: 1.2em;
  color: var(--brand);
  font-size: 12pt;
  line-height: 1.8;
}

.resource-feature-list li+li {
  margin-top: 4px;
}

.resource-step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: stretch;
  gap: 0;
  padding: 10px 0 22px;
}

.resource-step-card {
  display: grid;
  align-content: start;
  justify-content: center;
  justify-items: center;
  gap: 10px;
  min-height: 96px;
  padding: 8px 24px;
  border: 0;
  background: transparent;
  text-align: center;
}

.resource-step-card+.resource-step-card {
  border-left: 1px solid #e7ebef;
}

.resource-step-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.resource-step-title img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.resource-step-title h3 {
  margin: 0;
  color: var(--brand);
  font-size: 12pt;
  font-weight: 800;
  line-height: 1.35;
}

.support-detail-card .resource-step-card p {
  margin: 0;
  color: var(--brand);
  font-size: 12pt;
  line-height: 1.65;
  text-align: center;
}



.venue-rental-card {
  gap: 20px;
}

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

.venue-feature-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  color: var(--brand);
}

.venue-feature-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  min-height: 77px;
}

.venue-feature-icon-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(48%) sepia(56%) saturate(977%) hue-rotate(184deg) brightness(85%) contrast(89%);
}

.venue-feature-copy h2 {
  margin: 0;
  color: #21406d;
  font-size: 12pt;
  font-weight: 800;
  line-height: 1.35;
}

.venue-section h2 {
  margin: 0;
  color: #4980d2;
  font-size: 20pt;
  font-weight: 800;
  line-height: 1.35;
}

.support-detail-card .venue-feature-copy p,
.venue-feature-items,
.venue-payment-notes,
.support-detail-card .venue-accordion-copy,
.support-detail-card .venue-rule-row p {
  margin: 0;
  color: #21406d;
  font-size: 12pt;
  line-height: 1.8;
}

.venue-feature-items,
.venue-payment-notes {
  padding-left: 1.1em;
}

.venue-section {
  display: grid;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #e3e7ec;
}

.venue-hour-frame {
  display: grid;
  gap: 16px;
  padding: 22px 10px 10px;
  border: 1px solid #dedede;
  border-radius: 10px;
}

.venue-hour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.venue-hour-card {
  display: grid;
  gap: 8px;
  min-height: 110px;
  padding: 20px 30px;
  border-right: 1px solid #dedede;
}

.venue-hour-card:last-child {
  border-right: 0;
}

.venue-hour-card h3 {
  margin: 0;
  color: #21406d;
  font-size: 12pt;
  font-weight: 800;
}

.venue-hour-card strong {
  color: #4980d1ff;
  font-size: 20pt;
  font-weight: 800;
  line-height: 1.35;
}

.venue-hour-unit {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 53px;
  padding: 10px 22px;
  border-radius: 5px;
  background: #f5f5f5;
  color: #21406d;
  font-size: 12pt;
}

.venue-hour-unit strong {
  color: #21406d;
  font-size: 24pt;
  line-height: 1;
}

.venue-hour-unit em {
  margin-left: auto;
  font-style: normal;
}

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

.venue-photo-card {
  margin: 0;
  padding-bottom: 28px;
  color: #21406d;
}

.venue-photo-card>div {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f5f5f5;
}

.venue-photo-card>div>img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-photo-caption {
  position: absolute;
  left: 0;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: min(70%, 255px);
  min-height: 48px;
  padding: 10px 22px 10px 18px;
  border-radius: 999px 0 999px 999px;
  background: #e7e7e7;
  color: #21406d;
  font-size: 12pt;
  font-weight: 800;
}

.venue-photo-quote {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.venue-price-table-wrap {
  overflow-x: auto;
}

.venue-price-table {
  display: grid;
  min-width: 730px;
  border: 1px solid #d1d1d1;
  color: #21406d;
  font-size: 12pt;
}

.venue-price-head,
.venue-price-row {
  display: grid;
  grid-template-columns: minmax(210px, 1.9fr) 80px 84px 84px 84px 90px;
}

.venue-price-head>div,
.venue-price-row>div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 10px;
  border-right: 1px solid #dbdbdb;
  border-bottom: 1px solid #d1d1d1;
  text-align: center;
  line-height: 1.6;
}

.venue-price-head>div {
  background: #f5f5f5;
  font-weight: 800;
}

.venue-price-head>div:nth-child(1),
.venue-price-head>div:nth-child(2) {
  grid-row: 1 / span 2;
}

.venue-price-head .venue-price-span {
  grid-column: 3 / span 3;
  grid-row: 1;
}

.venue-price-head>div:nth-child(4) {
  grid-column: 6;
  grid-row: 1 / span 2;
}

.venue-price-head>div:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.venue-price-head>div:nth-child(6) {
  grid-column: 4;
  grid-row: 2;
}

.venue-price-head>div:nth-child(7) {
  grid-column: 5;
  grid-row: 2;
}

.venue-price-row>div:first-child,
.venue-price-row>div:last-child {
  font-weight: 800;
}

.venue-price-row:not(.is-group):not(.is-simple):not(.is-wide)>div:nth-child(3),
.venue-price-row:not(.is-group):not(.is-simple):not(.is-wide)>div:nth-child(4),
.venue-price-row:not(.is-group):not(.is-simple):not(.is-wide)>div:nth-child(5) {
  color: #949494ff;
}

.venue-price-head>div:nth-child(4),
.venue-price-row>div:last-child {
  border-right: 0;
}

.venue-price-row.is-group,
.venue-price-row.is-simple {
  grid-template-columns: minmax(210px, 1.9fr) minmax(0, 1fr) minmax(160px, 0.85fr);
}

.venue-price-row.is-wide {
  grid-template-columns: minmax(210px, 1.9fr) minmax(0, 1fr) minmax(160px, 0.85fr);
}

.venue-price-row.is-wide>div:nth-child(2) {
  grid-column: span 2;
}

.venue-price-row.is-group>div {
  background: #f5f5f5;
  font-weight: 800;
}

.venue-price-row.is-simple>div:nth-child(3),
.venue-price-row.is-wide>div:nth-child(2) {
  font-weight: 400;
}

.venue-price-row.is-wide>div:first-child {
  font-weight: 800;
}

.venue-price-row:last-child>div {
  border-bottom: 0;
}

.venue-payment-steps {
  display: grid;
  gap: 0;
  padding-inline: 20px;
}

.venue-payment-step {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 66px;
}

.venue-payment-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #bbc2c9;
  border-radius: 50%;
  color: #bbc2c9;
  font-size: 18pt;
  font-weight: 800;
}

.support-detail-card .venue-payment-step p {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid #bbc2c9;
  color: #21406d;
  font-size: 12pt;
  line-height: 1.8;
}

.venue-payment-highlight {
  color: #21406d;
  font-size: 20pt;
  font-weight: 800;
  line-height: 1;
}

.venue-payment-emphasis {
  color: #4980d1ff;
  font-weight: 800;
}

.venue-payment-green {
  color: #5ebd7a;
  font-weight: 800;
}

.venue-payment-notes {
  display: grid;
  gap: 4px;
  padding: 16px 22px 16px 3em;
  border-radius: 10px;
  background: #f5f5f5;
}

.venue-accordion-list {
  display: grid;
  gap: 18px;
  margin-top: 3.6em;
}

.venue-rental-card .support-accordion {
  border: 1px solid #d5dee8;
  border-radius: 10px;
}

.venue-rule-table {
  display: grid;
}

.venue-rule-row {
  display: grid;
  grid-template-columns: 139px minmax(0, 1fr);
  border-bottom: 1px solid #d1d1d1;
}

.venue-rule-row:last-child {
  border-bottom: 0;
}

.venue-rule-row strong {
  display: flex;
  align-items: center;
  padding: 10px;
  color: #21406d;
  font-size: 12pt;
  line-height: 1.7;
}

.support-detail-card .venue-rule-row p {
  padding: 10px;
  white-space: pre-line;
}

.support-detail-card .venue-accordion-copy {
  white-space: pre-line;
}

.internship-detail-card {
  gap: 24px;
}

.internship-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 16px;
  border: 1px solid #cad5e2;
  border-radius: 999px;
  color: #ba592d;
  font-size: 20pt;
  font-weight: 800;
  text-align: center;
}

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

.internship-summary-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 0;
  align-items: center;
  min-height: 78px;
  padding-inline: 15px;
}

.internship-summary-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(48%) sepia(56%) saturate(977%) hue-rotate(184deg) brightness(85%) contrast(89%);
}

.internship-summary-copy h2 {
  margin: 0 0 4px;
  color: #21406d;
  font-size: 12pt;
  font-weight: 800;
  line-height: 1.8;
}

.support-detail-card .internship-summary-copy p {
  margin: 0;
  color: #21406d;
  font-size: 12pt;
  line-height: 1.8;
}

.internship-focus-table,
.internship-table {
  display: grid;
  gap: 1px;
  color: #21406d;
  background: #d1d1d1;
  border: 1px solid #d1d1d1;
}

.internship-focus-row {
  display: grid;
  grid-template-columns: minmax(42px, 0.18fr) minmax(92px, 0.36fr) minmax(0, 1fr);
  background: #fff;
}

.internship-focus-number,
.internship-focus-name,
.internship-focus-text {
  display: flex;
  align-items: center;
  padding: 10px;
  color: #21406d;
  line-height: 1.8;
}

.internship-focus-number {
  justify-content: center;
  font-size: 12pt;
  font-weight: 800;
  text-align: center;
}

.internship-focus-name {
  font-size: 12pt;
  font-weight: 800;
}

.internship-focus-text {
  font-size: 12pt;
  white-space: pre-line;
}

.internship-table-stack {
  display: grid;
  gap: 24px;
}

.internship-table-section {
  display: grid;
  gap: 8px;
}

.internship-table-section h2 {
  margin: 0;
  color: #4980d2;
  font-size: 20pt;
  font-weight: 800;
  line-height: 1.8;
}

.internship-table-row {
  display: grid;
  grid-template-columns: 97px minmax(0, 1fr);
  min-width: 650px;
  background: #fff;
}

.internship-table-row.has-extra {
  grid-template-columns: 97px minmax(0, 1fr) 97px minmax(160px, 0.65fr);
}

.internship-table-row.has-sub-label {
  grid-template-columns: 97px 80px minmax(0, 1fr);
}

.internship-table-row.has-subrow-stack {
  grid-template-columns: 97px minmax(0, 1fr);
}

.internship-table-row.is-service-content {
  grid-template-columns: 139px minmax(0, 1fr);
}

.internship-table-row.is-service-content .internship-table-label {
  background: #1f54a3ff;
  color: #fff;
}

.internship-table-row.is-service-content .internship-table-value {
  background: #4980d1ff;
  color: #fff;
}

.internship-table-label,
.internship-table-sub-label,
.internship-table-value {
  display: flex;
  align-items: center;
  min-height: 39px;
  padding: 8px 10px;
  border-right: 1px solid #dbdbdb;
  color: #21406d;
  font-size: 12pt;
  line-height: 1.8;
  white-space: pre-line;
}

.internship-table-label {
  justify-content: center;
  background: #f5f5f5;
  text-align: center;
}

.internship-table-sub-label {
  justify-content: center;
  background: #fff;
  font-weight: 800;
  text-align: center;
}

.internship-table-value {
  background: #fff;
}

.internship-table-row> :last-child {
  border-right: 0;
}

.internship-table-subrow-stack {
  display: grid;
  background: #d1d1d1;
  gap: 1px;
}

.internship-table-subrow {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  background: #fff;
}

.internship-table-subrow .internship-table-value {
  border-right: 0;
}

.internship-table-value.is-strong,
.internship-table-extra.is-strong {
  font-weight: 800;
}

.internship-detail-card .support-accordion {
  overflow: hidden;
}

.internship-detail-card .support-accordion-title {
  font-size: 16pt;
}

.internship-detail-card .internship-focus-table {
  gap: 0;
  background: #fff;
  border-left: 0;
  border-right: 0;
}

.internship-detail-card .internship-focus-row {
  border-bottom: 1px solid #d1d1d1;
}

.internship-detail-card .internship-focus-row:last-child {
  border-bottom: 0;
}

.internship-detail-card .support-accordion-body {
  overflow-x: visible;
}

.internship-table-section {
  overflow-x: auto;
}

.sunrise-statement {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 22px;
  align-items: stretch;
  margin-block: 20px;
  text-align: center;
}

.sunrise-statement-quote {
  align-self: start;
  justify-self: start;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.sunrise-statement-quote.is-end {
  align-self: end;
  justify-self: end;
  transform: rotate(180deg);
}

.support-detail-card p.sunrise-statement-text {
  margin: 0;
  color: #3369bb;
  font-size: 24pt;
  font-weight: 800;
  line-height: 1.7;
}

.sunrise-info-box {
  display: grid;
  gap: 14px;
  padding: 12px 10px;
  border-radius: 8px;
  background: #f8f9fa;
}

.sunrise-info-row {
  display: grid;
  grid-template-columns: 86px 1px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.sunrise-info-label {
  color: #3369bb;
  font-size: 16pt;
  line-height: 1.8;
}

.sunrise-info-divider {
  width: 1px;
  min-height: 100%;
  background: #becddc;
}

.support-detail-card p.sunrise-info-text {
  color: var(--brand);
  font-size: 12pt;
  font-weight: 600;
  line-height: 1.8;
}

.sunrise-section-title {
  margin: 0;
  color: var(--ink);
  font-size: 20pt;
  font-weight: 800;
}

.sunrise-honor-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.sunrise-honor-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 18px 8px;
  border-radius: 8px;
  background: #f8f9fa;
  text-align: center;
}

.sunrise-honor-icon {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.sunrise-honor-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17pt;
  font-weight: 800;
}

.sunrise-honor-amount {
  color: #3369bbff;
  font-size: 24pt;
  font-weight: 800;
  line-height: 1.15;
}

.support-detail-card .sunrise-honor-card p {
  color: #9ea1a6;
  font-size: 13pt;
  font-weight: 600;
  line-height: 1.5;
}

.support-detail-card .sunrise-info-list {
  margin: 0;
  padding-left: 1.2em;
  color: var(--brand);
  font-size: 12pt;
  font-weight: 600;
  line-height: 1.8;
}

.support-detail-card .sunrise-info-list li::marker {
  color: #4980d2ff;
}

.support-detail-card .sunrise-info-list li+li {
  margin-top: 4px;
}

.sunrise-info-heading {
  margin: 0;
  color: var(--ink);
  font-size: 20pt;
  font-weight: 800;
}

.sunrise-highlight {
  color: #5ebd7a;
  font-weight: 800;
}

.sunrise-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 22px 22px 37px;
  border-radius: 8px;
  background: #f8f9fa;
}

.sunrise-action-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.sunrise-action-panel h3 {
  margin: 0;
  color: #3369bb;
  font-size: 20pt;
  font-weight: 800;
}

.support-detail-card .sunrise-action-panel p {
  color: var(--brand);
  font-size: 15pt;
  font-weight: 600;
  line-height: 1.85;
}

.sunrise-action-divider {
  width: 1px;
  min-height: 100%;
  background: #becddc;
}

.sunrise-join-panel .support-actions {
  width: 238px;
  margin-top: auto;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
}

.sunrise-join-panel .support-action {
  width: 100%;
  min-width: 0;
  font-size: 18pt;
}

.sunrise-donation-copy {
  display: grid;
  gap: 10px;
}

.support-detail-card .sunrise-donation-copy p {
  color: var(--brand);
  font-size: 12pt;
  font-weight: 400;
  line-height: 1.85;
  text-align: center;
}

.support-accordion-body p+p {
  margin-top: 10px;
}

.support-table-wrap {
  overflow-x: visible;
}

.support-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
}

.support-table th,
.support-table td {
  vertical-align: top;
  padding: 18px 14px;
  border-bottom: 1px solid var(--line);
}

.support-table tr:last-child th,
.support-table tr:last-child td {
  border-bottom: 0;
}

.support-table th {
  width: 148px;
  color: var(--brand);
  text-align: left;
  font-size: 18pt;
}

.support-list {
  margin: 0;
  padding-left: 20px;
  color: rgba(23, 38, 63, 0.88);
  line-height: 1.8;
}

.support-donation-image {
  width: min(520px, 100%);
  margin-top: 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}

.support-transit-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.support-transit-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(244, 242, 236, 0.62);
}

.support-transit-card img {
  width: 48px;
  max-height: 48px;
  object-fit: contain;
}

.support-transit-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand);
}

.support-transit-card p.is-lines {
  display: grid;
  gap: 4px;
}

.support-placeholder {
  box-shadow: none;
}

.financial-report-card {
  display: grid;
  gap: 18px;
}

.financial-report-card h2 {
  margin-bottom: 0;
}

.support-detail-card p.financial-report-text {
  margin: 0;
}

.financial-report-image {
  display: block;
  width: 100%;
  max-width: 680px;
  border-radius: 10px;
}

.financial-report-list {
  display: grid;
  gap: 16px;
}

.financial-report-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 44px;
  padding: 8px 20px;
  border: 1px solid #cfd3d9;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand);
  font-size: 14pt;
  font-weight: 700;
  cursor: pointer;
  pointer-events: auto;
  text-decoration: none;
}

.financial-report-link:hover {
  border-color: rgba(33, 64, 109, 0.42);
  color: var(--ink);
}

.financial-report-link img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.financial-report-link span {
  min-width: 0;
}

.corporate-support-card {
  display: grid;
  gap: 18px;
}

.corporate-support-card h2 {
  margin-bottom: 0;
}

.support-detail-card p.corporate-support-text {
  margin: 0;
  color: var(--brand);
  font-size: 12pt;
  line-height: 1.8;
}

.corporate-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  gap: 5px;
}

.corporate-logo-frame {
  width: 280px;
  height: 70px;
  padding: 2px 2px;
  border: 1px solid #e3e7ec;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corporate-logo-frame img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.corporate-logo-frame.has-label {
  gap: 6px;
  justify-content: center;
}

.corporate-logo-frame.has-label img {
  flex: 0 1 auto;
  max-width: 132px;
}

.corporate-logo-label {
  flex: 0 1 118px;
  max-width: 118px;
  min-width: 0;
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.service-results-card {
  display: grid;
  gap: 18px;
}

.service-results-card h2 {
  margin-bottom: 0;
}

.service-results-image {
  display: block;
  width: 100%;
  max-width: 760px;
  border-radius: 10px;
}

.service-results-list {
  display: grid;
  gap: 16px;
}

.service-results-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 20px;
  border: 1px solid #cfd3d9;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand);
  font-size: 14pt;
  font-weight: 700;
  cursor: pointer;
  pointer-events: auto;
  text-decoration: none;
}

.service-results-link:hover {
  border-color: rgba(33, 64, 109, 0.42);
  color: var(--ink);
}

.service-results-link span {
  min-width: 0;
}

.with-sidebar {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.with-sidebar .breadcrumb {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.with-sidebar .page-sidebar {
  grid-column: 1;
}

.with-sidebar .sidebar-content {
  grid-column: 2;
}

.page-sidebar,
.sidebar-content {
  border-radius: 10px;
  padding: 24px;
}

.sidebar-content.support-content {
  padding: 0;
  border-radius: 0;
}

.page-sidebar {
  padding: 10px;
}

.page-sidebar h2 {
  margin: 0 0 18px;
  font-size: 24pt;
}

.sidebar-item {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 10px;
  margin-bottom: 14px;
  background: transparent;
  color: #9aa3ae;
  font-weight: 500;
}

.sidebar-item:last-child {
  margin-bottom: 0;
}

.sidebar-item.is-active {
  background: #e7eff8;
  color: var(--brand);
  font-weight: 800;
}

.sidebar-item.is-disabled {
  color: rgba(23, 38, 63, 0.42);
}

@media (min-width: 1081px) {
  .with-sidebar {
    --sidebar-scroll-top: 120px;
  }

  .with-sidebar .page-sidebar {
    position: sticky;
    top: var(--sidebar-scroll-top);
    align-self: start;
    padding: 0 10px 10px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .with-sidebar .sidebar-item {
    position: relative;
    min-height: 48px;
    padding: 0 16px 0 20px;
    border-radius: 6px;
    color: #9da5ae;
    background: transparent;
    box-shadow: none;
  }

  .with-sidebar .sidebar-item.is-active {
    background: #fff;
    color: var(--brand);
    box-shadow: none;
  }

  .with-sidebar .sidebar-item:not(.is-active):not(.is-disabled):hover {
    background: transparent;
    color: var(--brand);
    font-weight: 800;
  }

  .with-sidebar .sidebar-item.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 999px;
    background: #4980d1;
  }

  .with-sidebar .sidebar-item.is-disabled {
    color: #9da5ae;
    opacity: 0.65;
  }
}

.page-header.compact {
  margin-bottom: 20px;
}

.placeholder-panel,
.notes-card {
  padding: 24px;
  border-radius: 10px;
}

.placeholder-panel strong,
.notes-card h3 {
  font-size: 32pt;
}

.notes-card {
  margin-top: 18px;
}

.notes-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

#site-footer {
  margin-top: 30px;
  padding: 18px 0 68px;
  background: #21406d;
  border-top: 1px solid rgba(33, 64, 109, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(620px, 1fr);
  gap: 24px;
  align-items: start;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
}

.social-link img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.social-link.is-muted {
  opacity: 0.65;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  justify-self: end;
  width: min(760px, 100%);
}

.footer-registration {
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  padding: 0 22px;
  min-height: 44px;
}

.footer-contact+.footer-contact {
  border-left: 1px solid rgba(158, 161, 166, 0.55);
}

.footer-contact img {
  width: 22px;
  height: 22px;
  filter: invert(67%) sepia(8%) saturate(250%) hue-rotate(174deg) brightness(94%) contrast(87%);
}

.footer-contact span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-contact small {
  color: var(--date);
  font-size: 10pt;
  line-height: 1.1;
}

.footer-contact strong {
  color: #fff;
  font-size: 12pt;
  font-weight: 500;
  line-height: 1.35;
}

.footer-contact .footer-phone-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .topbar {
    justify-content: center;
  }

  .main-nav {
    flex-basis: 100%;
  }

  .nav-dropdown {
    left: 0;
    transform: translateY(-4px);
  }

  .nav-menu:hover .nav-dropdown,
  .nav-menu:focus-within .nav-dropdown {
    transform: translateY(0);
  }

  .hero-carousel {
    min-height: 440px;
  }

  .home-duo,
  .detail-content,
  .with-sidebar,
  .list-card {
    grid-template-columns: 1fr;
  }

  .with-sidebar .page-sidebar,
  .with-sidebar .sidebar-content {
    grid-column: 1;
  }

  .stats-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .support-card,
  .support-section-row {
    grid-template-columns: 1fr;
  }

  .sunrise-statement {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 12px;
  }

  .sunrise-statement-quote {
    width: 36px;
    height: 36px;
  }

  .sunrise-info-row,
  .sunrise-action-row {
    grid-template-columns: 1fr;
  }

  .sunrise-info-divider,
  .sunrise-action-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
  }

  .sunrise-honor-grid {
    grid-template-columns: 1fr;
  }

  .support-actions {
    justify-content: flex-start;
  }


  .resource-detail-action {
    padding: 10px 48px;
    font-size: 24pt;
  }

  .resource-feature-row,
  .resource-step-list {
    grid-template-columns: 1fr;
  }

  .resource-feature-visual {
    width: 100%;
    min-height: 88px;
  }

  .resource-step-card {
    justify-content: center;
    padding: 14px 0;
  }

  .resource-step-card+.resource-step-card {
    border-top: 1px solid #e7ebef;
    border-left: 0;
  }


  .venue-feature-grid,
  .venue-photo-grid,
  .venue-hour-grid {
    grid-template-columns: 1fr;
  }

  .venue-rule-row {
    grid-template-columns: 1fr;
  }

  .venue-feature-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .venue-feature-icon-wrap {
    width: 58px;
    min-height: 58px;
  }

  .venue-feature-icon-wrap img {
    width: 40px;
    height: 40px;
  }

  .venue-hour-card {
    border-right: 0;
    border-bottom: 1px solid #dedede;
  }

  .venue-photo-caption {
    min-width: min(82%, 255px);
  }

  .venue-hour-card:last-child {
    border-bottom: 0;
  }

  .venue-hour-unit {
    flex-wrap: wrap;
  }

  .venue-hour-unit em {
    width: 100%;
    margin-left: 0;
  }

  .venue-payment-step {
    grid-template-columns: 40px minmax(0, 1fr);
    justify-items: stretch;
    text-align: left;
  }

  .support-detail-card .venue-payment-step p {
    width: 100%;
  }

  .internship-notice {
    border-radius: 18px;
    font-size: 18pt;
  }

  .internship-summary-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .internship-summary-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .internship-summary-item img {
    width: 40px;
    height: 40px;
  }

  .internship-table-row,
  .internship-table-row.has-extra,
  .internship-table-row.has-sub-label,
  .internship-table-row.has-subrow-stack {
    min-width: 560px;
  }

  .internship-focus-number,
  .internship-focus-name,
  .internship-table-label,
  .internship-table-sub-label,
  .internship-table-value {
    font-size: 12pt;
    padding: 7px 8px;
  }

  .internship-focus-text {
    font-size: 11pt;
    padding: 7px 8px;
  }

  .corporate-logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 280px));
  }

  .corporate-logo-frame {
    width: min(280px, 100%);
  }

  .support-section-row .support-actions {
    width: 100%;
  }

  .sunrise-join-panel .support-actions {
    width: 100%;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100vw - 20px, 100vw - 20px);
  }

  .topbar {
    position: relative;
    gap: 12px;
  }

  .mobile-nav-toggle {
    position: absolute;
    top: 14px;
    right: 0;
    display: inline-flex;
    z-index: 35;
  }

  .main-nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    width: 100%;
    justify-content: center;
    padding-top: 4px;
  }

  #site-header.is-nav-open .main-nav {
    display: flex;
  }

  .article-nav {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 6px;
  }

  .article-nav-button {
    min-height: 38px;
    padding: 0 9px;
    gap: 4px;
    font-size: 12pt;
    line-height: 1;
    white-space: nowrap;
  }

  .article-nav-button img {
    width: 16px;
    height: 16px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-mark {
    width: 58px;
  }

  .brand-wordmark {
    width: 150px;
  }

  .top-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-carousel {
    min-height: 380px;
    border-radius: 0;
  }

  .hero-copy {
    left: 24px;
    right: 24px;
    bottom: 38px;
  }

  .inner-page {
    padding-left: 10px;
    padding-right: 10px;
  }

  .breadcrumb,
  .page-header {
    padding-left: 4px;
    padding-right: 4px;
  }

  .hero-copy p,
  .page-header p,
  .placeholder-panel p,
  .notes-card li,
  .support-card p,
  .support-section-title p,
  .support-accordion-body p {
    font-size: 16pt;
  }

  .detail-text p {
    font-size: 14pt;
  }

  .support-hero {
    min-height: 300px;
  }

  .support-hero-copy {
    padding-left: 10px;
    padding-right: 10px;
  }

  .support-hero-copy h1 {
    letter-spacing: 0.04em;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-map-panel,
  .contact-map {
    min-height: 320px;
  }

  .contact-submit {
    justify-self: center;
    width: min(220px, 100%);
  }

  .contact-modal-box {
    min-height: 220px;
  }

  .headline-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .gallery-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .detail-article,
  .page-sidebar,
  .sidebar-content,
  .list-card {
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social,
  .footer-contact-list {
    justify-content: center;
  }

  .footer-social {
    justify-self: center;
  }

  .footer-meta {
    align-items: center;
    justify-self: center;
  }

  .footer-contact-list {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-content: center;
  }

  .footer-contact+.footer-contact {
    border-left: 0;
    border-top: 1px solid rgba(158, 161, 166, 0.35);
    padding-top: 12px;
    margin-top: 12px;
  }

  .support-table {
    min-width: 0;
  }

  .support-table,
  .support-table tbody,
  .support-table tr,
  .support-table th,
  .support-table td {
    display: block;
    width: 100%;
  }

  .support-table th {
    padding: 14px 0 6px;
  }

  .support-table td {
    padding: 0 0 14px;
  }

  .support-action {
    width: 100%;
  }

  .support-transit-card {
    grid-template-columns: 44px 1fr;
  }

  .support-transit-card img {
    width: 38px;
    max-height: 38px;
  }
}

.nav-dropdown-link.is-disabled {
  color: rgba(23, 38, 63, 0.38);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  pointer-events: none;
}

.sidebar-item.is-disabled {
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.volunteer-detail-card {
  display: grid;
  gap: 18px;
}

body[data-page="volunteer"] .support-detail-card>.support-simple-text,
body[data-page="volunteer"] .support-detail-card .support-accordion-body p {
  font-size: 12pt;
}

.volunteer-type-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(33, 64, 109, 0.1);
  border-radius: 10px;
  background: #fff;
}

.volunteer-type-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--ink);
  font-size: 18pt;
  line-height: 1.4;
}

.volunteer-type-card h3 img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 34px;
}

.volunteer-info-box {
  display: grid;
  gap: 14px;
  padding: 12px 10px;
  border-radius: 8px;
  background: #f8f9fa;
}

.volunteer-info-row {
  display: grid;
  grid-template-columns: 86px 1px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.volunteer-info-label {
  color: #3369bb;
  font-size: 16pt;
  line-height: 1.8;
}

.volunteer-info-divider {
  width: 1px;
  min-height: 100%;
  background: #becddc;
}

.volunteer-info-text {
  margin: 0;
  color: var(--brand);
  font-size: 12pt;
  font-weight: 600;
  line-height: 1.8;
}

.volunteer-note {
  margin: 0;
}

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

.volunteer-portal-content {
  width: 100%;
}

.volunteer-portal-panel {
  display: grid;
  gap: 0;
  padding-bottom: 30px;
}

.volunteer-portal-top {
  display: grid;
  gap: 34px;
  justify-items: center;
  padding: 25px 0 250px;
  scroll-margin-top: 160px;
}

.volunteer-portal-heading {
  display: grid;
  gap: 18px;
  justify-items: center;
  width: min(808px, 100%);
  color: var(--brand);
}

.volunteer-portal-heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(33, 64, 109, 0.1);
}

.volunteer-portal-heading h2 {
  margin: 0;
  color: var(--brand);
  font-size: 28pt;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.volunteer-portal-cards {
  display: grid;
  grid-template-columns: repeat(2, 379px);
  gap: 34px;
  justify-content: center;
  width: min(888px, 100%);
}

.volunteer-portal-card {
  display: grid;
  grid-template-rows: minmax(0, 420px) 66px;
  width: 379px;
  min-height: 486px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 10px;
  background: #fff;
  color: var(--brand);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(23, 38, 63, 0.14);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.volunteer-portal-card:hover,
.volunteer-portal-card:focus-visible {
  border-color: #4980d2;
  transform: translateY(-2px);
}

.volunteer-portal-card-main {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 420px;
  overflow: hidden;
  padding-top: 34px;
  background: #e3fced;
}

.volunteer-portal-card:not(.is-join) .volunteer-portal-card-main {
  background: #c7eaff;
}

.volunteer-portal-card-quote {
  position: absolute;
  z-index: 1;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.volunteer-portal-card-quote.is-left {
  top: 24px;
  left: 26px;
}

.volunteer-portal-card-quote.is-right {
  top: 60px;
  right: 22px;
  transform: rotate(180deg);
}

.volunteer-portal-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  justify-items: center;
  min-height: 62px;
  color: var(--brand);
  text-align: center;
}

.volunteer-portal-card-title {
  color: var(--brand);
  font-size: 30pt;
  font-weight: 800;
  line-height: 1.3;
  transition: font-size 0.2s ease;
}

.volunteer-portal-card-subtitle {
  color: var(--brand);
  font-size: 12pt;
  font-weight: 800;
  line-height: 1.5;
}

.volunteer-portal-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
  margin-top: 20px;
  overflow: hidden;
}

.volunteer-portal-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.24s ease;
}

.volunteer-portal-card.is-join .volunteer-portal-card-media img {
  transform: scaleX(-1);
}

.volunteer-portal-card:hover .volunteer-portal-card-media img,
.volunteer-portal-card:focus-visible .volunteer-portal-card-media img {
  transform: scale(1.06);
}

.volunteer-portal-card.is-join:hover .volunteer-portal-card-media img,
.volunteer-portal-card.is-join:focus-visible .volunteer-portal-card-media img {
  transform: scaleX(-1) scale(1.06);
}

.volunteer-portal-card:hover .volunteer-portal-card-title,
.volunteer-portal-card:focus-visible .volunteer-portal-card-title {
  font-size: 32pt;
}

.volunteer-portal-card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 66px;
  background: #fff;
  color: var(--brand);
  font-size: 16pt;
  font-weight: 800;
  line-height: 1.3;
}

.volunteer-portal-card-action::after {
  content: "";
  position: absolute;
  right: 48px;
  width: 24px;
  height: 24px;
  background: url("icon/keyboard_arrow_right_24dp_000000_FILL0_wght700_GRAD0_opsz24.svg") center / 24px 24px no-repeat;
}

.volunteer-portal-section {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 50px;
  align-items: start;
  scroll-margin-top: 165px;
}

.volunteer-portal-section+.volunteer-portal-section {
  margin-top: 90px;
}

.volunteer-portal-section+.volunteer-portal-back-wrap {
  margin-top: 42px;
}

.volunteer-portal-section-visual {
  width: 210px;
}

.volunteer-portal-section-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.volunteer-portal-section-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.volunteer-portal-section-copy h2 {
  margin: 0;
  color: var(--brand);
  font-size: 24pt;
  font-weight: 800;
  line-height: 1.35;
}

.volunteer-portal-panel .volunteer-portal-text {
  margin: 0;
  color: var(--brand);
  font-size: 12pt;
  font-weight: 600;
  line-height: 1.8;
}

.volunteer-portal-accordion-list,
.volunteer-portal-type-list {
  display: grid;
  gap: 16px;
}

.volunteer-portal-accordion-list .support-accordion-toggle {
  font-size: 16pt;
}

.volunteer-portal-accordion-list .support-accordion-body p,
.volunteer-portal-type-list .volunteer-info-label,
.volunteer-portal-type-list .volunteer-info-text,
.volunteer-portal-note {
  font-size: 12pt;
}

.volunteer-portal-note {
  color: var(--brand);
  font-weight: 600;
}

.volunteer-portal-back-wrap {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.volunteer-portal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 13px 28px;
  border-radius: 999px;
  background: #4980d2;
  color: #fff;
  font-size: 13pt;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
}

.volunteer-portal-back:hover,
.volunteer-portal-back:focus-visible {
  background: #3369bb;
}

@media (max-width: 720px) {
  .volunteer-type-card {
    padding: 18px;
  }

  .volunteer-info-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .volunteer-info-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
  }

  .volunteer-portal-panel {
    gap: 0;
  }

  .volunteer-portal-top {
    gap: 22px;
    padding: 10px 0 86px;
  }

  .volunteer-portal-heading {
    gap: 12px;
  }

  .volunteer-portal-heading h2 {
    font-size: 20pt;
  }

  .volunteer-portal-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    width: 100%;
  }

  .volunteer-portal-card {
    grid-template-rows: minmax(0, auto) 62px;
    width: min(379px, 100%);
    min-height: 0;
  }

  .volunteer-portal-card-main {
    min-height: 0;
    padding-top: 36px;
  }

  .volunteer-portal-card-quote {
    width: 46px;
    height: 46px;
  }

  .volunteer-portal-card-quote.is-left {
    left: 18px;
  }

  .volunteer-portal-card-quote.is-right {
    right: 18px;
  }

  .volunteer-portal-card-title {
    font-size: 30pt;
  }

  .volunteer-portal-card:hover .volunteer-portal-card-title,
  .volunteer-portal-card:focus-visible .volunteer-portal-card-title {
    font-size: 32pt;
  }

  .volunteer-portal-card-media {
    width: min(300px, 86%);
    height: auto;
    aspect-ratio: 1;
    margin-top: 38px;
  }

  .volunteer-portal-card-action {
    gap: 56px;
    min-height: 62px;
    font-size: 14pt;
  }

  .volunteer-portal-section {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
    scroll-margin-top: 150px;
  }

  .volunteer-portal-section-copy {
    width: 100%;
  }

  .volunteer-portal-section-copy h2 {
    font-size: 21pt;
  }

  .volunteer-portal-back {
    width: 100%;
    min-width: 0;
  }
}

/* Mobile dropdown overflow guard */
@media (max-width: 720px) {
  .nav-menu {
    position: static;
  }

  .nav-dropdown {
    left: 50%;
    width: min(220px, calc(100vw - 32px));
    transform: translate(-50%, -4px);
  }

  .nav-menu:hover .nav-dropdown,
  .nav-menu:focus-within .nav-dropdown {
    transform: translate(-50%, 0);
  }
}

.records-content {
  display: grid;
  gap: 18px;
  padding: 0;
  border-radius: 0;
}

.records-gallery-list {
  display: grid;
  gap: 18px;
}

.records-gallery-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 202px;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.records-gallery-image {
  display: block;
  width: 240px;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
}

.records-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.records-gallery-copy {
  display: grid;
  gap: 10px;
  padding-right: 10px;
}

.records-gallery-date,
.records-table-date {
  color: var(--date);
  font-size: 12pt;
  font-weight: 600;
}

.records-gallery-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.35;
}

.records-gallery-copy p {
  margin: 0;
  color: var(--brand);
  font-size: 12pt;
  line-height: 1.6;
}

.records-table-card {
  display: grid;
  padding: 14px 24px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: var(--shadow);
}

.records-table-header,
.records-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 16px;
  align-items: center;
}

.records-table-header {
  min-height: 36px;
  padding: 0 10px;
  border-bottom: 1px solid #e7ebef;
  background: #f8f9fa;
  color: var(--date);
  font-size: 10pt;
  font-weight: 400;
}

.records-table-header span:last-child {
  justify-self: end;
  text-align: right;
}

.records-table-row {
  min-height: 52px;
  border-bottom: 1px solid #e7ebef;
  color: var(--brand);
  font-size: 14pt;
  font-weight: 500;
}

.records-table-row:last-child {
  border-bottom: 0;
}

.records-table-row:hover {
  color: var(--ink);
}

.records-table-title {
  min-width: 0;
}

.records-table-date {
  font-weight: 400;
  justify-self: end;
  text-align: right;
  white-space: nowrap;
}

.records-pdf-card,
.records-submission-card {
  gap: 0;
}

.records-pdf-header,
.records-pdf-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 120px;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid #e7ebef;
}

.records-pdf-header {
  grid-template-columns: 58px minmax(0, 1fr) 120px;
  min-height: 36px;
  padding: 0 10px;
  background: #f8f9fa;
  color: var(--date);
  font-size: 10pt;
  font-weight: 400;
}

.records-pdf-header span:first-child {
  grid-column: 2;
}

.records-pdf-header span:last-child {
  justify-self: end;
  text-align: right;
}

.records-pdf-row {
  color: var(--brand);
  font-size: 14pt;
  font-weight: 500;
}

.records-pdf-row:last-child {
  border-bottom: 0;
}

.records-pdf-icon {
  display: inline-flex;
  justify-content: center;
}

.records-pdf-icon img {
  width: 24px;
  height: 24px;
}

.records-pdf-title {
  min-width: 0;
  line-height: 1.45;
}

.records-pdf-date {
  color: var(--date);
  font-size: 12pt;
  font-weight: 400;
  justify-self: end;
  text-align: right;
  white-space: nowrap;
}

.records-submit-button {
  justify-self: center;
  min-width: 100%;
  min-height: 34px;
  margin-bottom: 16px;
  border: 1px solid #d9e3ee;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-weight: 700;
}

.records-submission-header,
.records-submission-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px 102px 136px;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid #e7ebef;
}

.records-submission-header {
  min-height: 36px;
  padding: 0 10px;
  border-bottom: 1px solid #e7ebef;
  background: #f8f9fa;
  color: var(--date);
  font-size: 12pt;
  font-weight: 700;
}

.records-submission-row {
  color: var(--brand);
  font-size: 15pt;
  font-weight: 700;
}

.records-submission-row:last-child {
  border-bottom: 0;
}

.records-submission-title {
  min-width: 0;
  padding-left: 10px;
  line-height: 1.45;
  text-align: left;
}

.records-submission-author,
.records-submission-views,
.records-submission-date,
.records-submission-header span:not(:first-child) {
  justify-self: center;
  text-align: center;
}

.records-submission-date,
.records-submission-views {
  color: var(--date);
  font-size: 13pt;
}

.records-submission-author {
  color: #9ea1a6ff;
}

.support-detail-card .support-accordion {
  box-shadow: none;
}

.volunteer-action-divider {
  margin-top: 20px;
}

@media (max-width: 720px) {
  .records-gallery-card {
    grid-template-columns: 1fr;
  }

  .records-gallery-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .records-gallery-copy {
    padding: 6px 8px 10px;
  }

  .records-table-header,
  .records-pdf-header {
    display: none;
  }

  .records-table-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    align-items: start;
    padding: 12px 10px;
  }

  .records-table-title {
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .records-table-date {
    justify-self: start;
    text-align: left;
    font-size: 12pt;
  }

  .records-pdf-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    padding: 12px 10px;
  }

  .records-pdf-icon {
    align-self: start;
    padding-top: 2px;
  }

  .records-pdf-title {
    grid-column: 2;
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .records-pdf-date {
    grid-column: 2;
    justify-self: start;
    text-align: left;
    font-size: 12pt;
  }

  .records-submission-header,
  .records-submission-row {
    grid-template-columns: minmax(0, 1fr) 62px 54px 78px;
    gap: 4px 6px;
  }

  .records-submission-row {
    padding: 12px 10px;
    font-size: 13pt;
  }

  .records-submission-title {
    padding-left: 0;
  }

  .records-submission-header,
  .records-submission-date,
  .records-submission-views {
    font-size: 12pt;
  }
}


.support-detail-card .support-actions:has(+ .volunteer-action-divider) {
  margin-top: 42px;
}

.support-detail-card .volunteer-action-divider~.support-accordion .support-accordion-toggle {
  font-size: 18pt;
}

@media (max-width: 480px) {
  .sunrise-honor-grid {
    grid-template-columns: 1fr;
  }
}

.about-card {
  overflow: hidden;
}

.about-founder-row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.about-founder-image {
  width: 112px;
  border: 5px solid #fff;
  box-shadow: 0 8px 22px rgba(25, 45, 72, 0.22);
}

.about-founder-copy {
  display: grid;
  gap: 10px;
}

.about-founder-copy h3 {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--brand);
  font-weight: 800;
  line-height: 1.45;
}

.about-founder-title-top {
  font-size: 12pt;
}

.about-founder-title-name {
  font-size: 16pt;
}

.support-detail-card .about-founder-copy p {
  color: #9ea1a6;
  font-size: 12pt;
  font-weight: 500;
  line-height: 1.8;
}

.about-purpose-divider {
  margin: 26px 0;
}

.about-purpose-timeline {
  display: grid;
  gap: 18px;
}

.about-purpose-timeline-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.about-purpose-timeline-row+.about-purpose-timeline-row {
  border-top: 1px solid rgba(51, 105, 187, 0.18);
  padding-top: 18px;
}

.about-purpose-year {
  color: #3369bb;
  font-size: 20pt;
  font-weight: 800;
  line-height: 1.45;
}

.support-detail-card p.about-purpose-timeline-text {
  color: var(--brand);
  font-size: 12pt;
  font-weight: 500;
  line-height: 1.8;
}

.about-service-statement {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 26px;
  text-align: center;
}

.about-service-quote {
  align-self: start;
  justify-self: start;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.about-service-quote.is-end {
  align-self: end;
  justify-self: end;
  transform: rotate(180deg);
}

.support-detail-card p.about-service-intro {
  margin: 0;
  color: #3369bb;
  font-size: 24pt;
  font-weight: 800;
  line-height: 1.7;
}

.about-service-list {
  display: grid;
}

.about-service-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  border-top: 1px solid #e7ebef;
  padding-top: 20px;
}

.about-service-row+.about-service-row {
  margin-top: 20px;
}

.about-service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-height: 96px;
  padding: 18px;
  border-radius: 999px 999px 0 999px;
  background: #e6fcffff;
}

.about-service-visual img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.about-service-copy {
  display: grid;
  gap: 6px;
}

.about-service-copy h3 {
  margin: 0 0 4px;
  color: #4980d2;
  font-size: 20pt;
  font-weight: 800;
  line-height: 1.35;
}

.support-detail-card .about-service-copy p {
  color: var(--brand);
  font-size: 12pt;
  line-height: 1.8;
}

.support-detail-card .about-service-copy p.about-service-strong-line {
  font-weight: 800;
}

.about-inline-link {
  display: inline-flex;
  align-items: center;
  margin: 0 2px;
  padding: 1px 6px 2px;
  border-radius: 5px;
  background: #3369bb;
  color: #fff;
  font-weight: 800;
}

.about-organization-card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-organization-image {
  width: min(640px, 100%);
  margin: 0 auto;
}

.records-pdf-header {
  position: relative;
}

.records-gallery-summary:empty {
  visibility: hidden;
}

.cms-organization-image {
  aspect-ratio: 5 / 4;
  height: 512px;
  max-height: 80vw;
  object-fit: contain;
}

.about-board-table {
  display: grid;
  gap: 0;
}

.about-board-header,
.about-board-row {
  display: grid;
  grid-template-columns: 114px 84px 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.about-board-header {
  min-height: 36px;
  padding: 0 10px;
  background: #f8f9fa;
  color: var(--date);
  font-size: 10pt;
  font-weight: 400;
}

.about-board-header span {
  display: flex;
  align-items: center;
}

.about-board-row {
  min-height: 52px;
  border-bottom: 1px solid #e7ebef;
  color: var(--brand);
  font-size: 14pt;
  font-weight: 500;
}

.about-board-row:last-child {
  border-bottom: 0;
}

.about-board-position {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  margin: 8px 0;
  padding: 6px 8px;
  border-radius: 4px;
  color: var(--brand);
}

.about-board-position.is-chair {
  background: #aec5e7;
}

.about-board-position.is-executive-director {
  background: #c9d5ea;
}

.about-board-position.is-director {
  background: #cfe4f4;
}

.about-board-position.is-supervisor {
  background: #e5ecef;
}

.about-board-name,
.about-board-gender {
  display: flex;
  align-items: center;
}

.support-detail-card p.about-board-experience {
  margin: 0;
  color: var(--brand);
  font-size: 12pt;
  font-weight: 400;
  line-height: 1.7;
}

@media (max-width: 720px) {

  .about-founder-row,
  .about-purpose-timeline-row,
  .about-service-row,
  .about-board-row {
    grid-template-columns: 1fr;
  }

  .about-founder-image {
    width: 132px;
  }

  .about-service-statement {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 12px;
  }

  .about-service-quote {
    width: 32px;
    height: 32px;
  }

  .about-service-visual {
    width: 100%;
    min-height: 88px;
    justify-content: center;
  }

  .about-board-header {
    display: none;
  }

  .about-board-row {
    gap: 6px;
    padding: 12px 0;
  }

  .about-board-position {
    justify-content: flex-start;
    margin: 0;
  }
}

.impact-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.impact-action-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 110px;
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  color: var(--brand);
  font-size: 30pt;
  font-weight: 800;
}

.impact-action-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.impact-action-card.is-wide {
  grid-column: span 2;
}

.impact-action-card.no-image {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.impact-action-card[href]:hover {
  transform: translateY(-2px);
  color: var(--accent);
}

@media (max-width: 1080px) {
  .impact-action-grid {
    grid-template-columns: 1fr;
  }

  .impact-action-card.is-wide {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .brand-logo {
    width: 220px;
  }

  .impact-action-card {
    grid-template-columns: 72px minmax(0, 1fr);
    font-size: 18pt;
  }

  .impact-action-card img {
    width: 72px;
    height: 72px;
  }
}

/* Home experiment layout migrated to official home */
body[data-page="home"] {
  overflow-x: hidden;
  overflow-x: clip;
}

.experiment-hero-section {
  position: relative;
  min-height: 520px;
  padding: 16px 0 40px;
  overflow: hidden;
}

.experiment-hero-marquee {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 1;
  width: 100vw;
  overflow: visible;
  cursor: grab;
  pointer-events: auto;
  touch-action: pan-y;
  user-select: none;
  transform: translateX(-50%);
}

.experiment-hero-marquee.is-dragging {
  cursor: grabbing;
}

.experiment-hero-track {
  display: inline-flex;
  width: max-content;
  gap: 24px;
  will-change: transform;
  transform: translateX(0);
}

.experiment-hero-card {
  position: relative;
  flex: 0 0 clamp(320px, 40vw, 548px);
  aspect-ratio: 548 / 354;
  margin: 0;
  overflow: hidden;
  border-radius: 60px;
  background: #f5f3ed;
  user-select: none;
}

.experiment-hero-card>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.experiment-hero-card-tag {
  position: absolute;
  top: 5px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1;
  text-align: right;
  text-shadow: 0 2px 8px rgba(35, 45, 58, 0.32);
  pointer-events: none;
}

.experiment-hero-card-tag img {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  margin: -14px -7px 0 0;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.experiment-hero-card-tag span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-top: 5px;
}

.experiment-hero-copy-shell {
  position: relative;
  z-index: 2;
  min-height: 464px;
  pointer-events: none;
}

.experiment-hero-copy {
  position: absolute;
  left: 24px;
  bottom: -2px;
  max-width: min(100%, 920px);
  color: #303e53;
}

.experiment-hero-title-row {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}

.experiment-hero-number,
.experiment-hero-title {
  display: inline-block;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
}

.experiment-hero-number {
  --number-height: clamp(72px, 9vw, 90pt);
  position: relative;
  width: clamp(166px, 20.82vw, 278px);
  height: var(--number-height);
  flex: 0 0 auto;
  line-height: 1;
}

.experiment-hero-number img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.experiment-hero-title {
  color: #303e53;
  font-size: clamp(28px, 3.2vw, 30pt);
  text-shadow: none;
  -webkit-text-stroke: 0;
  transform: translateY(-0.18em);
}

.experiment-hero-dialog {
  position: relative;
  display: inline-grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  width: 158px;
  min-height: 56px;
  margin-left: 2px;
  padding: 8px 16px 8px 28px;
  color: #afafaf;
  background: url("icon/dialog_box_W.svg") center / 100% 100% no-repeat;
  font-weight: 500;
  line-height: 1.1;
  transform: translateY(6px);
}

.experiment-hero-dialog-time {
  display: grid;
  justify-items: center;
  gap: 0;
  line-height: 0.9;
}

.experiment-hero-dialog-time strong {
  font-size: 22px;
  line-height: 0.9;
}

.experiment-hero-dialog-time span {
  font-size: 10px;
  line-height: 1;
}

.experiment-hero-dialog-text {
  display: grid;
  gap: 2px;
  font-size: 13px;
  line-height: 1.12;
}

.experiment-hero-copy p {
  margin: 14px 0 0 8px;
  color: #303e53;
  font-size: clamp(16px, 1.5vw, 16pt);
  font-weight: 800;
  line-height: 1.5;
}


.experiment-impact-section .impact-panel {
  position: relative;
  width: 100%;
  display: grid;
  gap: 20px;
  overflow: visible;
}

.experiment-impact-section .section-heading,
.experiment-impact-section .stats-grid {
  position: relative;
  z-index: 3;
}

.experiment-impact-marquee {
  position: absolute;
  left: 50%;
  top: 58px;
  z-index: 1;
  overflow: hidden;
  width: 100vw;
  color: #fcfbf7;
  font-size: 100pt;
  font-weight: 900;
  line-height: 0.95;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
}

.experiment-impact-marquee-track {
  display: inline-flex;
  min-width: max-content;
  will-change: transform;
  animation: experiment-marquee-left 34s linear infinite;
}

.experiment-impact-marquee-track span {
  display: inline-block;
  padding-right: 0.4em;
}

@keyframes experiment-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


.experiment-impact-section .stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
}

.experiment-impact-section .stat-card {
  border-radius: 50px 20px 50px 20px;
  box-shadow: none;
  color: inherit;
  text-decoration: none;
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.experiment-impact-section .stat-card:hover {
  cursor: pointer;
}

.experiment-impact-section .stat-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.experiment-impact-section .stat-card:nth-child(2) {
  transition-delay: 0.12s;
}

.experiment-impact-section .stat-card:nth-child(3) {
  transition-delay: 0.24s;
}

.experiment-sponsor-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  max-height: 70px;
  overflow: hidden;
  user-select: none;
}

.experiment-sponsor-label {
  color: var(--brand);
  font-size: 12pt;
  font-weight: 600;
  white-space: nowrap;
}

.experiment-sponsor-marquee {
  min-width: 0;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.experiment-sponsor-track {
  display: flex;
  width: max-content;
  height: 60px;
  animation: experiment-sponsor-scroll 48s linear infinite;
  will-change: transform;
}

.experiment-sponsor-track img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 60px;
  max-height: 60px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes experiment-sponsor-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .experiment-impact-section .stat-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

}

.experiment-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  gap: 24px;
  align-items: stretch;
}

.experiment-video-card {
  min-height: 100%;
}

.experiment-video-card .video-embed {
  min-height: 440px;
}

.experiment-social-column {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 128px minmax(0, 1fr);
  align-self: stretch;
  gap: 16px;
}

.experiment-social-card {
  width: 100%;
  min-height: 0;
  height: 100%;
  box-sizing: border-box;
}

.experiment-line-card {
  min-height: 0;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  padding: 10px 14px;
  font-size: 20px;
}

.experiment-line-card img {
  width: 72px;
  height: 72px;
}

.experiment-facebook-card {
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.experiment-facebook-card iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 0;
  background: #fff;
}

.experiment-facebook-fallback {
  display: none;
}

.experiment-facebook-fallback:hover,
.experiment-facebook-fallback:focus {
  color: var(--accent);
}

@media (max-width: 1080px) {
  .experiment-video-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  }
}

@media (max-width: 820px) {
  .experiment-hero-section {
    min-height: 430px;
    padding: 12px 0 34px;
    overflow: hidden;
  }

  .experiment-hero-marquee {
    left: 0;
    width: 100%;
    overflow: hidden;
    transform: none;
  }

  .experiment-hero-card {
    flex-basis: min(78vw, 420px);
    border-radius: 44px;
  }

  .experiment-hero-copy-shell {
    min-height: 374px;
  }

  .experiment-hero-copy {
    left: 10px;
    right: 10px;
    bottom: 34px;
  }

  .experiment-hero-title-row {
    display: block;
  }

  .experiment-hero-number {
    --number-height: clamp(58px, 20vw, 86px);
    width: clamp(134px, 46.26vw, 199px);
  }

  .experiment-hero-title {
    margin-top: -4px;
    font-size: clamp(24px, 7.2vw, 34px);
    transform: none;
  }

  .experiment-hero-dialog {
    display: none;
  }

  .experiment-hero-copy p {
    margin: 10px 0 0 2px;
    font-size: clamp(15px, 4vw, 18px);
  }

  .experiment-impact-section .stats-grid,
  .experiment-video-layout {
    grid-template-columns: 1fr;
  }

  .experiment-video-card .video-embed {
    min-height: 320px;
  }

  .experiment-social-column {
    grid-template-rows: auto auto;
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
  }

  .experiment-impact-marquee {
    left: auto;
    position: relative;
    top: auto;
    max-width: 100%;
    width: 100%;
    margin: -8px 0 -4px;
    font-size: 56pt;
    overflow: hidden;
    transform: none;
  }

  .experiment-impact-section .stats-grid {
    margin-top: 0;
  }

  .experiment-sponsor-strip {
    display: none;
  }
}

@media (max-width: 720px) {
  .experiment-line-card {
    grid-template-columns: 72px minmax(0, 1fr);
    font-size: 18px;
  }

  .experiment-line-card img {
    width: 72px;
    height: 72px;
  }
}

.record-detail-body {
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.record-detail-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.record-detail-visuals a {
  color: inherit;
  text-align: center;
}

.record-detail-visuals img {
  min-height: 0;
}

.record-detail-visuals span {
  display: block;
  margin-top: 8px;
}

/* CMS content remains editor-owned; only prevent its existing images escaping the V2 shell. */
.cms-shell-content .page-html-content img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 760px) {
  .record-detail-visuals {
    grid-template-columns: 1fr;
  }
}
