@import url('https://fonts.googleapis.com/css2?family=Vollkorn:wght@400;600;700;900&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --hub-color-primary: #C84B31;
  --hub-color-secondary: #D4775B;
  --hub-color-accent: #2D4059;
  --hub-color-background: #0A0A0F;
  --hub-color-surface: #151520;
  --hub-color-text: #E8E8F0;
  --hub-color-text-light: #9898B0;
  --hub-color-border: #ECDDD0;
  --hub-color-overlay: linear-gradient(145deg, rgba(200, 75, 49, 0.82), rgba(212, 119, 91, 0.5));
  --hub-shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.28);
  --hub-shadow-glow: 0 0 40px rgba(45, 64, 89, 0.25);
  --hub-radius-sm: 18px;
  --hub-radius-md: 28px;
  --hub-radius-lg: 42px;
  --hub-radius-pill: 999px;
  --hub-max-width: 1280px;
  --hub-gutter: clamp(1.1rem, 2vw, 1.8rem);
  --hub-section-space: clamp(6.5rem, 10vw, 8.5rem);
  --hub-text-shadow: 0 0 40px rgba(45, 64, 89, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  color: var(--hub-color-text);
  background:
    radial-gradient(circle at top left, rgba(200, 75, 49, 0.18), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(212, 119, 91, 0.12), transparent 25%),
    linear-gradient(180deg, #0a0a0f 0%, #101018 50%, #0a0a0f 100%);
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.4) 0.5px, transparent 0.6px),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.3) 0.5px, transparent 0.7px),
    radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.35) 0.4px, transparent 0.6px);
  background-size: 24px 24px, 32px 32px, 28px 28px;
  mix-blend-mode: soft-light;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Vollkorn', serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: var(--hub-text-shadow);
}

p {
  margin: 0;
  color: var(--hub-color-text-light);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hub-shell {
  width: min(100% - 2rem, var(--hub-max-width));
  margin: 0 auto;
}

.hub-grid-shell {
  display: grid;
  gap: var(--hub-gutter);
}

.hub-page-section {
  position: relative;
  padding: var(--hub-section-space) 0;
}

.hub-page-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 35%, rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.hub-section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.4rem;
  max-width: 48rem;
}

.hub-section-kicker,
.hub-story-badge,
.hub-event-date,
.hub-post-meta,
.hub-logo-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  border-radius: var(--hub-radius-pill);
  background: rgba(200, 75, 49, 0.16);
  border: 1px solid rgba(212, 119, 91, 0.24);
  color: #ffd8ce;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hub-card,
.hub-story-card,
.hub-news-card,
.hub-program-card,
.hub-event-card,
.hub-spotlight-card,
.hub-quote-card,
.hub-logo-cloud,
.hub-post-card,
.hub-action-card,
.hub-newsletter-card,
.hub-team-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--hub-radius-md);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--hub-shadow-soft);
}

.hub-card:hover,
.hub-story-card:hover,
.hub-news-card:hover,
.hub-program-card:hover,
.hub-event-card:hover,
.hub-spotlight-card:hover,
.hub-quote-card:hover,
.hub-post-card:hover,
.hub-action-card:hover,
.hub-team-card:hover {
  border-color: rgba(212, 119, 91, 0.35);
  box-shadow: var(--hub-shadow-soft), 0 0 45px rgba(45, 64, 89, 0.2);
  transform: translateY(-4px);
}

.hub-button,
.hub-button-secondary,
.hub-event-rsvp,
.hub-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.3rem;
  padding: 0.9rem 1.35rem;
  border-radius: var(--hub-radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.hub-button,
.hub-event-rsvp,
.hub-nav-cta {
  color: #f5eef1;
  background: linear-gradient(135deg, var(--hub-color-primary), var(--hub-color-secondary));
  box-shadow: 0 16px 30px rgba(200, 75, 49, 0.25);
}

.hub-button-secondary {
  color: var(--hub-color-text);
  background: rgba(45, 64, 89, 0.6);
  border-color: rgba(118, 138, 171, 0.3);
  box-shadow: 0 14px 28px rgba(45, 64, 89, 0.26);
}

.hub-button:hover,
.hub-button-secondary:hover,
.hub-event-rsvp:hover,
.hub-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(45, 64, 89, 0.35), 0 0 40px rgba(45, 64, 89, 0.2);
}

