/* ============================================================
   THEME.CSS — Hampshire Petition Design
   Colour palette: Navy #04162c, Green #3f6653, Crimson #B22222
   Fonts: Newsreader (headings), Public Sans (body)
   Built on Bootstrap 4.6
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,400;0,700;0,800;1,400;1,600&family=Public+Sans:ital,wght@0,400;0,500;0,600;0,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

:root {
  --color-primary:            #04162c;
  --color-primary-container:  #1a2b42;
  --color-secondary:          #3f6653;
  --color-secondary-container:#beead1;
  --color-crimson:            #B22222;
  --color-crimson-hover:      #9E1B1B;
  --color-surface:            #f8f9fa;
  --color-surface-low:        #f3f4f5;
  --color-surface-high:       #e7e8e9;
  --color-on-surface:         #191c1d;
  --color-on-surface-variant:  #44474d;
  --color-outline:            #74777e;
  --color-outline-variant:    #c4c6cd;
  --font-headline:            'Newsreader', serif;
  --font-body:                'Public Sans', sans-serif;
}

/* ---- RESET / BASE ---- */

body, h1, h2, h3, h4, h5, h6, blockquote {
  line-height: 1.4;
  text-transform: none !important;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-on-surface);
  background-color: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--color-primary);
}

p, li {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

a {
  color: var(--color-secondary);
  transition: all 0.2s ease-in-out;
  font-size: inherit;
}

a:hover {
  color: var(--color-crimson) !important;
  text-decoration: none;
}

::selection {
  background: var(--color-secondary-container);
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ---- CONTAINER ---- */

@media (min-width: 1080px) {
  .container {
    max-width: 1200px !important;
  }
}

/* ---- NAVBAR ---- */

#header {
  z-index: 100;
}

.navbar {
  padding: 0.7rem 2rem;
}

.navbar-light {
  background-color: transparent !important;
}

.navbar-light .navbar-nav .nav-link {
  color: white !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px !important;
  letter-spacing: 0.05em;
  text-transform: uppercase !important;
}

.navbar-nav {
  gap: 30px;
  align-items: center;
}

.nav-item a {
  font-size: 14px !important;
}

.nav-item a:hover {
  color: rgba(255,255,255,0.7) !important;
}

.navbar-brand {
  max-width: 700px;
}

.max310 {
  max-width: 265px;
}

.max700 {
  max-width: 700px;
}

.logo-toggle {
  display: flex;
  align-items: center;
}

/* Last nav item styled as CTA button */
.navbar-nav li:last-child a,
.dark-blue-bg .navbar-nav li:last-child a {
  background: var(--color-crimson);
  color: #fff !important;
  border-radius: 2px;
  padding: 10px 20px !important;
  font-weight: 700;
  border: 2px solid var(--color-crimson);
  transition: all 0.2s ease-in-out;
}

.navbar-nav li:last-child a:hover {
  background: transparent !important;
  color: white !important;
  border-color: white;
}

.navbar-light .navbar-nav li:last-child a:hover,
.light-blue-bg .navbar-nav li:last-child a:hover {
  background: transparent;
  color: white !important;
  border: 2px solid white;
}

.navbar-light .navbar-nav li:last-child a,
.light-blue-bg .navbar-nav li:last-child a {
  transition: all .2s ease-in-out;
  border: 2px solid var(--color-crimson);
}

/* Dropdown */
.dropdown-menu {
  background-color: var(--color-primary-container) !important;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 0 !important;
  color: #fff !important;
}

.dropdown-item {
  color: #fff !important;
  padding: 12px 20px !important;
  font-size: 14px;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--color-primary) !important;
  background-color: #fff !important;
}

.dropdown-menu.show {
  background: var(--color-primary-container) !important;
}

.navbar-nav .dropdown:hover > .dropdown-menu {
  display: block;
}

.navbar-nav .dropdown-menu {
  display: none;
  animation-fill-mode: forwards;
  transform: translateY(-10px);
}

.navbar-nav .nav-item:hover > .dropdown-menu {
  display: block;
  animation: slideDown1 0.4s ease forwards;
}

@keyframes slideDown1 {
  0% { opacity: 0; transform: translateY(-15px); }
  100% { opacity: 1 !important; transform: translateY(0); }
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
  position: absolute;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.nav-item.dropdown.show {
  background: transparent !important;
}

#navbar-toolbar { display: none !important; }
#primaryNav { display: none !important; }
.referral { display: none !important; }
#stream { display: none !important; }

.splide__pagination { display: none; }


/* ============================================================
   PETITION HERO
   ============================================================ */

.petition-hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary);
  padding: 120px 0 80px;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-primary), rgba(4,22,44,0.8), transparent);
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.4;
}

