/* =========================================================
   GLOBAL / DESIGN TOKENS
   Desktop base: 1920px (we use clamp() so it scales nicely)
   ========================================================= */

:root{
  --site-gutter: clamp(16px, 6vw, 120px);
  --font-body: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-title: "Sansita Swashed", serif;

  --text: #0f172a;
  --muted: #334155;
  --bg: #ffffff;

  --container-max: 1920px;

  --pad-x: clamp(16px, 3vw, 56px);
  --pad-y: clamp(24px, 4vw, 72px);

  --intro-min-h: min(72svh, 900px);

}

/* Links */
a{
  color: #00315F;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

a:visited{
  color: #00315F; /* keep consistent */
}

a:hover{
  text-decoration-thickness: 2px;
}

a:focus-visible{
  outline: 3px solid #EAF4FD;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Basic reset */
*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.35;
}

/* Accessibility helper */
.skip-link{
  position: absolute;
  top: -999px;
  left: -999px;
}
.skip-link:focus{
  top: 12px;
  left: 12px;
  background: #fff;
  padding: 10px 12px;
  border: 2px solid #111;
  z-index: 9999;
}

/* Shared section styling */
.section{
  position: relative;
  padding: 24px 0;
}
.container{
  width: min(var(--container-max), 100%);
  margin: 0 auto;
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}


/* ✅ ONLY SPACING CHANGE: reduce intro bottom padding so the map sits closer
.section.intro{
  padding-bottom: 0px;
} */

/* =========================================================
   INTRO SECTION
   ========================================================= */

.intro{
  /* min-height: var(--intro-min-h); */
  display: grid;
  align-items: center;
  overflow: hidden;
}

/* Cloud background behind intro content */
.intro::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(640px, 78vw, 1600px);
  height: 100%;
  background-image: url("assets/bkgd-1.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

.intro__grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(18px, 3vw, 48px);
  align-items: start;
}

@media (min-width: 1200px){
  .intro .container{
    padding-left: 120px;
  }
}

/* Left column */
.intro__title{
  padding-top: 48px;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 24px 0;
  font-size: clamp(56px, 5.2vw, 110px);
  line-height: 0.95;
  color: #00315F;
}

.intro__para{
  margin: 0;
  min-width: 48ch;
  max-width:72ch;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.2;
}

/* Scroll cue */
.scroll-cue{
  display: inline-grid;
  gap: 2px;
  margin-top: clamp(8px, 3vw, 16px);
  align-items: center;
  justify-items: start;
  color: var(--muted);
  user-select: none;
}
.scroll-cue__label{
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue__arrow{
  font-size: clamp(64px, 1.6vw, 80px);
  line-height: 1;
  animation: bob 1.6s ease-in-out infinite;
}

@keyframes bob{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(8px); }
}

.intro__left{
  display: grid;
  padding-top: clamp(24px, 0vw, 10px);
  
}
/* Right column (carousel) */
.intro__right{
  display: grid;
  justify-items: end;
  padding-top: clamp(0px, 0vw, 10px);
  
}

/* Carousel bleeds off the right edge */
.carousel{
  width: min(840px, 56vw);
 
  padding-right: clamp(40px, 0vw, 10px);
  /* margin-right: clamp(-16px, -3vw, -90px); */
  /* transform: translateY(-40px); */
  border-radius: 18px;
  overflow: hidden;
  transform: translateY(-24px);
  position: relative;
}

.carousel__img{
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1; 
  transition: opacity 300ms ease;
}

.carousel__img.is-fading{ opacity: 0; }

/* --- Carousel: remove default button border/outline/appearance --- */
.carousel__stage{
  border: 0;
  outline: none;
  background: transparent;
  padding: 0;
  margin: 0;
  width: auto;
  height: auto;
  appearance: none;
  -webkit-appearance: none;
  display: block;
}

.carousel__stage:focus{ outline: none; }

.carousel__stage:focus-visible{
  outline: 3px solid rgba(11, 43, 87, 0.25);
  outline-offset: 6px;
  border-radius: 18px;
}

/* =========================================================
   PLACEHOLDER SECTIONS
   ========================================================= */
/* 
.section__title{
  margin: 0 0 10px 0;
  font-size: clamp(22px, 1.6vw, 32px);
  letter-spacing: -0.01em;
}
.section__hint{
  margin: 0 0 18px 0;
  color: var(--muted);
  max-width: 60ch;
}
.placeholder-box{
  height: clamp(260px, 40vh, 520px);
  background: rgba(2, 6, 23, 0.06);
} */

/* =========================================================
   RESPONSIVE: tablet portrait & smaller
   ========================================================= */

@media (max-width: 900px){
  .intro__grid{ grid-template-columns: 1fr; }
  .intro__para{ max-width: 60ch; }
  .intro__right{
    justify-items: start;
    padding-top: 12px;
  }
  .carousel{
    width: min(760px, 100%);
    margin-right: 0;
  }
  .intro::before{
    width: 100%;
    opacity: 0.95;
    background-position: left top;
  }
}

@media (prefers-reduced-motion: reduce){
  .scroll-cue__arrow{ animation: none; }
}

/* =========================================================
   AQ MAP (scoped)
   ========================================================= */

.section-aq-map{ padding: 0; }

.aq-scope{
  --aq-font: var(--font-body, "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  --aq-ink: #0f172a;
  --aq-muted: #334155;
  --aq-accent: #00315F40;

  --aq-border: rgba(15, 23, 42, 0.12);
  --aq-border-strong: rgba(15, 23, 42, 0.25);
  --aq-active: rgba(11, 43, 87, 0.55);

  --aq-panel-bg: #ffffff;
  --aq-card-bg: rgba(255, 255, 255, 0.92);
  --aq-spotlight-overlay: rgba(15, 23, 42, 0.30);

  --aq-radius: 14px;
  --aq-radius-pill: 999px;

  --aq-space-lg: 1.2rem;
  --aq-space-md: 0.9rem;

  font-family: var(--aq-font);
  color: var(--aq-ink);
}

.aq-header{ padding: var(--aq-space-lg) 0 var(--aq-space-md) 0; }

.aq-title{
  margin: 0 0 0.6rem 0;
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1.15;
  color: #00315F;
  letter-spacing: -0.01em;
}

.aq-intro{
  margin: 0;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.2;
  
}

.aq-intro-extra-desktop{ display: inline; }

.aq-visual-layout{
  display: grid;
  grid-template-columns: minmax(360px, 600px) minmax(0, 1fr);
  gap: clamp(12px, 2vw, 32px);
  align-items: stretch;
  min-height: 0;
}

.aq-side-panel{
  background: var(--aq-panel-bg);
  border-radius: var(--aq-radius);
  border: 1px solid var(--aq-border);
  padding: var(--aq-space-lg);
}

.aq-legend{ 
    font-size: 0.9rem; 
    color: var(--aq-muted); 
   
}

.aq-legend-title{
  margin-bottom: 1rem;
  color: var(--aq-ink);
  font-weight: 600;
  font-size: clamp(16px, 1.05vw, 18px);
}

.aq-legend-bar{
  height: 10px;
  border-radius: var(--aq-radius-pill);
   margin-top: 40px;
  margin-bottom: 40px;
  background: #eee;
  position: relative;
}

.aq-legend-tick{
  position: absolute;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(15, 23, 42, 0.60);
  white-space: nowrap;
  user-select: none;
}
.aq-legend-tick--above{ top: -18px; }
.aq-legend-tick--below{ top: 14px; }

.aq-stories{
  margin-top: 1rem;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.aq-stories-heading{
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15, 23, 42, 0.65);
  margin-bottom: 0.25rem;
}

.aq-story{
  background: var(--aq-card-bg);
  border-radius: var(--aq-radius);
  padding: 0.8rem 0.85rem;
  cursor: pointer;
  border: 1px solid var(--aq-border);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.aq-story:hover{
  border-color: var(--aq-border-strong);
  transform: translateY(-1px);
}

.aq-story.is-active{
  border-color: var(--aq-active);
  box-shadow: 0 0 0 3px rgba(11, 43, 87, 0.12);
}

.aq-story.is-uk{ border-style: dashed; }

.aq-story-row{
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(110px, 140px) minmax(160px, 220px);
  gap: 0.9rem;
  align-items: start;
}

.aq-story-left{
  min-width: 0;
  overflow-wrap: anywhere;
}

.aq-story-left div:first-child{ color: var(--aq-muted); }
.aq-story-left strong{ font-weight: 700; }

.aq-story-metric{
  display: grid;
  gap: 0.15rem;
  font-size: 0.88rem;
  color: var(--aq-muted);
  white-space: nowrap;
  justify-items: end;
  text-align: right;
}
.aq-story-metric div:last-child{ color: var(--aq-ink); }
.aq-story-metric b{ color: var(--aq-ink); font-weight: 700; }

.aq-map-panel{
  border-radius: var(--aq-radius);
  overflow: hidden;
  background: #ffffff;
}

.aq-map-svg{
  width: 100%;
  height: 100%;
  display: block;
}

.aq-area{
  stroke: rgba(255,255,255,0.88);
  stroke-width: 0.12;
  vector-effect: non-scaling-stroke;
  shape-rendering: geometricPrecision;
}
.aq-layer-2025 .aq-area{
  stroke: rgba(255, 255, 255);
  stroke-width: 0.22;
  vector-effect: non-scaling-stroke;
}
.aq-area-highlight{
  stroke: rgba(15, 23, 42, 0.55);
  stroke-width: 0.28;
  vector-effect: non-scaling-stroke;
}

.aq-spotlight-overlay{
  fill: var(--aq-spotlight-overlay);
  pointer-events: none;
}

.aq-handle line{
  stroke: rgba(15, 23, 42, 0.45);
  stroke-width: 4;
  stroke-dasharray: 12 12;
}
.aq-handle circle{
  stroke: rgba(15, 23, 42, 0.60);
  stroke-width: 2;
  fill: #ffffff;
  cursor: grab;
}
.aq-handle circle:active{ cursor: grabbing; }

.aq-slider-label{
  fill: rgba(15, 23, 42, 0.62);
  font-family: var(--aq-font);
  font-size: 16px;
  alignment-baseline: middle;
  pointer-events: none;
}

.aq-static-label{
  fill: rgba(15, 23, 42, 0.72);
  font-family: var(--aq-font);
  font-weight: 700;
  font-size: 28px ;
  pointer-events: none;
}

@media (min-width: 1152px){
  .aq-scope{
    display: grid;
    grid-template-rows: auto 1fr;
    height: 120dvh;
    min-height: 0;
    overflow: hidden;
  }
  .aq-side-panel{
    height: 100%;
    min-height: 0;
    overflow: auto;
  }
  .aq-map-panel{
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 1151px){
  .aq-scope{ height: auto; overflow: visible; }
  .aq-visual-layout{ grid-template-columns: 1fr; }
  .aq-map-panel{ height: 72vh; }
  .aq-intro-extra-desktop{ display: none; }
}





/* =========================================================
   WATERFALL (scoped) — brand-aligned
   ========================================================= */

.section-waterfall{
  padding-top: var(--pad-y);     /* brings back top spacing */
  padding-bottom: var(--pad-y);  /* optional: matches other sections */
}


.dl-scope{
  /* Match site typography + tone */
  --dl-font-family-base: var(--font-body);
  --dl-font-family-heading: var(--font-body);

  /* Brand colours (align with map/intro) */
  --dl-ink: #0f172a;
  --dl-muted: #334155;
  --dl-accent: #0b2b57;

  /* Surfaces similar to your map cards */
  --dl-panel-bg: #ffffff;
  --dl-card-bg: rgba(255, 255, 255, 0.92);
  --dl-border: rgba(15, 23, 42, 0.12);
  --dl-border-strong: rgba(15, 23, 42, 0.22);

  /* Chart colours */
  --dl-bar: rgba(11, 43, 87, 0.85);
  --dl-bar-hover: rgba(11, 43, 87, 0.95);
  --dl-grid: rgba(15, 23, 42, 0.08);
  --dl-axis: rgba(15, 23, 42, 0.55);
  --dl-ref: #652DC5; /* #3b1b6e */

  /* Type sizes (readable + consistent with your map labels) */
  --dl-xs: 12px;
  --dl-sm: 13px;
  --dl-md: 14px;
  --dl-lg: 16px;
  --dl-xl: 22px;

  --dl-radius: 8px;
  --dl-radius-sm: 4px;

  font-family: var(--dl-font-family-base);
  color: var(--dl-ink);
}

.dl-main{
  max-width: var(--container-max);
  margin-top: 48px;
  
}

.dl-section{
  background: var(--dl-panel-bg);
  border-radius: var(--dl-radius);
  /* border: 1px solid var(--dl-border); */
  padding: 1.2rem;
}

@media (max-width: 640px){
  .dl-section{ padding: 1rem; }
}

.dl-section__header{
  margin-bottom: 0.9rem;
}

.dl-heading{
  margin: 0 0 0.35rem 0;
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--dl-accent);
  font-weight: 700;
}

.dl-subheading{
  margin: 0;
  color: var(--dl-muted);
  font-size: var(--dl-md);
  line-height: 1.55;
  max-width: 70ch;
}
/* --- Controls ON TOP --- */
/* --- Controls ON TOP --- */
.dl-controls-top {
  display: flex;
  justify-content: space-between; /* space between left and right groups */
  gap: 1.25rem;
  align-items: flex-end;
  flex-wrap: wrap; /* allow wrapping on smaller widths */
  margin-top: 0.9rem;
  margin-bottom: 0.9rem;
}

/* Left and right clusters of filters */
.dl-controls-top__left,
.dl-controls-top__right {
  display: flex;
  gap: 0.85rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

/* On medium screens, stack the two groups vertically */
@media (max-width: 980px) {
  .dl-controls-top {
    flex-direction: column;
    align-items: stretch;
  }

  .dl-controls-top__left,
  .dl-controls-top__right {
    justify-content: flex-start;
  }
}

/* You can keep this as-is or tweak if you want even tighter stacking on very small screens */
@media (max-width: 560px) {
  .dl-controls-top__left,
  .dl-controls-top__right {
    width: 100%;
  }
}

/* Individual field block */
.dl-field-group {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.dl-label {
  font-size: var(--dl-xs);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(15, 23, 42, 0.65);
}

.dl-select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #fff;

  /* your existing styling */
  border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius-sm);
  padding: 10px 12px;

  /* ✅ make room for the arrow */
  padding-right: 44px;

  font-size: var(--dl-md);
  color: var(--dl-ink);
  line-height: 1.2;
  width: 100%;

  /* ✅ chevron arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20'%3E%3Cpath d='M5 7.5l5 5 5-5' fill='none' stroke='%2300315F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
}

.dl-select:hover { 
  border-color: var(--dl-border-strong); 
}

.dl-select:focus-visible {
  outline: 3px solid rgba(11, 43, 87, 0.18);
  outline-offset: 2px;
}

/* sort buttons container */
.dl-sort-buttons{
  display: flex;
  gap: 6px;
}

/* sort buttons */
.dl-sort-btn{
  border: 1px solid var(--dl-border);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(15, 23, 42, 0.75);

  /* less rounded, more like your selects */
  border-radius: var(--dl-radius-sm);  /* or e.g. 12px if you prefer */

  /* more space inside the button */
  padding: 10px 12px;

  font-size: var(--dl-sm);
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
}



.dl-sort-btn:hover{
  border-color: var(--dl-border-strong);
}

.dl-sort-btn--active{
  border-color: #00315F;
  background:  #EAF4FD;
  color: var(--dl-accent);
}

/* --- Chart wrapper --- */
.dl-chart-wrapper{
  border-radius: var(--dl-radius);
  background: #fff;
  /* border: 1px solid var(--dl-border); */
  padding: 16px; 
  overflow: hidden;
  position: relative;
}

.dl-chart-summary--overlay{
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 5;

  /* make it readable but not heavy */
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;

  /* optional: a little glassy background so it reads over grid */
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15, 23, 42, 0.10);
  color: #0f172a;
}

.dl-chart-footnotes--overlay{
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 5;

  font-size: 12px;
  line-height: 1.35;
  color: rgba(15, 23, 42, 0.75);

  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 10px;
  padding: 8px 10px;
  max-width: 320px;
}

.dl-bar--total{ fill: #00315F; }   /* dark blue */
.dl-bar--per{ fill: #00315F50; }     /* transparent dark blue */

.dl-chart-svg{
  display: block;
  width: 100%;
  height: auto;
}

/* Summary */
.dl-chart-summary{
  margin-top: 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--dl-radius-sm);
  border: 1px solid var(--dl-border);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(15, 23, 42, 0.82);
}

.dl-summary-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: baseline;
}

.dl-summary-percent{
  font-size: clamp(18px, 1.6vw, 26px);
  font-weight: 800;
  color: var(--dl-accent);
}

.dl-summary-total{
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 700;
  color: var(--dl-ink);
}

.dl-summary-text{
  margin-top: 0.25rem;
  font-size: var(--dl-md);
  color: rgba(15, 23, 42, 0.75);
}

/* Footnotes */
.dl-chart-footnote{
  margin-top: 0.6rem;
  font-size: var(--dl-sm);
  color: rgba(15, 23, 42, 0.70);
  display: grid;
  gap: 4px;
}
.dl-footnote-mark{
  font-weight: 800;
  margin-right: 2px;
  /* color: var(--dl-accent); */
  color: var(--dl-ref);
}

/* --- Axes + grid --- */
.dl-chart-axis-line{
  stroke: var(--dl-axis);
  stroke-width: 1;
}

.dl-chart-axis-tick{
  fill: rgba(15, 23, 42, 0.70);
  font-size: var(--dl-md);
}

.dl-chart-axis-label{
  fill: rgba(15, 23, 42, 0.70);
  font-size: var(--dl-md);
  font-weight: 500;
}

.dl-chart-gridline{
  stroke: var(--dl-grid);
  stroke-width: 1;
  shape-rendering: crispEdges;
}

/* Bars + labels */
.dl-chart-bars .dl-bar{
  rx: 0;
  ry: 0;
}

/* .dl-chart-bars{
  fill: var(--dl-bar-hover);
} */

.dl-chart-labels .dl-bar-label{
  fill: #00315F;
  font-size: var(--dl-md);
  font-weight: 600;
  paint-order: stroke;
  stroke: #FFFFFFD9;
  stroke-width: 3px;
  stroke-linejoin: round;
}

/* Reference lines */
.dl-topline{
  stroke: var(--dl-ref);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}

.dl-topline-label{
  fill: var(--dl-ref);
  font-size: var(--dl-md);
  font-weight: 700;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 4px;
  stroke-linejoin: round;
}

.dl-baseline{
  stroke: var(--dl-ref);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}

.dl-baseline-label{
  fill: var(--dl-ref);
  font-size: var(--dl-md);
  font-weight: 700;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 4px;
  stroke-linejoin: round;
}

.sources{
    padding: 24px 0px 0px 0px;
    background-image: url("assets/bkgd-2.svg");
    background-repeat: no-repeat;
    

    /* Position the image at the far right, vertically centred */
    background-position: right bottom;

    /* Control how big it is */
    background-size: 720px auto; 
}

.sources-list{
 line-height: 2;
 padding-left: 16px;
}


/* =========================================================
   WIDE SCREENS (1600px / 1920px+)
   - Keeps 1440 behaviour unchanged
   ========================================================= */

@media (min-width: 1600px){
  :root{
    --container-max: 1440px; /* keep the rest of the site readable */
  }

  /* Slightly larger body copy for map + general paragraphs */
  .aq-intro{
    font-size: clamp(17px, 0.55vw, 20px);
    line-height: 1.4;
  }

  /* Don’t force intro paragraph width in ch — let the 1920+ rule handle it */
  .intro__para{
    min-width: 40ch;     /* this is why it looked right */
    max-width: 72ch;
  }
}

/* Replace the inline 360px paddings with a responsive centred block */
.section[aria-label="Data source and what the figures mean"] .container{
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}
.section[aria-label="Data source and what the figures mean"] .aq-intro{
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   1920px+: Intro layout + readable text width
   ========================================================= */
@media (min-width: 1920px){

  /* Make the intro breathe on ultra-wide screens */
  .intro{
    --container-max: 1760px;
    --site-gutter: clamp(24px, 3vw, 72px);
  }

  .intro .container{
    padding-left: var(--site-gutter);
    padding-right: var(--site-gutter);
  }

  /* ✅ Key change: enforce a minimum width for the TEXT column */
  .intro__grid{
    grid-template-columns: minmax(640px, 1.35fr) minmax(520px, 0.65fr);
    gap: clamp(24px, 2.2vw, 56px);
    align-items: start;
  }

  /* Cap line-length so it doesn’t become too wide */
  .intro__left{
    max-width: 92ch;
  }

  /* Bigger intro copy + let it fill the column */
  .intro__para{
    width: 100%;
    max-width: none;
    min-width: 0;
    font-size: clamp(18px, 0.7vw, 22px);
    line-height: 1.45;
  }

  .sources, .conclusion, .aq-intro{
    font-size: clamp(18px, 0.8vw, 22px);
    line-height: 1.45;
  }

  /* Optional: keep the carousel from dominating */
  .carousel{
    width: min(860px, 44vw);
    margin-right: 0;               /* ensure no negative weirdness */
    transform: translate(-180px, 0px); /* left + keep your vertical lift */
  }

.intro__right{
    justify-items: start;          /* stops hugging the far right */
  }


}