.hub-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1rem 0 0;
}

.hub-nav {
  width: min(100% - 1.5rem, var(--hub-max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: calc(var(--hub-radius-md) + 6px);
  background: rgba(10, 10, 15, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.hub-nav.is-solid {
  background: rgba(21, 21, 32, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.hub-nav-brand {
  display: inline-grid;
  gap: 0.2rem;
  font-family: 'Vollkorn', serif;
  color: var(--hub-color-text);
}

.hub-nav-brand strong {
  font-size: 1.05rem;
}

.hub-nav-brand span {
  font-size: 0.8rem;
  color: var(--hub-color-text-light);
}

.hub-nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hub-nav-links a {
  padding: 0.65rem 0.95rem;
  border-radius: var(--hub-radius-pill);
  color: var(--hub-color-text-light);
  transition: color 180ms ease, background 180ms ease;
}

.hub-nav-links a:hover,
.hub-nav-links a:focus-visible {
  color: var(--hub-color-text);
  background: rgba(255, 255, 255, 0.06);
}

.hub-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hub-language-toggle,
.hub-nav-toggle {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--hub-color-text);
  border-radius: var(--hub-radius-pill);
  min-height: 2.9rem;
  padding: 0.7rem 0.95rem;
  cursor: pointer;
}

.hub-nav-toggle {
  display: none;
  width: 2.9rem;
  padding: 0;
  place-items: center;
}

.hub-nav-toggle span,
.hub-nav-toggle::before,
.hub-nav-toggle::after {
  content: "";
  display: block;
  width: 1rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hub-nav-toggle::before {
  transform: translateY(-6px);
}

.hub-nav-toggle::after {
  transform: translateY(4px);
}

.hub-nav-open .hub-nav-toggle span {
  opacity: 0;
}

.hub-nav-open .hub-nav-toggle::before {
  transform: translateY(2px) rotate(45deg);
}

.hub-nav-open .hub-nav-toggle::after {
  transform: translateY(0) rotate(-45deg);
}

.hub-hero {
  padding: 4.5rem 0 var(--hub-section-space);
}

.hub-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.hub-hero-collage {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 0.82fr;
  gap: 1rem;
}

.hub-hero-collage::before {
  content: "";
  position: absolute;
  inset: -4% -2%;
  border-radius: var(--hub-radius-lg);
  background:
    radial-gradient(circle at top left, rgba(200, 75, 49, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.1), rgba(10, 10, 15, 0.5));
  filter: blur(10px);
  z-index: 0;
}

.hub-hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1.4rem, 3vw, 2.6rem);
  min-height: 220px;
  background-color: #111118;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--hub-shadow-soft);
}

.hub-hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.18), rgba(10, 10, 15, 0.74));
}

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

.hub-hero-frame:first-child {
  grid-row: 1 / span 2;
}

.hub-hero-frame:nth-child(2) {
  transform: translateY(1.25rem);
}

.hub-hero-frame:nth-child(3) {
  transform: translate(-2.8rem, -2rem);
}

.hub-hero-frame:nth-child(4) {
  position: absolute;
  right: 18%;
  bottom: 6%;
  width: 38%;
  min-height: 170px;
  transform: rotate(-8deg);
  z-index: 2;
}

.hub-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.4rem;
  padding: clamp(1rem, 2vw, 2rem) 0;
}

.hub-hero-title {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  max-width: 10ch;
}

.hub-hero-copy p {
  max-width: 38rem;
  font-size: 1.08rem;
}

.hub-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hub-hero-ribbon {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: var(--hub-radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hub-hero-ribbon strong {
  font-family: 'Vollkorn', serif;
  color: var(--hub-color-text);
}

.hub-story-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  min-height: 440px;
}

.hub-story-media,
.hub-news-media,
.hub-post-media,
.hub-gallery-item,
.hub-program-visual,
.hub-page-banner-media,
.hub-contact-visual {
  position: relative;
  overflow: hidden;
}

.hub-story-media::after,
.hub-news-media::after,
.hub-post-media::after,
.hub-program-visual::after,
.hub-page-banner-media::after,
.hub-contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.1), rgba(10, 10, 15, 0.62));
}

