/* ==========================================================================
   SCROLLYTELLING STYLE GUIDE (CLEAN)
   - White page + black body text
   - NYT split hero with Børsen magenta left + hero caption under photo (right aligned)
   - Inline images breakout wider than text, centered, no effects
   - Captions dark grey
   ========================================================================== */

:root{
  --borsen-magenta:#ff5073;

  --bg:#fff;
  --text:#111;
  --muted: rgba(0,0,0,.70);
  --caption: rgba(0,0,0,.58);
  --line: rgba(0,0,0,.12);
}

/* ==========================================================================
   BØRSEN BRAND FONTS
   ========================================================================== */

@font-face{
  font-family: "Gazpacho";
  src: url("https://cdn.borsen.cloud/sites/borsendk/fonts/borsen-fonts/gazpacho/gazpacho-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Tiempos — body text */
@font-face{
  font-family: "TiemposText";
  src: url("https://cdn.borsen.cloud/sites/borsendk/fonts/borsen-fonts/tiempos/text/tiempos-text-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "TiemposText";
  src: url("https://cdn.borsen.cloud/sites/borsendk/fonts/borsen-fonts/tiempos/text/tiempos-text-regularitalic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face{
  font-family: "TiemposText";
  src: url("https://cdn.borsen.cloud/sites/borsendk/fonts/borsen-fonts/tiempos/text/tiempos-text-semibold.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "TiemposText";
  src: url("https://cdn.borsen.cloud/sites/borsendk/fonts/borsen-fonts/tiempos/text/tiempos-text-semibolditalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* GT America — UI / captions */
@font-face{
  font-family: "GTAmerica";
  src: url("https://cdn.borsen.cloud/sites/borsendk/fonts/borsen-fonts/gt-america/gt-americ-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "GTAmerica";
  src: url("https://cdn.borsen.cloud/sites/borsendk/fonts/borsen-fonts/gt-america/gt-america-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


/* Base */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* ===== NYT SPLIT HERO (caption under hele hero) ===== */
.nyt-hero{
  min-height: 100vh;
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: 1fr auto;
  background:#fff;
}

/* Masthead / logo */
.nyt-hero__masthead{
  position: absolute;
  top: clamp(18px, 2vw, 32px);
  left: 50%;
  transform: translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
}

.nyt-hero__logo{
  height: 20px;
  width: auto;
  display:block;
}

/* LEFT */
.nyt-hero__left{
  grid-column: 1;
  grid-row: 1;

  position: relative;

  display:flex;
  align-items:center;
  justify-content:center;

  padding: clamp(28px, 5vw, 72px);
  background: #fff;
}

.nyt-hero__copy{
  /* EDIT THESE TWO */
  --hed-width: 32rem;  /* fx 600px / 36rem / 42ch */
  --dek-width: 40rem;  /* fx 460px / 30rem / 50ch */
  width: min(760px, 92%);
  text-align: center;
  color:#111;
}

.nyt-hero__kicker{
  font: 700 12px/1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ff5073;
  margin-bottom: 16px;
  text-align: center;
}

.nyt-hero__headline{
  font-family: "Gazpacho", Georgia, serif;
  font-weight: 700;        /* MUST match Gazpacho bold */
  font-size: clamp(44px, 5.3vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 18px 0 14px 0;

  width: var(--hed-width, 34rem);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.nyt-hero__dek{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.55;
  color: #111;
  margin:0;

  width: var(--dek-width, 32rem);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* RIGHT */
.nyt-hero__right{
  grid-column: 2;
  grid-row: 1;
  background:#fff;
  min-height: 100%;
}

.nyt-hero__image{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position:center;
  display:block;
}

/* CAPTION ROW */
.nyt-hero__caption-row{
  grid-column: 1 / -1;
  grid-row: 2;

  background:#fff;
  padding: 8px 0 10px 0;
  border-top: 1px solid rgba(0,0,0,.10);
}

.nyt-hero__caption{
  margin: 0;
  width: min(520px, 92%);
  margin-left: auto;
  padding: 0 14px;

  font: 12px/1.3 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(0,0,0,.58);
  text-align: right;
}

/* Responsive */
@media (max-width: 900px){
  .nyt-hero{
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .nyt-hero__left{
    grid-column: 1;
    grid-row: 1;
    padding: 26px 20px;
  }

  .nyt-hero__right{
    grid-column: 1;
    grid-row: 2;
    min-height: 56vh;
  }

  .nyt-hero__caption-row{
    grid-column: 1;
    grid-row: 3;
  }

  .nyt-hero__caption{
    width: 100%;
    padding: 0 12px;
  }
}

/* ==========================================================================
   STORY / PROSE (centered)
   ========================================================================== */
.story{ padding: 56px 0 90px 0; }

.prose{
  width: min(600px, 92vw);
  margin: 0 auto;
}

.prose p{
  font-family: "TiemposText", Georgia, "Times New Roman", Times, serif;
  font-size: 19px;
  line-height: 1.5;
  margin: 0 0 .65em 0;
  color: var(--text);
}

.prose a{
  color: var(--borsen-magenta);
  text-decoration: none;
}

.prose a:hover,
.prose a:focus{
  text-decoration: none;
}


/* ===== META (byline) ===== */
.meta{
  width: 100%;
  margin: 0 auto 28px auto;
  padding: 0 0 14px 0;
  position: relative;
}

@media (min-width: 640px){
  .meta{
    max-width: 600px;
    margin: 0 auto;
  }
}

.meta__byline{
  font: 700 13px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(0,0,0,.70);
  margin: 0 0 8px 0;
}

.meta__date{
  font: 400 13px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(0,0,0,.55);
  margin: 0;
}

.meta::after{
  content:"";
  display:block;
  height: 1px;
  background: rgba(0,0,0,.14);
  margin-top: 12px;
}

/* Divider */
.section-divider{
  border:0;
  height:1px;
  background: var(--line);
  margin: 52px 0;
}

/* ==========================================================================
   INLINE IMAGES BETWEEN TEXT (breakout, centered, no effects)
   ========================================================================== */
figure{ margin: 0; }

.inline-image{
  width: min(960px, 98vw);
  margin: 52px 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;

  /* center relative to viewport */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.inline-image img{
  width:100%;
  height:auto;
  display:block;
  border:0;
  border-radius:0;
  box-shadow:none;
  background:transparent;
  filter:none;
}

/* Shared caption style (inline-image + duo-portrait) */
.inline-image figcaption,
.duo-portrait figcaption{
  margin-top: 10px;
  font: 12px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--caption);
  text-align: right;
}

/* ==========================================================================
   DUO PORTRAIT MODULE (clean)
   ========================================================================== */

.duo-portrait{
  /* Layout */
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;

  /* Spacing */
  margin: 64px 0;

  /* Breakout centering */
  position: relative;
  left: 50%;
  transform: translateX(-50%);

  /* Mobile-first width */
  width: 100%;
}

/* Desktop enhancement */
@media (min-width: 900px){
  .duo-portrait{
    grid-template-columns: 1fr 1fr;
    gap: 20px;                 /* tighter gap */
    width: min(1400px, 98vw);  /* larger presence */
    align-items: start;
  }
}

/* Images */
.duo-portrait__item img{
  width: 100%;
  height: auto;
  display: block;
}

/* Optional editorial offset (desktop only) */
@media (min-width: 900px){
  .duo-portrait--offset .duo-portrait__item:first-child{
    transform: translateX(-14px);
  }
  .duo-portrait--offset .duo-portrait__item:last-child{
    transform: translateX(14px);
  }
}


/* ==========================================================================
   FACTBOXES (clean, sans, uppercase headings)
   ========================================================================== */
.factboxes{
  margin: 64px 0;
}

.factbox-wrap{
  margin: 1.5rem 0;
  position: relative;
}

.factbox-toggle__input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.factbox{
  background: rgba(0,0,0,.035);
  padding: 24px 26px 22px 26px;
  margin: 0 0 22px 0;
}

.factbox__kicker{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #ff5073;
  margin: 0 0 10px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.factbox h3{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.15;
  margin: 0 0 14px 0;
  color: #111;
}

.factbox__body{
  position: relative;
}

.factbox__body p{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 .8em 0;
  color: rgba(0,0,0,.86);
}

.factbox__body ul{
  margin: 0 0 .9em 1.1em;
  padding: 0;
}

.factbox__body li{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 .35em 0;
  color: rgba(0,0,0,.86);
}

.factbox__body p.factbox__sources{
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  color: rgba(0,0,0,.55);
}

.factbox-toggle__input:not(:checked) + .factbox .factbox__body{
  max-height: 120px;
  overflow: hidden;
}

.factbox-toggle__input:not(:checked) + .factbox .factbox__body::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height: 90px;
  background: linear-gradient(to bottom, rgba(245,245,245,0), rgba(245,245,245,1));
  pointer-events:none;
}

.factbox-toggle{
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  margin-top: 6px;
  background: linear-gradient(to bottom, rgba(245,245,245,0), rgba(245,245,245,1));
}

.factbox-toggle__chevron{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:grid;
  place-items:center;
}

.factbox-toggle__chevron::before{
  content:"";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0,0,0,.28);
  border-bottom: 2px solid rgba(0,0,0,.28);
  transform: rotate(45deg);
  transition: transform .18s ease;
}

.factbox-toggle__input:checked + .factbox .factbox-toggle{
  background: transparent;
}

.factbox-toggle__input:checked + .factbox .factbox-toggle__chevron::before{
  transform: rotate(-135deg);
}

/* ==========================================================================
   PHONE
   ========================================================================== */

/* PHONE WRAPPER */
.phone {
  width: min(360px, 92vw);
  height: min(720px, 88vh);
  margin: 0 auto;

  background: #0f0f10;
  border-radius: 44px;
  padding: 14px;
  position: relative;

  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
  overflow: hidden;
}

/* NOTCH */
.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 20px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}

/* SCREEN = scroll container */
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background: #fff;

  overflow-y: auto;
  overflow-x: hidden;

  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;

  scrollbar-width: none;
  -ms-overflow-style: none;

  position: relative;
}

.phone__screen::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

/* CONTENT IMAGE */
.phone__content {
  width: 100%;
  height: auto;
  display: block;
}

/* --- SCROLL HINT: fade overlay --- */
.phone__screen::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 76px;
  pointer-events: none;
  z-index: 4;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.55) 55%,
    rgba(255,255,255,1) 100%
  );

  transition: opacity .75s cubic-bezier(.2,.8,.2,1) .12s;
}

/* --- SCROLL HINT: chevron --- */
.phone__screen::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0,0,0,0.35);
  border-bottom: 2px solid rgba(0,0,0,0.35);
  pointer-events: none;
  z-index: 6;

  animation: phoneScrollHint 1.6s ease-in-out infinite;
  transition: opacity .75s cubic-bezier(.2,.8,.2,1) .25s;
}

@keyframes phoneScrollHint {
  0%   { transform: translateX(-50%) translateY(0) rotate(45deg); opacity: 0.25; }
  50%  { transform: translateX(-50%) translateY(6px) rotate(45deg); opacity: 0.65; }
  100% { transform: translateX(-50%) translateY(0) rotate(45deg); opacity: 0.25; }
}

.phone__screen.is-scrolled::before,
.phone__screen.is-scrolled::after {
  opacity: 0;
}

.phone__screen.hint-off::before {
  animation: none;
}

/* ==========================================================================
   STICKER FACTBOX (clean label look + vertical kicker)
   ========================================================================== */

.prose .sticker-label{
  position: relative;
  max-width: 820px;
  margin: 28px auto;

  padding: 28px 54px 40px 74px;

  background: #fff;
  color: #111;

  border: 1px solid rgba(0,0,0,0.70);
  border-radius: 18px;

  box-shadow:
    0 14px 26px rgba(0,0,0,0.14),
    0 2px 0 rgba(0,0,0,0.08);

  overflow: hidden;
}

.prose .sticker-label::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 24px;

  background: linear-gradient(180deg, #ff46c7, #b85bff);
  box-shadow: inset -0px 0 0 rgba(255,255,255,0.35);
}

.prose .sticker-label__kicker{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  writing-mode: vertical-rl;
  transform: rotate(180deg);

  user-select: none;
  pointer-events: none;
}

.prose .sticker-label,
.prose .sticker-label *{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
}

.prose .sticker-label__barcode{
  display: block;
  height: 54px;

  width: 75%;
  max-width: 650px;
  min-width: 0;

  margin: 0 0 28px;

  background: repeating-linear-gradient(
    90deg,
    #111 0px,  #111 1px,
    transparent 1px, transparent 2px,

    #111 2px,  #111 4px,
    transparent 4px, transparent 5px,

    #111 5px,  #111 6px,
    transparent 6px, transparent 8px,

    #111 8px,  #111 9px,
    transparent 9px, transparent 10px,

    #111 10px, #111 13px,
    transparent 13px, transparent 14px,

    #111 14px, #111 15px,
    transparent 15px, transparent 17px,

    #111 17px, #111 20px,
    transparent 20px, transparent 21px,

    #111 21px, #111 22px,
    transparent 22px, transparent 24px,

    #111 24px, #111 28px,
    transparent 28px, transparent 29px,

    #111 29px, #111 30px,
    transparent 30px, transparent 32px,

    #111 32px, #111 34px,
    transparent 34px, transparent 36px
  );

  background-size: 140px 100%;
  background-repeat: repeat-x;

  padding: 0 8px;
  background-clip: content-box;

  border-radius: 0;
  filter: contrast(1.15);
}

@media (max-width: 639px){
  .prose .sticker-label{
    /* top | right | bottom | left */
    padding: 22px 18px 28px 46px; /* 24px strip + ~22px breathing room */
  }

  .prose .sticker-label__barcode{
    width: 100%;
    max-width: none;
  }
}

.prose .sticker-label__title{
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.prose .sticker-label__text p{
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

.prose .sticker-label__text p:last-child{
  margin-bottom: 0;
}

.prose .sticker-label__source{
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  color: rgba(0,0,0,0.72);
}

/* ==========================================================================
   MOBILE OVERFLOW FIXES (MOST IMPORTANT)
   ========================================================================== */

/* Stop accidental horizontal scrolling from breakout transforms */
html, body{
  max-width: 100%;
  overflow-x: clip; /* modern */
}
@supports not (overflow-x: clip){
  html, body{ overflow-x: hidden; }
}

/* Media safety */
img, svg, video{
  max-width: 100%;
  height: auto;
}

/* Disable breakout centering on small screens (prevents viewport break) */
@media (max-width: 700px){
  .inline-image,
  .duo-portrait{
    width: 100%;
    position: static;
    left: auto;
    transform: none;
    margin: 32px 0;
  }

  .duo-portrait{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .duo-portrait--offset .duo-portrait__item{
    transform: none !important;
  }

  
}


.nyt-hero{
  width: 100%;
  overflow-x: clip;
}
@supports not (overflow-x: clip){
  .nyt-hero{ overflow-x: hidden; }
}

/* iOS/modern mobile: avoid 100vh bugs caused by browser UI bars */
@media (max-width: 900px){
  .nyt-hero{
    min-height: 100svh; /* better than 100vh on mobile */
  }

  /* Prevent subpixel overflow from centered absolute masthead */
  .nyt-hero__left{
    overflow: hidden;
  }

  /* Ensure right side behaves as a normal block in stacked layout */
  .nyt-hero__right{
    width: 100%;
  }

  .nyt-hero__image{
    width: 100%;
    height: auto;       /* avoid weird stretching on some devices */
    aspect-ratio: 4 / 3;/* keeps a stable hero frame; adjust if you want */
    object-fit: cover;
  }
}

@media (max-width: 900px){

  /* Let the hero shrink-wrap its content (prevents “big blank area”) */
  .nyt-hero{
    min-height: auto !important;  /* overrides min-height: 100vh */
  }

  /* Don’t force a tall right panel on mobile */
  .nyt-hero__right{
    min-height: auto !important;  /* overrides min-height: 56vh in your current CSS */
  }

  /* Give the image a stable frame and make it COVER that frame */
  .nyt-hero__image{
    width: 100%;
    height: 52vh;                 /* adjust: 46–60vh depending on taste */
    object-fit: cover;
    display: block;

    /* IMPORTANT: if you previously added aspect-ratio somewhere, this neutralizes it */
    aspect-ratio: auto !important;
  }
}


@media (max-width: 900px){
  .nyt-hero__left{
    padding-top: 96px; /* creates space for BØRSEN logo */
  }
}


@media (min-width: 901px){
  .nyt-hero__left{
    display: flex;
    align-items: center;   /* vertical centering */
    justify-content: center;
  }

  .nyt-hero__copy{
    margin-top: 0;         /* ensure no offset creep */
    transform: none;
  }
}


@media (min-width: 901px){
  .nyt-hero__left{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Optical correction: bias upward */
  .nyt-hero__copy{
    transform: translateY(-35%);
  }
}


.read-progress{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 9999;
  background: transparent;
  pointer-events: none;
}

.read-progress__bar{
  height: 100%;
  width: 0%;
  background: linear-gradient(180deg, #ff46c7, #b85bff); /* matches faktaboks */
  transform-origin: left center;
  will-change: width;
}

/* Optional: if you want it slightly thicker on desktop */
@media (min-width: 901px){
  .read-progress{ height: 5px; }
}
/* ==========================================================================
   FACTBOX – STICKER VARIANT (MED FOLD)
   ========================================================================== */

.prose .factbox.factbox--sticker{
  position: relative;
  background: #fff;
  color: #111;

  border: 1px solid rgba(0,0,0,.7);
  border-radius: 18px;

  box-shadow:
    0 14px 26px rgba(0,0,0,.14),
    0 2px 0 rgba(0,0,0,.08);

  padding: 28px 54px 40px 74px;
  overflow: hidden;
}

/* Venstre farvestribe */
.prose .factbox.factbox--sticker::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 100%;
  background: linear-gradient(180deg, #ff46c7, #b85bff);
}

/* --------------------------------------------------------------------------
   KICKER – SAN SERIF (VIGTIG DEL)
   -------------------------------------------------------------------------- */

.prose .factbox.factbox--sticker .factbox__kicker{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 24px;

  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;

  /* 👇 DETTE ER FIXET */
  font-family: ui-sans-serif, system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;

  color: #fff;

  writing-mode: vertical-rl;
  transform: rotate(180deg);

  margin: 0;
  background: none;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   TITEL + TEKST
   -------------------------------------------------------------------------- */

.prose .factbox.factbox--sticker h3{
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
}

.prose .factbox.factbox--sticker .factbox__body p,
.prose .factbox.factbox--sticker .factbox__body li{
  font-size: 15px;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   FOLD – GENBRUGER DIN EKSISTERENDE CHECKBOX-LOGIK
   -------------------------------------------------------------------------- */

.factbox-toggle__input:not(:checked)
+ .factbox.factbox--sticker
.factbox__body::after{
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    rgba(255,255,255,1)
  );
}

.factbox-toggle__input:not(:checked)
+ .factbox.factbox--sticker
.factbox-toggle{
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    rgba(255,255,255,1)
  );
}

/* --------------------------------------------------------------------------
   MOBIL
   -------------------------------------------------------------------------- */

@media (max-width: 640px){
  .prose .factbox.factbox--sticker{
    padding: 22px 18px 36px 46px;
  }
}

/* ==========================================================================
   OVERRIDES – HERO SAFETY (prevents headline colliding with masthead logo)
   ========================================================================== */

/* Reserve space for the absolutely-positioned masthead */
.nyt-hero__left{
  padding-top: clamp(72px, 10vh, 120px);
}

/* Reduce aggressive optical lift that can cause collisions at some sizes */
@media (min-width: 901px){
  .nyt-hero__copy{
    transform: translateY(-10%);
  }
}