.petition-hero .container {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase !important;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  background: var(--color-crimson);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 2px;
}

.hero-headline {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  text-transform: uppercase !important;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.hero-subline {
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: rgba(255,255,255,0.60);
  max-width: 520px;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 0;
}

/* The NB liquid tag {{ page.petition.intro }} outputs <p> tags inside .hero-subline
   — these must inherit the subline styling, not the base p rules */
.hero-subline p,
.hero-subline span,
.hero-subline a,
.petition-hero .hero-subline,
.petition-hero .hero-subline p,
.petition-hero p.hero-subline {
  font-family: var(--font-headline) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: 20px !important;
  color: rgba(255,255,255,0.60) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  width: auto !important;
}

.hero-text-col {
  padding-right: 40px;
  padding-bottom: 20px;
}


/* ============================================================
   PETITION FORM CARD
   ============================================================ */

.petition-card {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 20px 40px rgba(25, 28, 29, 0.12);
  border-left: 4px solid var(--color-crimson);
  overflow: hidden;
}

.petition-card-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--color-outline-variant);
}

.petition-card-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.petition-card-title {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.petition-card-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-on-surface-variant);
  letter-spacing: 0.08em;
}

.petition-progress-track {
  width: 100%;
  height: 8px;
  background: var(--color-surface-high);
  border-radius: 2px;
  overflow: hidden;
}

.petition-progress-fill {
  height: 100%;
  background: var(--color-secondary);
  border-radius: 2px;
  animation: fillBar 1.6s 0.4s ease-out both;
  position: relative;
  overflow: hidden;
}

.petition-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  animation: progressShimmer 3s 2.2s ease-in-out infinite;
}

@keyframes progressShimmer {
  0%   { left: -100%; }
  60%  { left: 100%; }
  100% { left: 100%; }
}

@keyframes fillBar { from { width: 0%; } }

.petition-card-body {
  padding: 24px 32px 28px;
}

/* Override NationBuilder form styles inside the card */
.petition-card .form h3,
.petition-card .form h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 18px;
  margin-bottom: 16px;
}

.petition-card .form-control {
  background: var(--color-surface-low);
  border: 2px solid transparent;
  padding: 12px 16px;
  border-radius: 2px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-on-surface);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.petition-card .form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(63, 102, 83, 0.15);
  outline: none;
  background: #fff;
}

.petition-card .form-control::placeholder {
  color: var(--color-outline);
}

.petition-card .form-group {
  margin-bottom: 12px;
}

.petition-card .form-row {
  margin-bottom: 4px;
}

.petition-card label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-on-surface-variant);
  margin-bottom: 4px;
}

.petition-card .custom-control-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-on-surface-variant);
  line-height: 1.4;
}

.petition-card .custom-control-label::before {
  border-color: var(--color-outline-variant);
  border-radius: 2px;
}

.petition-card .custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.petition-card .submit-button,
.petition-card .btn-primary {
  width: 100% !important;
  background-color: var(--color-crimson) !important;
  border-color: var(--color-crimson) !important;
  color: #fff !important;
  padding: 16px 24px !important;
  border-radius: 2px !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px !important;
  letter-spacing: 0.15em;
  text-transform: uppercase !important;
  transition: all 0.2s;
  display: block;
  margin: 16px auto 0;
  animation: ctaPulse 2.8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(178, 34, 34, 0); }
  50%      { box-shadow: 0 0 0 8px rgba(178, 34, 34, 0.15); }
}

.petition-card .submit-button:hover,
.petition-card .btn-primary:hover {
  background-color: var(--color-crimson-hover) !important;
  border-color: var(--color-crimson-hover) !important;
  animation: none;
}

.form-dis {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  color: var(--color-on-surface-variant);
  margin-top: 16px;
  line-height: 1.5;
}

.form-dis a {
  font-size: inherit;
  color: var(--color-on-surface) !important;
  text-decoration: underline;
}

/* Remove the old red sign box */
.sign-box { display: none; }

/* Form errors */
.form-errors {
  margin-bottom: 12px;
}

/* NationBuilder renders errors as <div class="form-errors" style="display:block"><ul><li>…</li></ul></div> */
.form-errors ul {
  display: block !important;
  color: #b91c1c !important;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 10px 14px 10px 30px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  list-style-position: inside;
}

.form-errors li {
  margin-bottom: 2px;
}

/* Also handle the .alert variant in case NB uses it on other page types */
.form-errors .alert,
.form-errors .alert-danger,
.form-errors .alert-error {
  display: block !important;
  color: #b91c1c !important;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.5;
}


/* ============================================================
   RISK SECTION — INFO BOXES + BAR CHART
   ============================================================ */

.risk-section {
  background: #fff;
  padding: 80px 0;
}