.hub-story-media img,
.hub-news-media img,
.hub-post-media img,
.hub-program-visual img,
.hub-page-banner-media img,
.hub-contact-visual img,
.hub-gallery-item img,
.hub-spotlight-photo img,
.hub-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hub-story-content,
.hub-news-content,
.hub-post-content,
.hub-program-content,
.hub-action-content,
.hub-team-content,
.hub-newsletter-content {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.35rem, 2.2vw, 2rem);
}

.hub-story-title,
.hub-post-title,
.hub-page-banner-title {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.hub-story-link,
.hub-post-link {
  color: #ffcabd;
  font-weight: 700;
}

.hub-news-grid,
.hub-events-grid,
.hub-quotes-grid,
.hub-posts-grid,
.hub-actions-grid {
  display: grid;
  gap: var(--hub-gutter);
}

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

.hub-news-card {
  min-height: 100%;
}

.hub-news-media,
.hub-post-media {
  aspect-ratio: 16 / 10;
}

.hub-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--hub-gutter);
}

.hub-program-card {
  display: grid;
  min-height: 100%;
}

.hub-program-visual {
  min-height: 220px;
}

.hub-program-icon {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 1.1rem;
  color: #ffe1d8;
  background: linear-gradient(135deg, rgba(200, 75, 49, 0.42), rgba(45, 64, 89, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hub-event-card {
  display: grid;
  gap: 1.2rem;
  padding: 1.6rem;
}

.hub-event-date {
  min-height: 5.8rem;
  min-width: 5.8rem;
  padding: 0.8rem;
  border-radius: 1.6rem;
  display: grid;
  align-content: center;
  justify-items: center;
  background: linear-gradient(180deg, rgba(200, 75, 49, 0.18), rgba(45, 64, 89, 0.2));
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.hub-event-date span {
  display: block;
  font-size: 0.85rem;
  color: var(--hub-color-text-light);
}

.hub-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--hub-color-text-light);
  font-size: 0.96rem;
}

.hub-spotlight-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: stretch;
}

.hub-spotlight-photo {
  min-height: 100%;
}

.hub-spotlight-content {
  display: grid;
  gap: 1rem;
  align-content: center;
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.hub-spotlight-content blockquote,
.hub-quote-card blockquote {
  margin: 0;
  font-family: 'Vollkorn', serif;
  color: var(--hub-color-text);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.hub-quotes-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hub-quote-card {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    rgba(45, 64, 89, 0.2);
}

.hub-logo-cloud {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.hub-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.hub-logo-item {
  min-height: 110px;
  display: grid;
  place-items: center;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--hub-color-text-light);
  font-family: 'Vollkorn', serif;
  text-align: center;
  padding: 1rem;
}

.hub-gallery-grid {
  columns: 4 220px;
  column-gap: 1rem;
}

.hub-gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hub-gallery-item:nth-child(odd) {
  aspect-ratio: 5 / 7;
}

.hub-gallery-item:nth-child(even) {
  aspect-ratio: 1 / 1;
}

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

.hub-actions-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hub-action-card {
  min-height: 100%;
}

.hub-action-card[data-variant="donate"] {
  background:
    linear-gradient(135deg, rgba(200, 75, 49, 0.14), rgba(212, 119, 91, 0.08)),
    rgba(255, 255, 255, 0.05);
}

.hub-newsletter-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.hub-newsletter-content form,
.hub-newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
}

.hub-contact-form {
  display: grid;
  gap: 1rem;
}

.hub-contact-form p {
  display: grid;
  gap: 0.45rem;
}

.hub-contact-form label {
  color: var(--hub-color-text);
  font-weight: 700;
}

.hub-newsletter-form input,
.hub-newsletter-form select,
.hub-contact-form input,
.hub-contact-form textarea {
  width: 100%;
  min-height: 3.3rem;
  border: 1px solid rgba(236, 221, 208, 0.18);
  border-radius: var(--hub-radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: var(--hub-color-text);
  padding: 0.9rem 1rem;
}

.hub-contact-form textarea {
  min-height: 10rem;
  border-radius: 1.8rem;
  resize: vertical;
}

.hub-page-banner {
  position: relative;
  padding: 5rem 0 3rem;
}

.hub-page-banner-layout,
.hub-about-grid,
.hub-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--hub-gutter);
  align-items: stretch;
}

.hub-page-banner-copy,
.hub-about-copy {
  display: grid;
  gap: 1.1rem;
  align-content: center;
}

.hub-page-banner-media,
.hub-contact-visual {
  min-height: 400px;
  border-radius: var(--hub-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hub-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--hub-gutter);
}

.hub-team-card {
  display: grid;
}

.hub-team-photo {
  aspect-ratio: 4 / 5;
}

.hub-team-content small,
.hub-contact-meta small {
  color: var(--hub-color-text-light);
}

.hub-contact-grid {
  align-items: start;
}

.hub-contact-card {
  padding: clamp(1.4rem, 2.5vw, 2rem);
}

.hub-contact-list {
  display: grid;
  gap: 1rem;
}

.hub-contact-list a {
  color: #ffcabd;
}

.hub-footer {
  padding: 2rem 0 3rem;
}

.hub-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--hub-radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fade-in {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-lang="en"] [data-lang-ga],
[data-lang="ga"] [data-lang-en] {
  display: none !important;
}

@media (max-width: 1100px) {
  .hub-hero-layout,
  .hub-story-card,
  .hub-spotlight-card,
  .hub-newsletter-card,
  .hub-page-banner-layout,
  .hub-about-grid,
  .hub-contact-grid {
    grid-template-columns: 1fr;
  }

  .hub-hero-collage {
    min-height: 560px;
  }

  .hub-programs-grid,
  .hub-events-grid,
  .hub-posts-grid,
  .hub-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub-quotes-grid,
  .hub-actions-grid,
  .hub-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hub-site-header {
    padding-top: 0.75rem;
  }

  .hub-nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hub-nav-toggle {
    display: grid;
  }

  .hub-nav-links,
  .hub-nav-actions {
    display: none;
  }

  .hub-nav-open {
    grid-template-columns: 1fr auto;
  }

  .hub-nav-open .hub-nav-links,
  .hub-nav-open .hub-nav-actions {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
  }

  .hub-nav-open .hub-nav-actions {
    padding-top: 0.5rem;
  }

  .hub-nav-open .hub-nav-links a,
  .hub-nav-open .hub-nav-actions > * {
    width: 100%;
    text-align: center;
  }

  .hub-news-grid,
  .hub-programs-grid,
  .hub-events-grid,
  .hub-quotes-grid,
  .hub-posts-grid,
  .hub-actions-grid,
  .hub-team-grid,
  .hub-logo-grid,
  .hub-newsletter-content form,
  .hub-newsletter-form {
    grid-template-columns: 1fr;
  }

  .hub-hero {
    padding-top: 2rem;
  }

  .hub-hero-collage {
    grid-template-columns: 1fr 0.85fr;
    min-height: 460px;
  }

  .hub-hero-frame:nth-child(3) {
    transform: translate(-1rem, -1rem);
  }

  .hub-gallery-grid {
    columns: 2 160px;
  }
}

@media (max-width: 600px) {
  :root {
    --hub-section-space: 5.3rem;
  }

  .hub-shell {
    width: min(100% - 1rem, var(--hub-max-width));
  }

  .hub-nav {
    padding: 0.75rem;
  }

  .hub-hero-title,
  .hub-story-title,
  .hub-page-banner-title {
    max-width: none;
  }

  .hub-hero-collage {
    grid-template-columns: 1fr 0.7fr;
    min-height: 380px;
    gap: 0.75rem;
  }

  .hub-hero-frame:nth-child(4) {
    width: 44%;
    right: 8%;
    min-height: 120px;
  }

  .hub-event-card,
  .hub-story-content,
  .hub-news-content,
  .hub-post-content,
  .hub-program-content,
  .hub-spotlight-content,
  .hub-newsletter-content {
    padding: 1.2rem;
  }

  .hub-gallery-grid {
    columns: 1;
  }

  .hub-footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
