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

:root {
  /* Palette from provided guide */
  --color-blue: #9ab59d;
  --color-purple: #978ec4;
  --color-ivory: #f9f5ea;
  --color-peach-soft: #ffdbd1;
  --color-peach: #f9afb1;
  --color-green: #9ab59d;
  --color-charcoal: #3a3f3b;
  --color-coral: #f4b092;
  --color-rose: #ce325b;
  --main-green: #9ab59d;

  /* Semantic mappings */
  --color-bg: #ffffff;
  --color-bg-light: var(--color-ivory);
  --color-bg-accent: var(--color-peach-soft);
  --color-primary: var(--color-blue);
  --color-primary-dark: var(--color-charcoal);
  --color-accent: var(--color-coral);
  --color-text: var(--color-charcoal);
  --color-text-soft: #5b6063;
  --color-border: #e5e7eb;
  --shadow-soft: 0 10px 30px rgba(3, 52, 0, 0.12);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-pill: 999px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  scroll-behavior: smooth;
}

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

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

p {
  margin: 0 0 0.85rem;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: min(1120px, 100% - 1.5rem);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
  z-index:0;
}

.section--light {
  background-color: var(--color-bg-light);
}

.section--accent {
  background: radial-gradient(circle at top left, #ffdbd1, #f9f5ea);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease,
    color 0.15s ease, border-color 0.15s ease;
}

.btn--primary {
  background: #ffffff;
  color: #000000;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(16, 49, 0, 0.35);
}

/* Navbar login button styling - consistent across all pages */
.nav-links .btn--primary {
  background: var(--color-charcoal);
  color: #ffffff;
}

.btn--outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: #ffffff;
}

.btn--outline:hover {
  background-color: #f3f0fa;
}

.btn--ghost {
  background-color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  color: inherit;
}

.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn--full {
  width: 100%;
}

.btn--large {
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0.9rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(to bottom right, var(--color-primary), var(--color-accent));
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 0.8rem;
}

.logo-text {
  font-size: 1rem;
  font-family: "DM Serif Display", "Montserrat", serif;
}

/* Nav links */
.nav {
  position: relative;
  margin-left: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  margin: 0;
  padding: 0.8rem 1rem;
  position: absolute;
  right: 0;
  top: 110%;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.nav-links--open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-soft);
}

.nav-links a:hover {
  color: var(--color-primary);
}

/* Mobile nav button */
.nav-toggle {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--color-text);
}

/* Hero */
.hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  background: radial-gradient(circle at top, #9ab59d, #ffd8d1 80%);
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(153, 183, 198, 0.28), transparent 60%),
    radial-gradient(circle at 80% 0%, rgba(250, 175, 177, 0.28), transparent 60%);
  opacity: 0.9;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.15), transparent 40%);
}

.hero-content {
  position: relative;
  color: var(--color-text);
  max-width: 720px;
  padding-top: 0.5rem;
}

.eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 0.7rem;
}

.hero h1 {
  font-family: "DM Serif Display", "Montserrat", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--color-text-soft);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 1.2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.stat-number {
  font-weight: 700;
  font-size: 1.3rem;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

/* Section headers */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.3rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--color-text-soft);
}

/* About */
#about {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.about-card {
  background-color: #ffffff;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-card h3 {
  margin-top: 0;
}

/* Checklist */
.checklist {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--color-text-soft);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.checklist--light li {
  color: #1f2937;
}

/* Programs */
.program-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.program-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(152, 142, 196, 0.15);
  overflow: hidden;
}

.program-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.program-card > *:not(.program-image) {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.program-card > .program-tag {
  margin-top: 1.2rem;
}

.program-card > .program-link:last-child,
.program-card > a:last-child {
  padding-bottom: 1.4rem;
}

.program-card h3 {
  margin: 0.2rem 0;
  font-size: 1.1rem;
}

.program-card p {
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.program-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #4b5563;
}

.program-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  background-color: #fef3c7;
  color: #92400e;
}

.program-link {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary-dark);
}

/* Impact */
.impact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.impact-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(153, 183, 198, 0.2);
}

.impact-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Events */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.event-card {
  background-color: #ffffff;
  padding: 1.6rem 1.5rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border: 1px solid rgba(250, 175, 177, 0.2);
}

.event-date {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-dark);
  margin: 0;
}

.event-location {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  margin: 0;
}

.event-description {
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.event-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

/* Enroll */
.enroll-section {
  background: linear-gradient(135deg, #ffdbd1, #9ab59d);
}

.enroll-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}

/* Donate */
.donate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.donate-card {
  background-color: #ffffff;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.donate-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.2rem;
}

.donate-list li {
  margin-bottom: 0.5rem;
  color: var(--color-text-soft);
}

/* Get Involved */
.get-involved-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: center;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background-color: #ffffff;
  border: 1px solid var(--color-blue);
  font-size: 0.85rem;
}

/* Video Container */
.video-container {
  position: relative;
  width: 100%;
  height:auto;
  overflow: hidden;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* About Content */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 1.5rem;
}

/* Sponsors */
/* Mobile-first: Scrolling banner for screens below 645px */
.sponsors-grid {
  display: flex;
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
  position: relative;
}

.sponsors-grid::before,
.sponsors-grid::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 2;
  pointer-events: none;
}

.sponsors-grid::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.sponsors-grid::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sponsors-grid {
  animation: scroll 30s linear infinite;
}

.sponsor-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  min-height: 100px;
  min-width: 180px;
  flex-shrink: 0;
  margin-right: 1.5rem;
}

