.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(120deg, rgba(102, 55, 144, 0.95), rgba(74, 31, 100, 0.95));
  color: #f7eefc;
  border-bottom: 4px solid var(--signal);
  backdrop-filter: blur(8px);
  padding: 0 var(--page-gutter);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 18px 0;
  gap: 24px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  border: 3px solid #f7eefc;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: currentColor;
}

.top-nav a {
  color: inherit;
}

.brand {
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  text-shadow: 2px 2px 0 var(--signal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
}

.nav-link {
  padding: 10px 12px;
  border: 2px solid transparent;
  border-radius: 0;
}

.nav-link:hover {
  border-color: var(--accent-2);
  color: #fff9f0;
}

.nav-volunteer-link-copy {
  display: inline;
}

.nav-volunteer-link-indicator {
  display: none;
  align-items: center;
  gap: 10px;
}

.nav-volunteer-link-spinner {
  display: none;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  animation: volunteer-logout-spin 0.7s linear infinite;
}

.nav-volunteer-link[aria-busy="true"] {
  pointer-events: none;
}

.nav-volunteer-link[aria-busy="true"] .nav-volunteer-link-copy {
  display: none;
}

.nav-volunteer-link[aria-busy="true"] .nav-volunteer-link-indicator {
  display: inline-flex;
}

.nav-volunteer-link[aria-busy="true"] .nav-volunteer-link-spinner {
  display: inline-block;
}

.nav-cta {
  display: flex;
  align-items: center;
}

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

.nav-more-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.nav-more-toggle:hover {
  border-color: var(--accent-2);
  color: #fff9f0;
}

.nav-extra-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 240px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border: 3px solid #f7eefc;
  background: linear-gradient(120deg, #663790, #4a1f64);
  box-shadow: var(--shadow);
  z-index: 30;
}

.top-nav.more-open .nav-extra-menu {
  display: flex;
}

.nav-extra-link {
  display: block;
  border: 3px solid #f7eefc;
  padding: 12px 14px;
}

.nav-extra-link:hover {
  border-color: var(--accent-2);
  color: #fff9f0;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 16px;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 var(--page-gutter);
}

.mobile-links .nav-link,
.mobile-links .btn {
  box-shadow: none;
}

.mobile-links .btn {
  padding: 14px 16px;
  --btn-face-color: #f7eefc;
  --btn-face-border: #f7eefc;
}

.mobile-links .btn::after {
  display: none;
}

.mobile-links .btn:hover,
.mobile-links .btn:focus-visible {
  transform: none;
}

.mobile-links .nav-link {
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease, color 0.2s ease;
}

.mobile-links .nav-link:hover {
  transform: translate(-6px, -6px);
  box-shadow: var(--shadow-lg);
}

.top-nav.is-open .mobile-menu {
  display: flex;
}


/* Base */
.btn {
  /* Motion + offset tokens */
  --btn-lift: 6px;
  --btn-shadow-x: 12px;
  --btn-shadow-y: 12px;

  /* Theme tokens (keep your existing names) */
  --btn-face-bg: var(--surface);
  --btn-face-color: var(--ink);
  --btn-face-border: var(--line);
  --offset-shadow: var(--ink);

  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  cursor: pointer;

  /* Reset default button styles safely */
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;

  /* Prevent highlight weirdness on mobile */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Shadow layer (never changes) */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--offset-shadow);
  transform: translate3d(var(--btn-shadow-x), var(--btn-shadow-y), 0);
  pointer-events: none;
  z-index: 0; /* explicitly behind face */
}

/* Face layer (this is what moves) */
.btn__face {
  position: relative;
  z-index: 1;
  display: block;
  box-sizing: border-box;

  padding: 16px 22px;
  border: 4px solid var(--btn-face-border);
  border-radius: 0;

  background: var(--btn-face-bg);
  color: var(--btn-face-color);

  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;

  transform: translate3d(0, 0, 0);
  transition: transform 0.12s ease;
  will-change: transform;
}

/* Hover/focus lifts ONLY the face */
.btn:hover .btn__face,
.btn:focus-visible .btn__face {
  transform: translate3d(
    calc(-1 * var(--btn-lift)),
    calc(-1 * var(--btn-lift)),
    0
  );
}

/* Optional: "press" feel */
.btn:active .btn__face {
  transform: translate3d(
    calc(-1 * (var(--btn-lift) * 0.33)),
    calc(-1 * (var(--btn-lift) * 0.33)),
    0
  );
}

/* Accessible focus */
.btn:focus-visible {
  outline: none;
}
.btn:focus-visible .btn__face {
  /* keep your brutal style; this is subtle but visible */
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--btn-face-border), transparent 35%);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btn__face {
    transition: none;
  }
}