.risk-header {
  margin-bottom: 48px;
  max-width: 700px;
}

.section-headline {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.15;
}

/* Grid gaps */
.risk-grid {
  margin-left: -10px;
  margin-right: -10px;
}

.risk-grid > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

/* Risk boxes */
.risk-box {
  padding: 32px;
  border-radius: 2px;
}

.risk-box-light {
  background: var(--color-surface-low);
  height: 100%;
}

.risk-box-dark {
  background: var(--color-primary);
  color: #fff;
  margin-bottom: 20px;
}

.risk-box-green {
  background: var(--color-secondary);
  color: #fff;
}

/* Make the side stack column use flex so both boxes share the height */
.risk-grid .col-md-4 {
  display: flex;
  flex-direction: column;
}

.risk-grid .col-md-4 .risk-box-dark {
  flex: 1;
}

.risk-grid .col-md-4 .risk-box-green {
  flex: 1;
}

.risk-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
  color: #fff;
}

.risk-icon-crimson {
  color: var(--color-crimson);
}

.risk-box-title {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.risk-box-title-light {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.risk-box-text {
  font-size: 14px;
  color: var(--color-on-surface-variant);
  line-height: 1.6;
  margin-bottom: 0;
}

.risk-box-text-light {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 0;
}

.risk-box-text-muted {
  font-size: 14px;
  color: var(--color-secondary-container);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Chart card */
.chart-card {
  position: relative;
  overflow: hidden;
  padding: 40px 48px 32px !important;
}

.chart-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-crimson);
}

.chart-card-title {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  text-transform: uppercase !important;
  margin-bottom: 6px;
}

.chart-card-subtitle {
  font-size: 14px;
  color: var(--color-on-surface-variant);
  line-height: 1.5;
  margin-bottom: 0;
}

.chart-highlight {
  color: var(--color-crimson);
  font-weight: 700;
}

/* Bar chart area */
.chart-bars-area {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  height: 300px;
}

.chart-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 160px;
  height: 100%;
  justify-content: flex-end;
}

.chart-pct-label {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-crimson);
  margin-bottom: 12px;
  font-style: normal;
}

/* Percentage label animation */
.bar-pct-anim {
  opacity: 0;
  animation: fadeDown 0.4s ease forwards;
}

.bar-pct-d1 { animation-delay: 0.7s; }
.bar-pct-d2 { animation-delay: 0.85s; }
.bar-pct-d3 { animation-delay: 1.0s; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Bars */
.chart-bar {
  width: 100%;
  border-radius: 8px 8px 0 0;
  position: relative;
  overflow: hidden;
}

/* Diagonal stripe overlay */
.chart-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(255,255,255,0.12) 6px,
    rgba(255,255,255,0.12) 12px
  );
}

.chart-bar-high {
  background: #B22222;
  height: 280px;
}

.chart-bar-mid {
  background: #d4503c;
  height: 196px;
}

.chart-bar-low {
  background: #e8765f;
  height: 140px;
}

.chart-bar-name {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
}

/* Chart footer */
.chart-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--color-outline-variant);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.chart-footer-icon {
  width: 20px;
  height: 20px;
  background: var(--color-crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.chart-footer-icon span {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.chart-footer-text {
  font-size: 13px;
  color: var(--color-outline);
  line-height: 1.5;
  margin: 0;
}

/* Bar grow animation */
@keyframes barGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.bar-grow {
  animation: barGrow 0.8s ease-out both;
  transform-origin: bottom;
}

.bar-d1 { animation-delay: 0.2s; }
.bar-d2 { animation-delay: 0.4s; }
.bar-d3 { animation-delay: 0.6s; }
.bar-d4 { animation-delay: 0.8s; }


/* ============================================================
   CONTENT SECTION (NB editor content)
   ============================================================ */

.content-section {
  background: var(--color-surface);
  padding: 60px 0 80px;
}

.petition-body-content {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-on-surface);
}

.petition-body-content h2,
.petition-body-content h3 {
  font-family: var(--font-headline);
  color: var(--color-primary);
  margin-top: 32px;
  margin-bottom: 16px;
}

.petition-body-content p {
  color: var(--color-on-surface);
  width: auto;
  margin-left: 0;
  line-height: 1.7;
  font-size: 16px;
}


/* ============================================================
   CHILDREN / SUBPAGES
   ============================================================ */

.children-section {
  background: var(--color-surface);
  padding: 60px 0 80px;
}

.child-block {
  margin-bottom: 48px;
}

.child-banner {
  font-family: var(--font-headline);
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 32px;
  border-radius: 2px;
}

.child-row {
  gap: 30px;
}

.child-content-col,
.child-content-solo {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-on-surface);
}

.child-content-col p,
.child-content-solo p {
  font-size: 16px;
  color: var(--color-on-surface);
}


/* ============================================================
   QUOTE / IMAGERY SECTION
   ============================================================ */

.quote-section {
  background: var(--color-surface-low);
  padding: 80px 0 100px;
}

.quote-gallery {
  margin-bottom: 30px;
}

.gallery-col-left {
  padding-right: 8px;
  padding-top: 40px;
}

.gallery-col-right {
  padding-left: 8px;
}

.gallery-img {
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 16px;
}

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

.gallery-img-short {
  height: 220px;
}

.gallery-img-tall {
  height: 280px;
}

.gallery-img-credited {
  position: relative;
}

.gallery-credit {
  position: absolute;
  bottom: 6px;
  right: 6px;
  font-size: 9px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.45);
  padding: 2px 6px;
  border-radius: 2px;
  line-height: 1.3;
}