.sponsor-logo {
  max-width: 150px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Desktop view: Grid layout at 645px and above */
@media (min-width: 645px) {
  .sponsors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    animation: none;
    overflow: visible;
  }

  .sponsors-grid::before,
  .sponsors-grid::after {
    display: none;
  }

  .sponsor-card {
    margin-right: 0;
    padding: 2rem;
    min-width: auto;
    min-height: 120px;
  }

  .sponsor-logo {
    max-width: 200px;
    max-height: 100px;
  }

  .sponsor-mobile-duplicate {
    display: none;
  }
}

@media (min-width: 900px) {
  .sponsors-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .sponsor-card--single {
    display: block;
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
}

@media (min-width: 1200px) {
  .sponsors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Banner */
.banner-section {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

/* Footer */
.site-footer {
  background-color: #000000;
  color: #e5e7eb;
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--color-peach);
}

.footer-bottom {
  border-top: 1px solid rgba(75, 85, 99, 0.7);
  padding: 0.9rem 0;
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Responsive */
@media (min-width: 720px) {
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .donate-grid,
  .about-grid,
  .impact-grid,
  .get-involved-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-stats {
    gap: 1.1rem;
  }

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

@media (min-width: 900px) {
  .nav-links {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.3rem;
    box-shadow: none;
    background: transparent;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    min-width: auto;
  }

  .nav-toggle {
    display: none;
  }
}

@media (min-width: 1024px) {
  .program-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .enroll-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

/* Tables */
.table-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.table-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--color-border);
  font-weight: 600;
}

.table-card__body {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.data-table th,
.data-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.95rem;
}

.data-table tbody tr {
  border-bottom: 1px solid var(--color-border);
}

.data-table thead {
  background-color: #f9fafb;
}

.data-table th {
  font-weight: 600;
  color: #374151;
}

.data-table tbody tr:hover {
  background-color: #f9fafb;
}

.table-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* Participant list name links */
.data-table a {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
}
.data-table a:visited {
  color: inherit;
}


.btn--small {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.inline-form {
  display: inline;
}

.empty-row {
  text-align: center;
  color: var(--color-text-soft);
  padding: 1.5rem;
}

/* Auth / forms */
.auth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.form-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.8rem;
}

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

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-field input {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
}

.alert {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  font-weight: 600;
}

.alert--error {
  background-color: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecdd3;
}


/* === HERO LAYOUT + IMAGE PANEL (MOBILE FIRST) === */

/* layer ordering so SVG + overlays sit behind content */
.hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  background: radial-gradient(circle at top, #9ab59d, #ffd8d1 80%);
  overflow: visible;
  z-index: 2; /* base stacking context */
}

/* keep pseudo-elements behind content */
.hero::before {
  z-index: 0;
}

.hero::after {
  z-index: 3;
}

/* overlays and content sit above the SVG */
.hero-overlay,
.hero-content {
  position: relative;
  z-index: 2; /* explicitly above the wave */
}

/* SVG divider at the bottom in #ffd8d1 */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;

  /* attach to bottom edge so it doesn't eat into the hero */
  bottom: -80px;
  height: 90px;            /* more natural wave height */
  pointer-events: none;
  z-index: 10;

  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% 90px;
  background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 35.28 2.17' preserveAspectRatio='none'><path d='M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z' fill='%23ffd8d1'/><path d='M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z' opacity='.5' fill='%23ffd8d1'/><path d='M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z' opacity='.5' fill='%23ffd8d1'/></svg>");
}


/* content above overlays/SVG */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;       /* keep hero nice on mobile */
  padding-top: 0.5rem;
  margin: 0 auto;
}

/* mobile: stacked layout */
.hero-left {
  width: 100%;
}

.hero-right {
  width: 100%;
  margin-top: 1.75rem;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at top, #9ab59d, #ffd8d1 80%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-soft);
}

/* ≥ 720px: switch hero to two-column layout */
@media (min-width: 720px) {
  .hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 960px;
  }

  .hero-left,
  .hero-right {
    width: auto;
    flex: 1 1 50%;
  }

  .hero-right {
    margin-top: 0;
    min-height: 320px;
  }
}

/* ≥ 900px: more breathing room, larger image panel */
@media (min-width: 900px) {
  .hero-content {
    gap: 3rem;
    max-width: 1120px;
  }

  .hero-right {
    min-height: 360px;
  }
}

/* ≥ 1024px: desktop padding + taller hero image */
@media (min-width: 1024px) {
  .hero {
    padding-top: 5.5rem;
    padding-bottom: 4.75rem;
  }

  .hero-right {
    min-height: 420px;
  }
}

/* ========================================
   DEDICATED STYLES FOR NON-LANDING PAGES
   (events, surveys, users, participants, milestones)
   ======================================== */

/* Make hero section smaller and more condensed */
body:not(.landing-page) .hero {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  min-height: auto;
}

/* Fix hero layout for pages with eyebrow, h1, and subtitle */
body:not(.landing-page) .hero-content {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  padding-top: 0;
}

body:not(.landing-page) .hero-content .eyebrow {
  display: block;
  order: 1;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

body:not(.landing-page) .hero-content h1 {
  display: block;
  order: 2;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 0.75rem;
}

body:not(.landing-page) .hero-content .hero-subtitle {
  display: block;
  order: 3;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

body:not(.landing-page) .hero-content .hero-actions {
  order: 4;
  margin-top: 0.5rem;
}

@media (min-width: 720px) {
  body:not(.landing-page) .hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  body:not(.landing-page) .hero {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}