.btn.primary {
  --btn-face-bg: var(--primary);
  --btn-face-color: #f8eefc;
  --btn-face-border: var(--signal);
  --offset-shadow: var(--ink);
}

.btn.secondary {
  --btn-face-bg: var(--surface);
  --btn-face-color: var(--ink);
  --btn-face-border: var(--line);
  --offset-shadow: var(--ink);
}

.btn.tertiary {
  --btn-face-bg: transparent;
  --btn-face-color: var(--primary);
  --btn-face-border: var(--primary);
  --btn-shadow-x: 6px;
  --btn-shadow-y: 6px;
}

/* Keep your tertiary hover swap */
.btn.tertiary:hover .btn__face,
.btn.tertiary:focus-visible .btn__face {
  background: var(--primary);
  color: #f8eefc;
}

.btn.donate {
  --btn-face-bg: var(--accent-2);
  --btn-face-color: var(--primary);
  --btn-face-border: var(--paper);
}

.btn-route-copy {
  display: inline;
}

.btn-route-indicator {
  display: none;
  align-items: center;
  gap: 10px;
}

.btn-route-spinner {
  display: none;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  animation: btn-route-spin 0.7s linear infinite;
}

.btn[aria-busy="true"] {
  pointer-events: none;
}

.btn[aria-busy="true"] .btn-route-copy {
  display: none;
}

.btn[aria-busy="true"] .btn-route-indicator {
  display: inline-flex;
}

.btn[aria-busy="true"] .btn-route-spinner {
  display: inline-block;
}

@keyframes btn-route-spin {
  to {
    transform: rotate(360deg);
  }
}

.volunteer-cancel-signup-btn {
  --btn-face-bg: #e24b3b;
  --btn-face-color: #fff7f2;
  --btn-face-border: #7b1712;
  --offset-shadow: #4e0f0c;
}

.volunteer-cancel-signup-indicator {
  display: none;
}

.volunteer-cancel-signup-spinner {
  display: none;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  animation: volunteer-logout-spin 0.7s linear infinite;
}

.volunteer-cancel-signup-form.htmx-request .volunteer-cancel-signup-copy {
  display: none;
}

.volunteer-cancel-signup-form.htmx-request .volunteer-cancel-signup-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.volunteer-cancel-signup-form.htmx-request .volunteer-cancel-signup-spinner {
  display: inline-block;
}


.login-submit-indicator {
  display: none;
}

.login-submit-spinner {
  display: none;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  animation: login-submit-spin 0.7s linear infinite;
}

.login-submit-btn[aria-busy="true"] .login-submit-copy {
  display: none;
}

.login-submit-btn[aria-busy="true"] .login-submit-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.login-submit-btn[aria-busy="true"] .login-submit-spinner {
  display: inline-block;
}

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

.login-action-stack {
  display: grid;
  gap: 16px;
}

.login-action-btn {
  width: 100%;
}

.login-forgot-btn {
  --btn-face-bg: var(--surface);
  --btn-face-color: var(--primary);
  --btn-face-border: var(--primary);
}

.login-forgot-btn:hover,
.login-forgot-btn:focus-visible {
  background: var(--primary);
  color: #f8eefc;
}

.volunteer-logout-indicator {
  display: none;
}

.volunteer-logout-spinner {
  display: none;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  animation: volunteer-logout-spin 0.7s linear infinite;
}

.volunteer-logout-btn[aria-busy="true"] .volunteer-logout-copy {
  display: none;
}

.volunteer-logout-btn[aria-busy="true"] .volunteer-logout-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.volunteer-logout-btn[aria-busy="true"] .volunteer-logout-spinner {
  display: inline-block;
}

@keyframes volunteer-logout-spin {
  to {
    transform: rotate(360deg);
  }
}

.volunteer-signup-indicator {
  display: none;
}

.volunteer-signup-spinner {
  display: none;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  animation: volunteer-logout-spin 0.7s linear infinite;
}

.volunteer-signup-btn[aria-busy="true"] .volunteer-signup-copy {
  display: none;
}

.volunteer-signup-btn[aria-busy="true"] .volunteer-signup-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.volunteer-signup-btn[aria-busy="true"] .volunteer-signup-spinner {
  display: inline-block;
}

.volunteer-filter-apply-indicator {
  display: none;
}

.volunteer-filter-apply-spinner {
  display: none;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  animation: volunteer-logout-spin 0.7s linear infinite;
}

.volunteer-filter-apply-btn[aria-busy="true"] .volunteer-filter-apply-copy {
  display: none;
}

.volunteer-filter-apply-btn[aria-busy="true"] .volunteer-filter-apply-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.volunteer-filter-apply-btn[aria-busy="true"] .volunteer-filter-apply-spinner {
  display: inline-block;
}