.quote-headline {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 24px;
}

.quote-border {
  border-left: 4px solid var(--color-secondary);
  padding-left: 32px;
}

.quote-text {
  font-family: var(--font-headline);
  font-style: normal;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--color-primary);
  line-height: 1.5;
  margin: 0;
}


/* ============================================================
   LOCAL CHAMPION CARD (shown via ?area= URL param)
   ============================================================ */

.champion-section {
  background: var(--color-surface-low);
  padding: 72px 0;
  border-top: 1px solid var(--color-outline-variant);
}

.champion-card {
  position: relative;
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(4, 22, 44, 0.08);
}

.champion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-crimson);
  z-index: 1;
}

.champion-photo-col {
  overflow: hidden;
  min-height: 320px;
  background: var(--color-surface-high);
}

.champion-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.no-gutters > .champion-text-col {
  padding: 48px 56px 48px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.champion-kicker {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--color-crimson);
  margin: 0 0 12px;
}

.champion-name {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0 0 4px;
}

.champion-role {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-on-surface-variant);
  font-weight: 500;
  margin: 0 0 20px;
}

.champion-quote {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-primary);
  border-left: 4px solid var(--color-secondary);
  padding-left: 20px;
  margin: 0;
}

@media (max-width: 769px) {
  .champion-section { padding: 48px 0; }
  .champion-photo-col { min-height: 260px; }
  .champion-photo { min-height: 260px; max-height: 340px; }
  .no-gutters > .champion-text-col { padding: 28px 24px; }
  .champion-name { font-size: 24px; }
  .champion-quote { font-size: 16px; padding-left: 16px; }
}


/* ============================================================
   BOTTOM CTA (with form card)
   ============================================================ */

.bottom-cta {
  background: var(--color-primary);
  padding: 80px 0 100px;
}

.bottom-cta-kicker {
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase !important;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.bottom-cta-headline {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase !important;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.bottom-cta-sub {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  margin-bottom: 40px;
}

/* Dark variant of the petition card for use on navy background */
.petition-card-dark {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--color-crimson);
  overflow: hidden;
}

.petition-card-dark .petition-card-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--color-outline-variant);
}

.petition-card-dark .petition-card-body {
  padding: 24px 32px 28px;
}


/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-top: 1px solid var(--color-outline-variant);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.sticky-cta-sub {
  font-size: 11px;
  color: var(--color-on-surface-variant);
  margin: 0;
}

.btn-sticky-sign {
  background: var(--color-crimson);
  color: #fff !important;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.12em;
  transition: all 0.2s;
}

.btn-sticky-sign:hover {
  background: var(--color-crimson-hover);
  color: #fff !important;
}

@media (min-width: 992px) {
  .sticky-cta { display: none !important; }
}


/* ============================================================
   FOOTER — colours matched to new palette, text unchanged
   ============================================================ */

.footer-bg,
footer {
  background: var(--color-primary-container) !important;
}

footer {
  color: #fff;
}

footer a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

footer a:hover {
  color: #fff !important;
}

footer p,
footer li {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.footer-header {
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}

.footer-logo img {
  width: 200px;
  display: block;
  margin: 40px auto 20px;
}

.footer-social { height: 25px; }
.social-flex { display: flex; gap: 8px; }
.social-flex a:hover { opacity: 0.6; }
.social-flex a { transition: all .2s ease-in-out; }

.footer-nav {
  align-items: center;
  padding: 0;
  text-transform: uppercase !important;
  font-weight: 600;
  font-size: 14px !important;
}

.footer-nav a {
  text-transform: uppercase !important;
  font-weight: 600;
  font-size: 14px !important;
}

.footer-nav li:last-child a {
  background: var(--color-crimson);
  color: #fff !important;
  border-radius: 2px;
  padding: 10px 15px !important;
  font-weight: 700;
}

.footer-sub-container {
  display: flex;
  width: 100%;
  gap: 25px;
}

.footer-flex {
  display: flex;
  width: 100%;
}


/* ============================================================
   GENERAL BUTTONS
   ============================================================ */

button, .button {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  background: var(--color-primary);
  border-radius: 2px;
  padding: 14px 40px;
  border: 2px solid var(--color-primary);
  transition: all .2s ease-in-out;
  text-transform: uppercase !important;
  color: #fff;
  letter-spacing: 0.08em;
}

button:hover {
  background: transparent;
  border: 2px solid var(--color-crimson);
  color: var(--color-crimson);
}

button:hover svg path {
  fill: var(--color-crimson) !important;
}

.btn-primary {
  color: white !important;
  background-color: var(--color-crimson) !important;
  border-color: var(--color-crimson) !important;
  border-radius: 2px !important;
  padding: 12px 32px !important;
  font-weight: 700;
  text-transform: uppercase !important;
  font-size: 14px !important;
  letter-spacing: 0.1em;
  width: fit-content !important;
  display: block;
  margin: 20px auto;
}

.btn-primary:hover {
  color: var(--color-crimson) !important;
  background-color: transparent !important;
  border-color: var(--color-crimson) !important;
}

.btn-secondary {
  color: white !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  border-radius: 2px !important;
  padding: 12px 32px !important;
  font-weight: 700;
  text-transform: uppercase !important;
  font-size: 14px !important;
  letter-spacing: 0.1em;
  width: fit-content !important;
  display: block;
  margin: 20px auto;
}

.btn-secondary:hover {
  color: var(--color-on-surface-variant) !important;
  background-color: transparent !important;
  border-color: var(--color-on-surface-variant) !important;
}


/* ============================================================
   ALERTS / NOTIFICATIONS
   ============================================================ */

.alert-info, .alert-notice, .alert-share, .alert-danger, .alert-error {
  color: #ffffff !important;
  display: none!important;
}


/* ============================================================
   PETITION FORM (old NB styles, kept but re-coloured)
   ============================================================ */

.petition-form {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.petition-content {
  width: 100%;
  text-align: center;
}

.petition-content-top {
  text-align: center;
}

.petition-content-top p:nth-child(2),
.yellow-text {
  color: var(--color-crimson);
}


/* ============================================================
   YELLOW BANNER — now uses navy
   ============================================================ */

.yellow-banner {
  background: var(--color-primary);
  text-align: center;
  color: #fff;
  padding: 16px 20px;
  font-family: var(--font-headline);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 32px;
  border-radius: 2px;
}


/* ============================================================
   DONATION PAGE (re-coloured)
   ============================================================ */

.donation-v2-amounts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin: 0 auto;
  max-width: 100%;
}

.donation-v2-amounts > .custom-control-inline {
  display: block;
}

.donation-v2-amounts .custom-control-label::before,
.donation-v2-amounts .custom-control-label::after {
  display: none;
}

.donation-v2-amounts .custom-control-inline,
.donation-v2-amounts .custom-control {
  margin-right: 0;
  padding-left: 0;
}

.custom-control-label.radio {
  display: block;
  border: 3px solid var(--color-primary);
  color: var(--color-primary);
  text-align: center;
  padding: 0;
  font-weight: bold;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  font-size: 24px;
}

.custom-control-input:checked + .custom-control-label.radio {
  background-color: var(--color-primary);
  color: white;
}

.custom-control-label.radio:hover {
  background-color: var(--color-primary);
  color: white;
}

.donation-v2-occurence-radio .custom-control {
  padding-left: 0;
}

.donation-v2-occurence-radio .custom-control-label.radio {
  padding: 0 1rem;
}

.donation-v2-occurence-radio .custom-control-label::before,
.donation-v2-occurence-radio .custom-control-label::after {
  display: none;
}

.donation-content p {
  font-size: clamp(0.75rem, 0.65rem + 2vw, 1.1rem);
}

.merchant_account_contribution_rules p,
.merchant_account_contribution_rules ul li,
.merchant_account_contribution_rules p a {
  font-size: 0.8rem !important;
}


/* ============================================================
   SHARE BUTTONS
   ============================================================ */

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0;
}

.btn-share {
  color: white !important;
  border-radius: 2px !important;
  padding: 10px 28px !important;
  font-weight: 700;
  text-transform: uppercase !important;
  font-size: 14px !important;
  border: 2px solid;
  width: fit-content !important;
  display: inline-block;
  text-align: center;
  text-decoration: none !important;
  transition: background-color 0.2s ease, color 0.2s ease;
  flex: 1 1 auto;
  min-width: 160px;
}