.volunteer-home-link-indicator {
  display: none;
  align-items: center;
  justify-content: center;
}

.volunteer-home-link-spinner {
  display: none;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  animation: volunteer-logout-spin 0.7s linear infinite;
}

.volunteer-home-link[aria-busy="true"] {
  pointer-events: none;
}

.volunteer-home-link[aria-busy="true"] .volunteer-home-link-copy {
  display: none;
}

.volunteer-home-link[aria-busy="true"] .volunteer-home-link-indicator {
  display: inline-flex;
}

.volunteer-home-link[aria-busy="true"] .volunteer-home-link-spinner {
  display: inline-block;
}

.label-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: var(--volunteer-chip-height, 54px);
  padding: 12px 18px;
  border: 5px solid var(--line);
  border-radius: 0;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--surface);
  color: var(--ink);
  --offset-shadow: var(--ink);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  margin-bottom: 12px;
}

.label-chip--success {
  background: #d9f7d6;
  color: #12451b;
  border-color: #12451b;
  --offset-shadow: #12451b;
}

.label-chip-row {
  --volunteer-chip-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.label-chip-row .label-chip {
  margin-bottom: 0;
}

.label-chip-icon-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--volunteer-chip-height, 54px);
  height: var(--volunteer-chip-height, 54px);
  border: 5px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  color: var(--ink);
  --offset-shadow: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.label-chip-icon-card i {
  font-size: 20px;
  font-weight: 700;
}

.label-chip-icon-card:hover {
}

.section-lede {
  max-width: 720px;
}

.section-lede h2 {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 6vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-lede p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.panel-ink .section-lede p {
  color: #ffe3de;
}

.hero-card,
.feature-card,
.action-card,
.news-card,
.join-thanks {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.news-card .cta-row {
  margin-top: 16px;
}

.volunteer-route-links {
  display: grid;
  grid-template-columns: 1fr;
  width: min(50%, 560px);
  gap: 16px;
}

.volunteer-route-links .btn {
  width: 100%;
}

.volunteer-route-links .btn__face {
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  border: 3px solid var(--line);
  border-radius: 0;
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.panel-light .feature-card {
  background: #fff;
}

.volunteer-events-intro-card {
  width: fit-content;
  max-width: min(560px, 100%);
  margin-bottom: 16px;
  padding: 18px 20px 20px;
}

.volunteer-events-empty-card {
  padding: 24px 28px;
}

.volunteer-events-empty-card .empty-state {
  margin: 0;
}

.volunteer-events-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  width: min(100%, 560px);
}

.volunteer-events-download-card {
  width: 100%;
  max-width: none;
}

.volunteer-resources-card {
  width: min(100%, 720px);
}

.volunteer-events-panel {
  position: relative;
  overflow: hidden;
}

.volunteer-events-panel::before {
  content: "";
  position: absolute;
  inset: -20vw;
  background-image: url("/static/imgs/indiana.svg");
  background-repeat: no-repeat;
  background-position: 82% 23%;
  background-size: clamp(900px, 101vh, 1870px);
  pointer-events: none;
  z-index: 0;
}

.volunteer-events-panel > * {
  position: relative;
  z-index: 1;
}

.volunteer-events-panel .admin-events-filters {
  background: #f5a524;
}

.volunteer-events-panel .admin-events-filters legend,
.volunteer-events-panel .admin-events-filter-row label {
  color: #fff;
}

.volunteer-events-filter-actions {
  justify-content: space-between;
  align-items: center;
}

.volunteer-events-filter-actions__primary,
.volunteer-events-filter-actions__resources {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.volunteer-events-filter-actions__resources {
  margin-left: auto;
}

.feature-stack-container {
  display: grid;
  gap: 48px;
}

.volunteer-events-intro-card .section-lede {
  max-width: none;
}

.volunteer-events-intro-card .section-lede h1 {
  margin: 0 0 8px;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  letter-spacing: -0.02em;
}

.site-footer {
  border-top: 4px solid var(--line);
  background: #f9f6ef;
  padding: 24px var(--page-gutter);
}

.site-footer-inner {
  width: min(var(--content-max), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer .meta-muted {
  margin: 0;
}

.privacy-link {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.privacy-link:hover {
  color: var(--accent);
}

.feature-card h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.01em;
}

.feature-card ul {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.platform-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.platform-page-card h3 {
  margin-top: 16px;
  color: #000;
}

.platform-page-card p {
  margin: 0;
  color: #000;
  line-height: 1.6;
}

.platform-page {
  background: var(--ink-accent);
}

.platform-page .label-chip {
  color: #000;
}

.platform-page .platform-page-card {
  color: #000;
}

.platform-page .section-lede h1 {
  color: #000;
}

.platform-page-indent {
  padding-left: 24px;
  margin-bottom: 20px;
}

.platform-page-item-lead {
  margin-bottom: 6px !important;
}

.platform-page-item-body {
  margin: 0;
}

.platform-page-core-four-intro {
  margin-bottom: 24px !important;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 2px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 14px 16px;
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.accordion-toggle::after {
  content: "\203A";
  display: inline-block;
  transition: transform 0.15s ease;
}

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

.accordion-panel {
  padding: 0 16px 14px;
  color: var(--muted);
  line-height: 1.6;
}

.action-card {
  color: var(--ink);
  border: 4px solid var(--line);
  border-radius: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.action-card h3 {
  margin: 0;
  font-size: 22px;
  text-transform: uppercase;
}

.action-card p {
  margin: 0;
  line-height: 1.5;
  color: var(--muted);
}

.action-card-cta {
  margin-top: auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.volunteer-events-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-card {
  color: var(--ink);
  border: 4px solid var(--line);
  border-radius: 0;
  padding: 22px;
}

.volunteer-event-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto auto auto auto;
  gap: 14px;
  width: 100%;
  min-height: 25rem;
  overflow: visible;
  padding: 18px 20px 20px;
}

.volunteer-event-card__status-chip {
  position: absolute;
  top: -2px;
  right: -34px;
  z-index: 2;
  margin-bottom: 0;
  min-height: 0;
  padding: 10px 18px;
  transform: rotate(30deg);
  transform-origin: center;
  box-shadow: none;
  pointer-events: none;
}

.volunteer-event-card > h3 {
  margin: 0;
}

.volunteer-event-card__meta {
  display: grid;
  gap: 10px;
  min-height: calc(54px + 1.4em + 10px);
}

.volunteer-event-card__meta-field {
  width: fit-content;
  min-width: min(100%, 220px);
  margin: 0;
  padding: 10px 12px 12px;
  border: 3px solid var(--line);
  background: #f9f6ef;
}

.volunteer-event-card__meta-field legend {
  padding: 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.volunteer-event-card__date-value {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.volunteer-event-card__location {
  margin: 0;
  line-height: 1.4;
}

.volunteer-event-card__location--card {
  font-weight: 700;
}

.volunteer-event-detail__meta {
  min-height: 0;
}

.volunteer-event-detail__location-field {
  width: min(100%, 420px);
}

.volunteer-event-card__summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: calc(1.5em * 3);
  margin: 0;
}

.volunteer-event-card__summary--fallback {
  font-weight: 400;
  text-transform: none;
}

.volunteer-event-card__captains {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  align-self: start;
}

.volunteer-event-card__captains > h3 {
  margin: 0;
}

.volunteer-event-card__captains h3 {
  margin-bottom: 0;
}

.volunteer-event-card__captain-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 0;
}

.volunteer-event-card__captain-chips .label-chip {
  margin-bottom: 0;
}

.volunteer-event-card__actions {
  margin: 0;
  align-self: end;
}

@supports (grid-template-rows: subgrid) {
  .volunteer-events-grid {
    grid-auto-rows: auto auto auto auto auto;
  }

  .volunteer-event-card {
    grid-template-rows: subgrid;
    grid-row: span 5;
    min-height: 0;
  }

  .volunteer-event-card > h3 {
    grid-row: 1;
  }

  .volunteer-event-card__meta {
    grid-row: 2;
  }

  .volunteer-event-card__summary {
    grid-row: 3;
  }

  .volunteer-event-card__captains {
    grid-row: 4;
  }

  .volunteer-event-card__actions {
    grid-row: 5;
  }
}

.news-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.news-card-link:hover,
.news-card-link:focus-visible {
  transform: translate(-6px, -6px);
  box-shadow: var(--shadow-lg);
}

.news-card h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 18px;
}

.news-card-date {
  margin: 0 0 10px;
  color: var(--primary);
  font-weight: 700;
}

.news-card p {
  margin: 0;
  line-height: 1.5;
  color: var(--muted);
}

.news-card-blurb {
  margin: 0;
}

.news-card-blurb-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-grid-page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .news-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .news-grid-page {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .volunteer-events-grid {
    grid-template-columns: 1fr;
  }

  .volunteer-event-card {
    min-height: 0;
  }

  .volunteer-event-card__status-chip {
    top: -2px;
    right: -30px;
    padding: 8px 16px;
    font-size: 13px;
  }
}

.news-detail-panel {
  align-items: stretch;
}

.news-detail-panel .panel-inner {
  gap: 24px;
  min-height: min(70vh, 900px);
}

.news-detail-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(22px, 4vw, 40px);
}

.news-detail-card h1 {
  margin: 0;
  text-transform: uppercase;
}