.btn-facebook { background-color: #1877F2 !important; border-color: #1877F2 !important; }
.btn-facebook:hover { color: #1877F2 !important; background-color: transparent !important; }
.btn-twitter { background-color: #000000 !important; border-color: #fff !important; }
.btn-twitter:hover { color: #000000 !important; background-color: transparent !important; }
.btn-whatsapp { background-color: #25D366 !important; border-color: #25D366 !important; }
.btn-whatsapp:hover { color: #25D366 !important; background-color: transparent !important; }
.btn-email { background-color: var(--color-crimson) !important; border-color: var(--color-crimson) !important; }
.btn-email:hover { color: var(--color-crimson) !important; background-color: transparent !important; }


/* ============================================================
   SPLIDE CAROUSEL (homepage)
   ============================================================ */

#headline-carousel {
  height: 93vh;
  width: 94%;
  margin: 0 3%;
  border-radius: 4px !important;
  overflow: hidden;
}

.parallax-heading {
  opacity: 0;
  transform: translateX(-40px);
  transition: none;
  width: 70%;
}

.parallax-heading.animate-in {
  animation: fadeSlideIn 0.8s ease-out forwards;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}


/* ============================================================
   MISC UTILITY
   ============================================================ */

.block { display: block !important; }
.flex { display: flex; }
.center { text-align: center; }
.white { color: #fff !important; }
.black { color: #000 !important; }
.bold { font-weight: 700; }
.semibold { font-weight: 600; }
.medium { font-weight: 500; }
.hidden { visibility: hidden; }

.w75 { width: 75%; }
.w25 { width: 25%; }
.w50 { width: 50%; }

.gap-20 { gap: 20px; }
.gap-30 { gap: 40px !important; }

.ben-social { width: 55px; }

.pill {
  font-weight: 700;
  background: var(--color-secondary);
  color: white;
  font-size: 12px;
  text-transform: uppercase !important;
  padding: 4px 16px;
  border-radius: 30px;
  width: fit-content;
}

.head-container { width: 100%; display: flex; gap: 40px; }

/* Font sizes (fluid) */
.font-115, .font-115 p { font-size: clamp(2rem, 6vw, 73px); line-height: 1; font-weight: 800 !important; text-transform: uppercase !important; }
.font-65 { font-size: clamp(2.5rem, 3vw + 1rem, 4.063rem); }
.font-50 { font-size: clamp(2rem, 2.5vw + 1rem, 3.125rem); }
.font-45 { font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem); line-height: 1.1; }
.font-35 { font-size: clamp(1rem, 1rem + 1vw, 1.875rem); }
.font-30 { font-size: clamp(1rem, 0.75rem + 1vw, 2rem); }
.font-25 { font-size: clamp(0.875rem, 0.75rem + 3vw, 1.563rem); }
.font-20 { font-size: clamp(0.75rem, 0.65rem + 2vw, 1.25rem); }
.font-15 { font-size: clamp(0.625rem, 0.5rem + 0.5vw, 0.938rem); }
.font-10 { font-size: clamp(0.5rem, 0.4rem + 0.4vw, 0.625rem); }

/* Skew containers */
.skew-container {
  transform: skew(-10deg);
  padding: 2rem 3.2rem;
  border-radius: 2rem 0 2rem 0;
  line-height: 1.1;
  min-height: 240px;
  display: flex;
  align-items: center;
}

.skew-content {
  transform: skew(10deg);
}

.white-transparent { background: rgba(255,255,255,0.4); }

/* Contact form */
.contact-layout { display: flex; flex-wrap: wrap; gap: 2em; }
.contact-info { flex: 1 1 300px; }
.contact-info p { margin-bottom: 1.2em; }
.custom-contact-wrapper { background: var(--color-surface-low); padding: 2em; border-radius: 4px; flex: 1 1 400px; }
.custom-contact-wrapper .form-group { margin-bottom: 1rem; }
.custom-contact-wrapper .form-row { display: flex; gap: 1em; }
.custom-contact-wrapper .form-row .form-group { flex: 1; }
.custom-contact-wrapper input, .custom-contact-wrapper textarea { width: 100%; padding: 12px; border: 1px solid var(--color-outline-variant); border-radius: 2px; }
.custom-contact-wrapper textarea { min-height: 120px; }

/* Signup section */
.signup-section {
  position: relative;
  background: var(--color-secondary);
  width: 75%;
  margin: -180px auto 0;
  padding: 30px;
  z-index: 3;
  border-radius: 4px;
}

/* Donation section */
#dontate {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 500px;
  padding: 100px 0;
  position: relative;
}

/* Hero (homepage) */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; }
.hero img { max-width: 650px; }
.hero-flex { position: relative; z-index: 1; height: 100%; }
.hero-overlay,
.hero-overlay-home { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(4,22,44,0.85), rgba(4,22,44,0.1)) !important; z-index: 0; }
.involved-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(4,22,44,0.9), rgba(4,22,44,0.1)) !important; z-index: 0; }

/* Page header */
.page-header {
  background: var(--color-primary);
  color: #fff;
}

.page-header .petition-content-top {
  color: #fff;
}

.page-header .petition-content-top p {
  color: rgba(255,255,255,0.7);
}

/* News / Latest updates */
.latest-updates .section-title { font-size: clamp(32px, 4vw, 65px); font-weight: 800; color: var(--color-primary); }
.latest-updates .news-card { display: flex; flex-direction: column; height: 100%; overflow: hidden; background: #fff; }
.latest-updates .news-image { position: relative; background: var(--color-primary) center/cover no-repeat; aspect-ratio: 16 / 9; }
.latest-updates .news-body { background: var(--color-surface-low); padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.latest-updates .meta-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.latest-updates .date { font-weight: 700; letter-spacing: .2px; color: var(--color-primary); text-transform: uppercase; font-size: 13px; }
.latest-updates .tag { font-weight: 800; letter-spacing: .5px; color: var(--color-primary); opacity: .7; text-transform: uppercase; font-size: 13px; }
.latest-updates .title { font-size: clamp(18px, 2.1vw, 28px); line-height: 1.2; color: var(--color-primary); margin: 0; font-weight: 700; margin-bottom: 30px; }
.latest-updates .learn { margin-top: 6px; font-weight: 700; font-size: 14px; color: var(--color-primary); display: inline-flex; align-items: center; gap: 8px; opacity: .8; text-decoration: none; }
.latest-updates .card-link { text-decoration: none; }
.latest-updates .view-all { margin-top: 18px; display: inline-flex; align-items: center; gap: 10px; border: 0; padding: 14px 22px; border-radius: 999px; background: var(--color-primary); color: #fff; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }

/* Card hover */
.card:hover .card-img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
  z-index: 1;
}

.card-img, .white-transparent.skew-container {
  transition: transform 0.5s ease;
  will-change: transform;
}

.card-title { color: var(--color-primary) !important; }


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Mid-range: hero columns are side-by-side but tight */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-headline {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
  }

  .hero-subline,
  .hero-subline p,
  .petition-hero p.hero-subline,
  .petition-hero .hero-subline p {
    font-size: 17px !important;
  }

  .hero-text-col {
    padding-right: 20px;
  }

  .petition-card-header,
  .petition-card-body {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 991px) {
  .petition-hero {
    min-height: auto;
    padding: 80px 0 40px;
  }

  .hero-text-col {
    padding-right: 15px;
    margin-bottom: 32px;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .petition-card-header,
  .petition-card-body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .gallery-img-short { height: 160px; }
  .gallery-img-tall { height: 200px; }

  /* Risk boxes: side stack goes full width */
  .risk-box-dark {
    margin-bottom: 20px;
  }

  .chart-bars-area {
    height: 220px;
    gap: 20px;
  }

  .chart-card {
    padding: 32px 32px 24px !important;
  }

  .chart-pct-label {
    font-size: 1.5rem;
  }

  .chart-bar-high { height: 220px; }
  .chart-bar-mid { height: 154px; }
  .chart-bar-low { height: 110px; }
}

@media (max-width: 769px) {
  p, li {
    font-size: 15px;
    line-height: 1.5;
  }

  .petition-hero {
    padding: 70px 0 30px;
  }

  .hero-gradient {
    background: linear-gradient(to bottom, var(--color-primary), rgba(4,22,44,0.85));
  }

  .hero-subline,
  .hero-subline p,
  .petition-hero p.hero-subline,
  .petition-hero .hero-subline p {
    font-size: 16px !important;
    max-width: 100%;
  }

  .hero-kicker {
    font-size: 11px;
    padding: 6px 14px;
  }

  .risk-section,
  .quote-section,
  .bottom-cta {
    padding: 50px 0 60px;
  }

  .content-section {
    padding: 40px 0 50px;
  }

  .children-section {
    padding: 40px 0 50px;
  }

  .risk-box {
    padding: 24px;
  }

  .risk-box-title {
    font-size: 20px;
  }

  .risk-box-title-light {
    font-size: 18px;
  }

  .chart-bars-area {
    height: 180px;
    gap: 16px;
  }

  .chart-card {
    padding: 24px 20px 20px !important;
  }

  .chart-pct-label {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .chart-bar-high { height: 170px; }
  .chart-bar-mid { height: 120px; }
  .chart-bar-low { height: 85px; }

  .chart-bar-name {
    font-size: 12px;
    margin-top: 10px;
  }

  .chart-footer-text {
    font-size: 12px;
  }

  .petition-card-dark .petition-card-header,
  .petition-card-dark .petition-card-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  button, .button { font-size: 14px; }

  .navbar-brand { max-width: 100%; }
  .navbar-toggler { display: none; }
  .navbar-nav { gap: 15px !important; }
  .navbar-collapse { padding: 20px 10px !important; }

  .w75, .w25, .w50 { width: 100%; }

  .footer-sub-container {
    flex-direction: column;
    gap: 15px !important;
  }

  .flex { flex-direction: column; }
  .head-container { flex-direction: column; }
  .event-container { flex-direction: column !important; }

  .services { padding: 0; }

  section { padding-left: 15px; padding-right: 15px; }

  .logo-toggle { display: flex; flex-direction: row; gap: 10px; }

  .hero { padding-top: 110px; min-height: 45vh; width: 95%; margin: 0 1.5%; border-radius: 4px !important; }
  .hero img { max-width: 100%; }

  .signup-section { margin: -30px auto 0; width: 90%; }

  .container { max-width: 790px !important; }

  .child-banner {
    padding: 12px 10px;
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  #headline-carousel { width: 100%; height: 45vh; }

  .parallax-heading { width: 90%; }

  .mb-5, .my-5 { margin-bottom: 1rem !important; }

  .row { max-width: 100%; margin: 0 auto; }

  .quote-gallery { margin-bottom: 24px; }
  .gallery-img-short { height: 120px; }
  .gallery-img-tall { height: 160px; }
}

@media (min-width: 770px) and (max-width: 900px) {
  body, html { max-width: 100vw; overflow-x: hidden; }
  .parallax-heading { width: 90%; }
  .navbar-nav { gap: 20px; }
  #headline-carousel { height: 72vh; }
  .container { max-width: 900px !important; }
  .services { padding: 0; }
  .navbar-collapse { padding: 20px 10px !important; }
  #headline-carousel { width: 100%; margin-top: 0; }
  #header { margin-bottom: -120px; }
  .mb-5, .my-5 { margin-bottom: 1rem !important; }
  .hero-flex { flex-direction: row; }
  .hero { margin-top: -90px; padding-top: 110px; }
  .hero img { max-width: 50%; }
  .head-container { flex-direction: column; }
  .signup-section { margin: -60px auto 0; width: 80%; }
}

@media (min-width: 800px) and (max-width: 999px) {
  .skew-container {
    padding: 2rem 1.8rem !important;
    border-radius: 1.5rem 0 1.5rem 0 !important;
  }
}

@media (max-width: 576px) {
  .donation-v2-amounts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .donation-v2-occurence-radio .custom-control-inline {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .btn-share {
    flex: 1 1 100%;
    font-size: 14px !important;
    padding: 8px 20px !important;
  }
}

/* Donation mobile fix */
@media (max-width: 768px) {
  #dontate > .row { margin-left: 0; margin-right: 0; }
  #dontate .form-row { margin-left: -15px; margin-right: -15px; }
  #dontate .col-12.col-lg-6 { padding-left: 15px; padding-right: 15px; }
}

/* Sticky header */
#header.sticky { display: none; }

@keyframes slideDown {
  from { top: -300px; }
  to { top: 0; }
}

.show { background: var(--color-primary-container) !important; }

form { color: #000; }

/* ---- ACCESSIBILITY: respect reduced-motion preference ---- */
@media (prefers-reduced-motion: reduce) {
  .petition-card .submit-button,
  .petition-card .btn-primary { animation: none; }
  .petition-progress-fill::after { animation: none; display: none; }
}

/* ============================================================
   CONTEXT MAP SECTION — "What is the Super Council?"
   ============================================================ */

.context-section {
  background: var(--color-surface-low);
  padding: 64px 0;
  overflow: hidden;
}

.context-map-wrap {
  max-width: 420px;
  margin: 0 auto;
}

.context-map-img {
  width: 100%;
  height: auto;
  display: block;
}

.context-text {
  padding-left: 24px;
}

.context-headline {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 20px;
}

.context-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
  margin-bottom: 14px;
}

.context-body strong {
  color: var(--color-crimson);
  font-weight: 700;
}

.context-body-accent {
  color: var(--color-on-surface);
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 17px;
  border-left: 3px solid var(--color-crimson);
  padding-left: 20px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .context-section {
    padding: 48px 0;
  }

  .context-map-wrap {
    max-width: 320px;
    margin-bottom: 32px;
  }

  .context-text {
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .housing-eq { grid-template-columns: 1fr !important; gap: 20px !important; }
  .housing-eq > div:nth-child(2), .housing-eq > div:nth-child(4) { display: none; }
}