/* ------------------------------------------------------------------
   TESTSIEGER 24 — aufgeraeumte, moderne Variante
   Kuehles Off-White, klare Kanten, kleine Radien, klare Signalfarben.
------------------------------------------------------------------- */
:root{
  color-scheme: only light;

  --paper:    #F1F2F4;   /* Hauptseiten-Hintergrund, helles Grau */
  --paper-2:  #E8EAEE;   /* abgesetzte Flaechen */
  --surface:  #FFFFFF;
  --line:     #DDE0E5;
  --line-2:   #EBEDF0;

  --ink:      #14171B;
  --ink-2:    #5C636D;

  --blue:     #1E45D4;
  --blue-2:   #EDF0FE;
  --green:    #12734C;
  --teal:     #2C6A88;
  --amber:    #9A6A12;
  --red:      #D62B22;   /* Rabatt */
  --gold:     #E9A227;   /* Testsieger */
  --sky: #2E93D9;   /* Highlight ausser Konkurrenz */
  --cta:      #1F242C;   /* alle Aktionsbuttons */
  --cta-hover:#343D49;

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body:    "Inter", system-ui, sans-serif;

  --radius:        10px;
  --radius-sm:  6px;
  --radius-pill:  999px;
  --shadow: 0 1px 2px rgba(20,23,27,.06), 0 2px 8px rgba(20,23,27,.04);
  --shadow-lg: 0 4px 16px rgba(22,24,28,.10);

  --track: min(1180px, 92vw);
}

*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
html,body{background:var(--paper);color-scheme:only light;max-width:100%}
body{overflow-x:clip}
body{
  margin:0;background:var(--paper);color:var(--ink);
  font-family:var(--body);font-size:16px;line-height:1.55;
  font-feature-settings:"tnum" 1;
}
a{color:inherit}
img{max-width:100%;display:block}
button{font:inherit;color:inherit}
:focus-visible{outline:2px solid var(--blue);outline-offset:2px;border-radius:4px}

.shell{width:var(--track);margin-inline:auto}
.kicker{
  font-size:.75rem;font-weight:600;letter-spacing:.08em;
  text-transform:uppercase;color:var(--ink-2);margin:0;
}

/* ---------------- Kopfzeile ---------------- */
.header{
  position:sticky;top:0;z-index:30;
  background:rgba(241,242,244,.94);backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.header__inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.75rem 0}
.logo{
  display:flex;align-items:center;gap:.5rem;text-decoration:none;
  font-family:var(--display);font-weight:800;font-size:1.05rem;letter-spacing:-.01em;
}
.logo .dot{
  width:26px;height:26px;border-radius:var(--radius-sm);background:var(--ink);
  display:grid;place-items:center;color:#fff;font-size:.72rem;font-weight:700;
}
.header__right{display:flex;align-items:center;gap:1.25rem}
.search-button{
  display:inline-grid;place-items:center;cursor:pointer;
  width:38px;height:38px;padding:0;
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-sm);
  transition:border-color .16s ease,background .16s ease,color .16s ease;
}
.search-button:hover{border-color:var(--ink-2)}
.search-button[aria-expanded="true"]{background:var(--ink);color:#fff;border-color:var(--ink)}
.search-button svg{width:18px;height:18px;grid-area:1/1}
.search-button .close-icon{display:none}
.search-button[aria-expanded="true"] .search-icon{display:none}
.search-button[aria-expanded="true"] .close-icon{display:block}

.search-row{
  display:grid;grid-template-rows:0fr;
  transition:grid-template-rows .42s cubic-bezier(.22,.72,.24,1);
}
.search-row.is-open{grid-template-rows:1fr}
.search-row__inner{overflow:hidden}
.search-form{
  opacity:0;transform:translateY(-6px);
  transition:opacity .2s ease, transform .34s cubic-bezier(.22,.72,.24,1);
}
.search-row.is-open .search-form{
  opacity:1;transform:none;
  transition:opacity .28s ease .1s, transform .38s cubic-bezier(.22,.72,.24,1) .04s;
}
.search-form{display:flex;gap:.5rem;align-items:center;padding-bottom:.8rem}
.search-form input{
  flex:1;min-width:0;background:var(--surface);color:var(--ink);
  border:1px solid var(--line);border-radius:var(--radius-sm);
  font-family:var(--body);
  /* 16px sind Pflicht: darunter zoomt iOS Safari beim Antippen die Seite hinein
     und kehrt danach nicht mehr in den Ausgangszustand zurueck. */
  font-size:16px;line-height:1.25;
  padding:.6rem .85rem;
  appearance:none;-webkit-appearance:none;
}
.search-form input::-webkit-search-decoration,
.search-form input::-webkit-search-cancel-button{-webkit-appearance:none}
.search-form input::placeholder{color:var(--ink-2)}
/* Fokusring nach innen gelegt – so kann ihn der Aufklapp-Container nicht
   anschneiden und es entsteht keine Ueberbreite. */
.search-form input:focus,
.search-form input:focus-visible{
  outline:none;border-color:var(--blue);
  box-shadow:inset 0 0 0 2px var(--blue);
}
.search-start{
  flex:none;display:grid;place-items:center;width:40px;height:40px;
  background:var(--ink);color:#fff;border:0;border-radius:var(--radius-sm);cursor:pointer;
  transition:background .16s ease;
}
.search-start:hover{background:var(--blue)}
.search-start svg{width:18px;height:18px}

@media (min-width:761px){
  /* Suchfeld steht dauerhaft in der Kopfzeile, kein Ausklappen noetig. */
  .header .shell{display:flex;align-items:center;gap:1.6rem;padding:1rem 0}
  .header__inner{flex:none;padding:0}
  .header__right{display:none}
  .search-row{flex:1;grid-template-rows:1fr}
  .search-row__inner{overflow:visible}
  /* mittig im verbleibenden Raum: gleicher Abstand zu Logo und rechtem Rand */
  .search-form{padding-bottom:0;max-width:528px;margin-inline:auto;opacity:1;transform:none;transition:none}
}

/* ---------------- Hero ---------------- */
.hero{border-bottom:1px solid var(--line);background:var(--surface)}
.hero__inner{padding:1.7rem 0 1.3rem;display:grid;grid-template-columns:1.25fr .75fr;gap:2.5rem;align-items:end}
.hero h1{
  font-family:var(--display);font-weight:800;
  font-size:clamp(2.2rem,5.6vw,3.7rem);line-height:1.03;letter-spacing:-.03em;
  margin:.75rem 0 0;max-width:19ch;
}
.hero h1 em{font-style:normal;color:var(--blue)}
.hero__lead{margin:1rem 0 0;max-width:52ch;font-size:1.02rem;color:var(--ink-2)}
.hero__lead b{font-weight:700;color:var(--ink)}
.trust{
  display:grid;gap:.55rem;list-style:none;padding:1.1rem 1.2rem;margin:0;
  background:var(--paper);border:1px solid var(--line);border-radius:var(--radius);
  font-size:.88rem;
}
.trust li{display:flex;align-items:center;gap:.55rem}
.hero__links{
  display:flex;justify-content:space-between;gap:1rem;
  margin:.7rem 0 0;padding:0 .2rem;
}
.text-link{
  background:none;border:0;padding:0;cursor:pointer;
  font-size:.85rem;font-weight:600;color:var(--ink-2);
  text-decoration:underline;text-underline-offset:3px;
}
.text-link:hover{color:var(--blue)}

/* ---------------- Overlay ---------------- */
.overlay{
  position:fixed;inset:0;z-index:60;display:grid;place-items:center;
  padding:1.2rem;background:rgba(20,23,27,.55);
  opacity:0;visibility:hidden;transition:opacity .22s ease;
}
.overlay[hidden]{display:none}
.overlay.is-open{opacity:1;visibility:visible}
.overlay__box{
  position:relative;
  background:var(--surface);border-radius:var(--radius);
  width:min(560px,100%);max-height:82vh;overflow:auto;
  padding:1.5rem 1.6rem 1.4rem;
  box-shadow:0 18px 50px rgba(20,23,27,.28);
  transform:translateY(14px) scale(.98);
  transition:transform .28s cubic-bezier(.25,.8,.3,1);
}
.overlay.is-open .overlay__box{transform:none}
.overlay__box:not(.overlay__box--departure) h3{
  font-family:var(--display);font-weight:700;font-size:1.25rem;
  letter-spacing:-.02em;margin:0 2.2rem .7rem 0;
}
.overlay__box:not(.overlay__box--departure) p{margin:0 0 .8rem;font-size:.94rem;color:var(--ink-2)}
.overlay__box:not(.overlay__box--departure) p:last-of-type{margin-bottom:0}
.overlay__close{
  position:absolute;top:.75rem;right:.75rem;
  width:34px;height:34px;border-radius:var(--radius-sm);cursor:pointer;
  background:var(--paper-2);border:0;color:var(--ink);font-size:1rem;line-height:1;
}
.overlay__close:hover{background:var(--line)}
.overlay__list{margin:0;padding-left:1.15rem;font-size:.94rem;color:var(--ink-2)}
.overlay__list li{margin-bottom:.5rem}
.overlay__list li:last-child{margin-bottom:0}
.trust .check{color:var(--green);font-weight:700;flex:none}
@media (max-width:860px){
  .hero__inner{grid-template-columns:1fr;gap:1.6rem;padding:1.3rem 0 1rem}
}

/* ---------------- Liste ---------------- */
/* Eigene Flaeche: hebt die weissen Produktboxen ab, ohne dunkel zu wirken. */
.results-zone{
  background:var(--paper);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:.3rem 0 2rem;
}
.list{padding:1.1rem 0 1rem;display:grid;gap:1.15rem;overflow:visible}
/* --- Karte --- */
.card{
  position:relative;background:var(--surface);
  border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);overflow:visible;
  display:grid;
  grid-template-columns:180px 1fr 148px 172px;
  grid-template-areas:
    "photo info grade purchase"
    "toggle toggle toggle toggle";
  column-gap:1.3rem;row-gap:.8rem;align-items:stretch;
  padding:1.2rem 1.4rem;
  transition:border-color .16s ease,box-shadow .16s ease;
}
.card:hover{border-color:#BFC5CE;box-shadow:var(--shadow-lg)}
.card--gold{border-color:var(--gold)}
.card--blue{border-color:var(--blue)}
.card--sky{border-color:var(--sky)}


/* Platzierung sitzt als kleines Schild auf der linken Kartenkante –
   gleiche Flucht wie die Fahne, spart eine komplette Rasterspalte. */
.rank{
  position:absolute;left:-13px;top:15px;z-index:4;
  min-width:30px;height:23px;padding:0 .35rem;
  border-radius:4px;background:var(--paper-2);color:var(--ink);
  display:grid;place-items:center;
  font-family:var(--display);font-weight:700;font-size:.9rem;letter-spacing:-.02em;
  box-shadow:0 2px 3px rgba(20,23,27,.18);
}
/* Bei ausgezeichneten Karten sitzt die Fahne oben, das Schild rueckt darunter. */
.card--gold .rank,.card--blue .rank{top:3.35rem}

/* Produktabbildung */
.photo{
  grid-area:photo;margin:0;position:relative;align-self:center;
  aspect-ratio:1;border:1px solid var(--line-2);
  border-radius:var(--radius-sm);overflow:hidden;background:#fff;
}
.photo svg{width:100%;height:100%;display:block}
.discount{
  position:absolute;top:.45rem;left:.45rem;z-index:2;
  background:var(--red);color:#fff;border-radius:4px;
  font-size:.78rem;font-weight:700;letter-spacing:-.01em;padding:.14rem .42rem;
  box-shadow:0 1px 3px rgba(0,0,0,.18);
}

.info{
  grid-area:info;display:flex;flex-direction:column;justify-content:center;
}
.brand{margin:0;font-size:.78rem;font-weight:600;color:var(--ink-2);letter-spacing:.05em;text-transform:uppercase}
.info h3{
  font-family:var(--display);font-weight:700;
  font-size:1.22rem;line-height:1.25;letter-spacing:-.02em;margin:.15rem 0 .3rem;
  overflow-wrap:break-word;hyphens:auto;text-wrap:pretty;
  /* Umbruch frueher: haelt mindestens 50 px Abstand zum Bewertungsblock. */
  padding-right:50px;
}
.info h3 a{text-decoration:none}
.info h3 a:hover{color:var(--blue)}
/* Der Titel-Link spannt sich unsichtbar ueber die gesamte Karte auf. */
.info h3 a::after{content:"";position:absolute;inset:0;z-index:1}
.card{cursor:pointer}
/* Der Aufklappbereich liegt darueber und bleibt eigenstaendig bedienbar. */
.toggle{position:relative;z-index:2}
.cta{position:relative;z-index:2}
.summary{margin:0 0 .55rem;font-size:.92rem;color:var(--ink-2);max-width:46ch}
.tags{display:flex;flex-wrap:wrap;gap:.35rem;list-style:none;padding:0;margin:0 0 .55rem}
.tags li{
  border:1px solid var(--line);border-radius:var(--radius-pill);
  font-size:.76rem;font-weight:500;color:var(--ink-2);padding:.14rem .6rem;
}

/* --- Live-Hinweis / Sozialbeweis --- */
.live{
  display:flex;align-items:center;gap:.45rem;margin:0;
  font-size:.8rem;font-weight:500;color:var(--ink-2);
}
.live .dot{
  width:7px;height:7px;border-radius:50%;background:var(--red);flex:none;
  animation:pulsen 2.4s ease-in-out infinite;
}
.live b{color:var(--ink);font-weight:700}
@keyframes pulsen{0%,100%{opacity:1}50%{opacity:.3}}

/* --- Bewertungslabel --- */
.grade{
  grid-area:grade;display:flex;flex-direction:column;gap:.4rem;align-self:stretch;
  margin-left:-.75rem;margin-right:.75rem;   /* rueckt den Block nach links */
}
/* Kleiner Infoknopf unten rechts im farbigen Notenblock.
   Liegt ueber der Klickflaeche der Karte, damit er eigenstaendig reagiert. */
.grade__header{position:relative}
.info-button{
  position:absolute;right:.32rem;bottom:.3rem;z-index:2;
  width:15px;height:15px;padding:0;border-radius:50%;cursor:pointer;
  background:rgba(255,255,255,.22);border:1px solid rgba(255,255,255,.5);color:#fff;
  font-family:var(--display);font-size:.6rem;font-weight:700;line-height:1;
  display:grid;place-items:center;
  transition:background .16s ease,color .16s ease;
}
.info-button:hover{background:#fff;color:var(--color);border-color:#fff}

/* Testnote: invertiert, farbiger Grund mit weisser Schrift */
.grade__header{
  background:var(--color);color:#fff;border-radius:var(--radius-sm);
  padding:.6rem .5rem .68rem;text-align:center;
  display:flex;flex-direction:column;align-items:center;justify-content:center;flex:1;
}
.grade__label{
  font-size:.62rem;font-weight:600;letter-spacing:.09em;
  text-transform:uppercase;color:rgba(255,255,255,.78);
}
.grade__value{
  font-family:var(--display);font-weight:800;font-size:2.2rem;line-height:1;
  letter-spacing:-.045em;margin:.1rem 0 .32rem;
}
.grade__value--text{
  font-size:1.05rem;line-height:1.22;letter-spacing:-.01em;
  margin:.2rem 0 .34rem;
}
.grade .verdict{
  background:rgba(255,255,255,.2);border-radius:var(--radius-pill);
  font-size:.65rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  padding:.12rem .55rem;
}
.grade--excellent{--color:var(--green)}
.grade--good{--color:var(--teal)}
.grade--fair{--color:var(--amber)}
.grade--highlight{--color:var(--sky)}

/* Kundenbewertung: klar abgesetzter zweiter Block */
.customer-rating{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-sm);
  padding:.45rem .35rem .5rem;display:grid;justify-items:center;gap:.02rem;text-align:center;
}
.stars{
  position:relative;display:inline-block;white-space:nowrap;
  font-size:.86rem;letter-spacing:.03em;color:#DCE0E6;line-height:1.1;
}
.stars::before{content:"\2605\2605\2605\2605\2605"}
.stars>span{position:absolute;top:0;left:0;overflow:hidden;width:var(--fill);color:#F5A524}
.customer-rating__value{font-size:.74rem;font-weight:700}
.customer-rating__count{font-size:.66rem;color:var(--ink-2);line-height:1.25}
.customer-rating__source{font-size:.62rem;color:var(--ink-2)}

/* --- Preis & Aktion --- */
.purchase{grid-area:purchase;display:grid;gap:.45rem;align-content:center;text-align:right}
/* Preis steht hier bewusst nicht – nur ein Aktionshinweis, wenn reduziert. */
.promo{
  margin:0;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:.35rem .5rem;
}
.promo__text{
  background:var(--red);color:#fff;border-radius:4px;
  padding:.32rem .55rem;font-size:.79rem;font-weight:700;line-height:1.3;
}
.promo__msrp{color:var(--ink-2);text-decoration:line-through;font-size:.84rem}
.price-info{margin:0;font-size:.72rem;color:var(--ink-2)}
.cta{
  margin-top:.25rem;display:block;text-decoration:none;text-align:center;
  background:var(--cta);color:#fff;border-radius:var(--radius-sm);
  font-weight:600;font-size:.94rem;padding:.7rem 1.1rem;
  transition:background .16s ease;
}
.cta:hover{background:var(--cta-hover)}

.ribbon{
  position:absolute;top:15px;left:-13px;z-index:4;
  padding:.48rem 1.7rem .48rem 1rem;
  font-size:.9rem;font-weight:700;line-height:1.2;letter-spacing:-.01em;
  filter:drop-shadow(0 2px 3px rgba(20,23,27,.22));
}
.ribbon::before{            /* Fahnentuch mit Einkerbung rechts */
  content:"";position:absolute;inset:0;z-index:-1;background:var(--flag);
  clip-path:polygon(0 0, 100% 0, calc(100% - 15px) 50%, 100% 100%, 0 100%);
}
.ribbon::after{             /* umgeschlagene Ecke hinter der Karte */
  content:"";position:absolute;left:0;top:100%;width:13px;height:11px;z-index:-2;
  background:var(--flag-dark);
  clip-path:polygon(0 0, 100% 0, 100% 100%);
}
.ribbon--gold{--flag:var(--gold);--flag-dark:#B47C10;color:#2E2005}
.ribbon--blue{--flag:var(--blue);--flag-dark:#122E90;color:#fff}
.sponsored{
  position:absolute;top:.55rem;right:.75rem;z-index:3;
  font-size:.64rem;font-weight:500;letter-spacing:.06em;
  text-transform:uppercase;color:var(--ink-2);
}

.ribbon--sky{--flag:var(--sky);--flag-dark:#1B6EA6;color:#fff}
.ribbon--red{--flag:var(--red);--flag-dark:#8E1A14;color:#fff}

/* Platz fuer die Fahne schaffen */
.card--gold,.card--blue,.card--sky{padding-top:3.1rem}

/* --- Aufklappbereich --- */
.toggle{grid-area:toggle;border-top:1px solid var(--line-2);padding-top:.65rem}
.toggle__button{
  display:flex;align-items:center;gap:.5rem;background:none;border:0;cursor:pointer;
  padding:.15rem 0;font-weight:600;font-size:.88rem;color:var(--blue);
}
.toggle__button:hover{color:var(--ink)}
.toggle__button .arrow{
  display:inline-grid;place-items:center;width:22px;height:22px;flex:none;
  border-radius:var(--radius-sm);background:var(--blue-2);transition:transform .22s ease;
}
.toggle__button .arrow svg{width:14px;height:14px}
.toggle__button[aria-expanded="true"] .arrow{transform:rotate(180deg)}
.toggle__button .close{display:none}
.toggle__button[aria-expanded="true"] .open{display:none}
.toggle__button[aria-expanded="true"] .close{display:inline}

.expand{
  display:grid;grid-template-rows:0fr;
  transition:grid-template-rows .52s cubic-bezier(.25,.8,.3,1);
}
.expand.is-open{grid-template-rows:1fr}
.expand__wrap{overflow:hidden}
.expand__inner{
  opacity:0;transform:translateY(-8px);
  transition:opacity .3s ease, transform .45s cubic-bezier(.25,.8,.3,1);
}
.expand.is-open .expand__inner{
  opacity:1;transform:none;
  transition:opacity .4s ease .12s, transform .5s cubic-bezier(.25,.8,.3,1) .06s;
}
.expand__inner{
  display:grid;grid-template-columns:1fr 268px;align-items:start;gap:1.5rem;
  background:#F7F8F9;border:1px solid var(--line-2);border-radius:var(--radius-sm);
  padding:1.15rem 1.3rem;margin-top:.8rem;
}
.expand h4{
  font-family:var(--display);font-weight:700;font-size:.8rem;
  letter-spacing:.06em;text-transform:uppercase;color:var(--ink-2);margin:0 0 .8rem;
}

/* Fuenf Merkmale statt Datentabelle */
.features{list-style:none;margin:0;padding:0;display:grid;gap:.75rem}
.features li{
  position:relative;padding-left:1.55rem;
  font-size:.9rem;line-height:1.45;font-weight:400;color:var(--ink-2);
}
.features li::before{
  content:"";position:absolute;left:0;top:.34rem;width:16px;height:16px;border-radius:50%;
  background:var(--blue-2);
}
.features li::after{
  content:"";position:absolute;left:4.6px;top:.62rem;width:7px;height:4px;
  border-left:2px solid var(--blue);border-bottom:2px solid var(--blue);
  transform:rotate(-45deg);
}

/* Angebotsbox */
.offer{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-sm);
  padding:1rem 1.1rem;align-self:start;
}
.offer__label{
  margin:0;font-size:.7rem;font-weight:700;letter-spacing:.07em;
  text-transform:uppercase;color:var(--ink-2);
}
.offer__shop{margin:.15rem 0 .5rem;font-family:var(--display);font-weight:700;font-size:1.02rem}
.offer__price{margin:0;font-family:var(--display);font-weight:700;font-size:1.75rem;letter-spacing:-.03em;line-height:1.1}
.offer__row:empty{display:none}
.offer__row{margin:.3rem 0 0;display:flex;align-items:center;gap:.45rem;flex-wrap:wrap;font-size:.84rem}
.offer__discount{background:var(--red);color:#fff;border-radius:4px;font-weight:700;font-size:.78rem;padding:.08rem .4rem}
.offer__msrp{color:var(--ink-2);text-decoration:line-through}
.offer__assessment{margin:.3rem 0 0;font-size:.84rem;color:var(--ink-2)}
.offer__assessment .is-good{color:var(--green);font-weight:700}
.offer__assessment .is-neutral{color:var(--ink);font-weight:700}
.offer__savings{margin:.3rem 0 0;font-size:.84rem;font-weight:700;color:var(--red)}
.cta--amazon{margin-top:.85rem}
.offer__footer{margin:.55rem 0 0;font-size:.7rem;color:var(--ink-2);line-height:1.4}

/* ---------------- Exit-Overlay ---------------- */
.overlay__box--departure{width:min(880px,100%);padding:0;overflow:hidden}
.overlay__box--departure .departure__photo{overflow:visible}
.departure{display:grid;grid-template-columns:.82fr 1fr}
.departure__photo{
  position:relative;min-width:0;padding:5.2rem 1.4rem 1.6rem;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;
  border-right:1px solid var(--line);
}
.departure__flag{position:absolute;left:0;z-index:4;font-size:.82rem;padding:.42rem 1.5rem .42rem .85rem}
.departure__flag--winner{top:16px}
.departure__flag--discount{top:56px}
.departure__flag::after{width:9px;height:8px}
.departure__device{width:100%;max-width:230px}
.departure__device svg{width:100%;height:auto;border-radius:var(--radius-sm)}
.departure__shop{margin:0;text-align:center;font-size:.8rem;color:var(--ink-2);line-height:1.35}
.departure__shop b{display:block;font-size:1.05rem;color:var(--ink);letter-spacing:-.02em}
.departure__users{
  display:flex;align-items:center;gap:.75rem;margin:0;
  font-size:.68rem;color:var(--ink-2);line-height:1.45;
}
.departure__users svg{width:52px;height:52px;flex:none;color:var(--ink-2);opacity:.6}
.departure__users b{color:var(--ink)}

.departure__text{background:var(--paper);padding:1.7rem 1.6rem 1.6rem;display:grid;align-content:center;gap:1rem;min-width:0}
.departure__header{
  font-family:var(--display);font-weight:800;
  font-size:clamp(1.6rem,2.9vw,2.08rem);line-height:1.12;letter-spacing:-.03em;
  margin:0;text-align:center;
}
.departure__header em{font-style:normal;color:var(--red);display:block}
.departure__subhead{
  font-family:var(--display);font-weight:700;font-size:1.12rem;line-height:1.25;
  letter-spacing:-.02em;margin:0;text-align:center;
}
.departure__popular{margin:0;text-align:center;font-size:.85rem;color:var(--ink-2)}
.departure__popular b{color:var(--ink)}
.countdown{display:grid;grid-template-columns:repeat(4,1fr);gap:.5rem;margin:0}
.countdown div{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-sm);
  padding:.55rem .2rem .45rem;text-align:center;
}
.countdown b{display:block;font-family:var(--display);font-weight:700;font-size:1.5rem;letter-spacing:-.03em;line-height:1}
.countdown span{font-size:.68rem;color:var(--ink-2)}
.departure__product{margin:0;text-align:center;font-size:.92rem;color:var(--ink-2);min-width:0}
.departure__brand-name{
  display:block;font-size:.78rem;font-weight:600;
  letter-spacing:.05em;text-transform:uppercase;
}
.departure__model{
  display:block;max-width:80%;margin:.1rem auto 0;
  font-weight:700;color:var(--ink);
  /* laenger als eine Zeile wird mit Auslassungszeichen gekuerzt */
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.departure__product b{color:var(--ink)}
.departure .cta{margin-top:0;padding:.85rem 1.2rem;font-size:1rem}
.overlay__box--departure .overlay__close{background:rgba(255,255,255,.85)}
@media (max-width:720px){
  .departure{grid-template-columns:1fr}
  .departure__photo{
    border-right:0;border-bottom:1px solid var(--line);
    flex-direction:row;flex-wrap:wrap;gap:.7rem;padding:4.6rem 1rem 1rem;
  }
  .departure__flag{font-size:.76rem;padding:.36rem 1.3rem .36rem .75rem}
  .departure__flag--winner{top:12px}
  .departure__flag--discount{top:46px}
  .departure__device{max-width:130px;flex:none}
  .departure__shop{flex:1;text-align:left}
  .departure__users{width:100%}
  .departure__text{padding:1.2rem 1.1rem 1.3rem}
  .countdown b{font-size:1.25rem}
}

/* ---------------- Cookie-Hinweis ---------------- */
.consent{
  position:fixed;left:0;right:0;bottom:0;z-index:50;
  background:var(--surface);border-top:1px solid var(--line);
  box-shadow:0 -4px 20px rgba(20,23,27,.12);
}
.consent[hidden]{display:none}
.consent__inner{
  display:flex;align-items:center;justify-content:space-between;gap:1.6rem;
  min-height:78px;padding:.85rem 0;
}
.consent__text{margin:0;font-size:.82rem;line-height:1.5;color:var(--ink-2);max-width:88ch}
.consent__text a{color:var(--ink-2);text-decoration:underline;text-underline-offset:2px}
.consent__text a:hover{color:var(--ink)}
.consent__buttons{display:flex;align-items:center;gap:1rem;flex:none}
.consent__ablehnen{
  background:none;border:0;cursor:pointer;padding:.5rem .2rem;
  font-size:.84rem;color:var(--ink-2);text-decoration:underline;text-underline-offset:3px;
}
.consent__ablehnen:hover{color:var(--ink)}
.consent__ok{
  background:var(--cta);color:#fff;border:0;border-radius:var(--radius-sm);cursor:pointer;
  font-weight:700;font-size:.95rem;padding:.75rem 2.2rem;
  transition:background .16s ease;
}
.consent__ok:hover{background:var(--cta-hover)}
@media (max-width:760px){
  .consent__inner{flex-direction:column;align-items:stretch;gap:.7rem;min-height:0;padding:.8rem 0}
  .consent__text{font-size:.78rem}
  .consent__buttons{justify-content:space-between}
  .consent__ok{flex:1;margin-left:1rem}
}

/* Solange der Cookie-Hinweis steht, rueckt das Produktbanner darueber */
body.has-consent .banner{bottom:calc(78px + 1.2rem)}
@media (max-width:760px){
  body.has-consent .banner{bottom:calc(126px + .8rem)}
}

/* ---------------- Sticky-Banner ---------------- */
.banner{
  position:fixed;left:50%;bottom:1rem;z-index:40;width:min(980px,94vw);translate:-50% 0;
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:0 8px 30px rgba(22,24,28,.16);
  transform:translateY(160%);opacity:0;visibility:hidden;
  transition:transform .3s cubic-bezier(.3,0,.2,1),opacity .22s ease;
}
.banner.is-visible{transform:translateY(0);opacity:1;visibility:visible}
.banner__inner{display:flex;align-items:center;gap:1rem;padding:.7rem .9rem}
.banner__photo{
  width:50px;height:50px;border-radius:var(--radius-sm);flex:none;overflow:hidden;
  border:1px solid var(--line-2);background:#fff;
}
.banner__photo svg{width:100%;height:100%;display:block}
.banner__grade{
  flex:none;background:var(--green);color:#fff;border-radius:var(--radius-sm);
  padding:.35rem .6rem;text-align:center;line-height:1.15;
}
.banner__grade b{font-family:var(--display);font-size:1.15rem;display:block}
.banner__grade span{font-size:.62rem;font-weight:600;text-transform:uppercase;letter-spacing:.04em}
.banner__text{flex:1;min-width:0}
.banner__label{
  display:inline-block;background:var(--gold);color:#2E2005;border-radius:3px;
  font-size:.66rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;padding:.1rem .4rem;
}
.banner__name{font-family:var(--display);font-weight:700;font-size:1rem;display:block;line-height:1.25;margin-top:.1rem}
.banner__meta{font-size:.8rem;color:var(--ink-2);display:flex;align-items:center;gap:.4rem;flex-wrap:wrap}
.banner__msrp{text-decoration:line-through;opacity:.7}
.banner__meta .discount-inline{background:var(--red);color:#fff;border-radius:3px;font-weight:700;font-size:.72rem;padding:0 .3rem}
.banner .cta{flex:none;padding:.7rem 1.4rem}
.banner__close{
  flex:none;width:30px;height:30px;border-radius:var(--radius-sm);cursor:pointer;
  background:var(--paper-2);border:0;color:var(--ink-2);font-size:.9rem;line-height:1;
}
.banner__close:hover{background:var(--line)}
@media (max-width:800px){
  .banner__inner{flex-wrap:wrap;gap:.6rem}
  .banner__photo{display:none}
  .banner__text{order:2;flex-basis:55%}
  .banner__grade{order:1}
  .banner__close{order:3;margin-left:auto}
  .banner .cta{order:4;width:100%}
}

/* ---------------- Fuß ---------------- */
/* ---------------- Kurzinfo zur Produktgruppe ---------------- */
.guide{
  margin:1.8rem 0 0;padding:1.3rem 1.5rem;
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.guide h2{
  font-family:var(--display);font-weight:700;font-size:1.1rem;
  letter-spacing:-.02em;margin:0 0 .7rem;
}
.guide__columns{columns:2;column-gap:2.4rem}
.guide p{
  margin:0 0 .7rem;font-size:.9rem;line-height:1.6;color:var(--ink-2);
  break-inside:avoid;
}
.guide p:last-child{margin-bottom:0}
@media (max-width:760px){
  .guide{padding:1.1rem 1.2rem}
  .guide__columns{columns:1}
  .guide p:first-child{margin-bottom:.7rem}
}

/* ---------------- Weiterführende Informationen ---------------- */
.guide-section{margin:2.2rem 0 0;display:grid;gap:.9rem}
.guide-section h2{
  font-family:var(--display);font-weight:700;font-size:clamp(1.3rem,2.6vw,1.7rem);
  letter-spacing:-.02em;margin:0;
}
.guide-section__lead{margin:-.4rem 0 .3rem;font-size:.9rem;color:var(--ink-2);max-width:80ch}

.spec{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:190px 1fr 240px;
  grid-template-areas:"medien haupt promo";
  column-gap:1.6rem;row-gap:1rem;padding:1.4rem 1.5rem;align-items:start;
}
.spec__media{grid-area:medien;display:grid;gap:.55rem}
.spec__main{grid-area:haupt;min-width:0}
.spec__photo{
  margin:0;aspect-ratio:1;border:1px solid var(--line-2);border-radius:var(--radius-sm);
  overflow:hidden;background:#fff;
}
.spec__photo svg{width:100%;height:100%;display:block}
.spec__thumbs{display:grid;grid-template-columns:repeat(3,1fr);gap:.45rem}
.thumb{
  padding:0;aspect-ratio:1;cursor:pointer;overflow:hidden;background:#fff;
  border:1px solid var(--line);border-radius:var(--radius-sm);
}
.thumb svg{width:100%;height:100%;display:block}
.thumb--active{border-color:var(--blue);box-shadow:0 0 0 1px var(--blue)}
.thumb:hover{border-color:var(--ink-2)}
.thumb--second svg{transform:scaleX(-1)}
.thumb--third svg{transform:scale(1.25) rotate(-6deg)}

.spec__main h3{
  font-family:var(--display);font-weight:700;font-size:1.43rem;line-height:1.25;
  letter-spacing:-.02em;margin:0 0 .7rem;overflow-wrap:break-word;
  hyphens:auto;text-wrap:pretty;
}
.spec__meta{list-style:none;margin:0 0 1.2rem;padding:0;display:grid;gap:.3rem}
.spec__meta li{
  display:flex;align-items:center;gap:.5rem;flex-wrap:wrap;
  font-size:.88rem;color:var(--blue);font-weight:500;
}
.spec__meta .stars{color:#DCE0E6;font-size:.9rem;flex:none}
.rating{display:flex;flex-wrap:wrap;align-items:center;gap:.1rem .45rem;min-width:0}
.rating__grade{display:inline-flex;align-items:center;gap:.45rem;white-space:nowrap}
.rating__count{white-space:nowrap}
.spec__meta .stars>span{color:#F5A524}
.spec__icon{opacity:.75;font-size:.9rem;width:1.1em;text-align:center;flex:none}
.spec__meta .meta__msrp{
  font-size:.84rem;font-weight:400;
  color:var(--ink-2);text-decoration:line-through;
}
.spec__main h4{
  font-family:var(--display);font-weight:700;font-size:.94rem;
  margin:1.3rem 0 .55rem;color:var(--ink);
}
.spec__main h4:first-of-type{margin-top:0}

.specs{margin:0;border:1px solid var(--line-2);border-radius:var(--radius-sm);overflow:hidden}
.specs div{display:flex;justify-content:space-between;gap:1rem;padding:.5rem .8rem;font-size:.88rem}
.specs div:nth-child(odd){background:#F8F9FA}
.specs dt{color:var(--ink-2)}
.specs dd{margin:0;font-weight:600;text-align:right}

.pros{
  list-style:none;margin:0;padding:.8rem .95rem;display:grid;gap:.4rem;
  background:#F1F8F3;border:1px solid #D8E9DE;border-radius:var(--radius-sm);
}
.pros li{
  position:relative;padding-left:1.4rem;font-size:.88rem;font-weight:600;color:var(--green);
}
.pros li::before{
  content:"";position:absolute;left:.15rem;top:.42rem;width:7px;height:4px;
  border-left:2px solid var(--green);border-bottom:2px solid var(--green);
  transform:rotate(-45deg);
}

.faq{
  border-left:3px solid var(--blue);background:#F7F8FA;
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  padding:.7rem .9rem;margin-bottom:.55rem;
}
.faq:last-child{margin-bottom:0}
.faq__frage{margin:0 0 .3rem;font-size:.9rem;font-weight:600;line-height:1.4}
.faq__antwort{margin:0;font-size:.88rem;color:var(--ink-2);line-height:1.55}

.spec__offer{grid-area:promo;align-self:start}

@media (max-width:1000px){
  .spec{grid-template-columns:150px 1fr;grid-template-areas:"medien haupt" "promo promo"}
  .spec__media{grid-area:medien}
  .spec__main{grid-area:haupt}
  .spec__offer{max-width:none}
}
@media (max-width:640px){
  .spec{grid-template-columns:1fr;grid-template-areas:"medien" "haupt" "promo";padding:1.1rem}
  .spec__media{max-width:220px}
  /* Umbruch nach der Note, die Anzahl steht bündig darunter */
  .rating{flex-direction:column;align-items:flex-start;gap:.15rem}
  .rating__count{white-space:normal}
  .rating .divider{display:none}

}

/* ---------------- Themen & Kategorien ---------------- */
.topics{margin:2.4rem 0 0}
.topics h2,.categories h2{
  font-family:var(--display);font-weight:700;font-size:clamp(1.05rem,2.1vw,1.25rem);
  letter-spacing:-.02em;margin:0 0 1rem;
}
.topics__list{
  list-style:none;margin:0;padding:0;
  display:grid;grid-template-columns:repeat(4,1fr);gap:.55rem 1.5rem;
}
.topics__list a{color:var(--blue);text-decoration:none;font-size:.92rem}
.topics__list a:hover{text-decoration:underline}

.categories{margin:2.4rem 0 0}
.categories__grid{display:grid;grid-template-columns:repeat(5,1fr);gap:.9rem}
.tile{
  display:flex;flex-direction:column;text-decoration:none;
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);overflow:hidden;
  transition:border-color .16s ease,box-shadow .16s ease,transform .16s ease;
}
.tile:hover{border-color:#BFC5CE;box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.tile__photo{
  position:relative;display:grid;place-items:center;
  aspect-ratio:1;background:#F5F7F9;color:var(--ink-2);
}
.tile__photo svg{width:52%;height:auto;opacity:.85}
.tile__title{
  position:absolute;left:0;right:0;bottom:0;
  background:rgba(255,255,255,.92);backdrop-filter:blur(2px);
  padding:.4rem .6rem;text-align:center;
  font-family:var(--display);font-weight:700;font-size:.86rem;line-height:1.25;
  color:var(--ink);
}
.tile__sub{
  padding:.55rem .6rem;text-align:center;
  font-size:.78rem;color:var(--ink-2);line-height:1.35;
  border-top:1px solid var(--line-2);
}

@media (max-width:1000px){
  .topics__list{grid-template-columns:repeat(3,1fr)}
  .categories__grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:640px){
  .topics__list{grid-template-columns:repeat(2,1fr);gap:.5rem 1rem}
  .categories__grid{grid-template-columns:repeat(2,1fr);gap:.7rem}
  .tile__title{font-size:.8rem;padding:.35rem .45rem}
  .tile__sub{font-size:.74rem}
}

/* ---------------- Rechtliche Hinweise ---------------- */
.legal{
  margin:1.6rem 0 0;padding:1.3rem 1.4rem;
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-sm);
  font-size:.82rem;line-height:1.6;color:var(--ink-2);
}
.legal h2{
  font-family:var(--display);font-weight:700;font-size:.8rem;
  letter-spacing:.07em;text-transform:uppercase;color:var(--ink);margin:0 0 .7rem;
}
.legal h3{
  font-family:var(--display);font-weight:700;font-size:.86rem;
  color:var(--ink);margin:1.2rem 0 .5rem;
}
.legal p{margin:0 0 .6rem;max-width:100ch}
.legal .star{color:var(--ink);font-weight:700;margin-right:.15rem}
.legal ol{margin:0;padding-left:1.3rem;max-width:100ch}
.legal ol li{margin-bottom:.35rem}
.legal ol li:last-child{margin-bottom:0}

.notice{
  margin:1.4rem 0 0;padding:1rem 1.2rem;border-radius:var(--radius-sm);
  background:var(--surface);border:1px solid var(--line);font-size:.85rem;color:var(--ink-2);max-width:74ch;
}
.footer{background:var(--surface);border-top:1px solid var(--line);padding:1.8rem 0 7rem}
.footer__inner{
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;
}
.footer__links{display:flex;flex-wrap:wrap;gap:.4rem 1.4rem;font-size:.88rem}
.footer__links a,.footer__links .text-link{color:var(--ink-2);text-decoration:none;font-weight:500}
.footer__links a:hover,.footer__links .text-link:hover{color:var(--blue);text-decoration:underline}
.footer__links .text-link{font-size:.88rem;text-decoration:none;text-underline-offset:3px}
.footer .logo{font-size:1.05rem}
.footer__legal{
  margin-top:1.4rem;padding-top:1.1rem;border-top:1px solid var(--line-2);
  text-align:center;font-size:.78rem;color:var(--ink-2);line-height:1.55;
}
.footer__legal p{margin:0 auto;max-width:86ch}
.footer__legal p + p{margin-top:.35rem}
@media (max-width:640px){
  .footer__inner{flex-direction:column-reverse;align-items:flex-start;gap:1rem}
}

/* ---------------- Umbrüche ---------------- */
@media (max-width:900px){
  .expand__inner{grid-template-columns:1fr;gap:1.2rem}
}
@media (max-width:1080px){
  .card{
    grid-template-columns:150px 1fr 144px;
    grid-template-areas:
      "photo info grade"
      "photo purchase grade"
      "toggle toggle toggle";
    align-items:start;
  }
  .grade{align-self:center}
  .purchase{text-align:left}
  .promo{justify-content:flex-start}
}
@media (max-width:760px){
  /* ohne Weichzeichner laeuft die Hoehenanimation der Kopfzeile spuerbar ruhiger */
  .header{backdrop-filter:none;background:var(--paper)}
  .card{
    grid-template-columns:1fr 120px;
    grid-template-areas:
      "photo grade"
      "info info"
      "purchase purchase"
      "toggle toggle";
    padding:1.1rem;column-gap:.8rem;row-gap:.85rem;
  }
  /* Beide Kacheln teilen sich eine Rasterzeile und sind dadurch gleich hoch */
  .photo{width:100%;max-width:132px;aspect-ratio:1;justify-self:center;align-self:start}
  /* Titel steht mobil ueber die volle Breite – kein Reservat noetig */
  .info h3{font-size:1.18rem;padding-right:0}
  .summary{max-width:none}
  .grade{gap:.35rem}
  .grade__header{padding:.45rem .4rem .5rem}
  .grade__value{font-size:1.85rem;margin:.06rem 0 .26rem}
  .grade__value--text{
  font-size:1.05rem;line-height:1.22;letter-spacing:-.01em;
  margin:.2rem 0 .34rem;
}
.grade .verdict{font-size:.6rem;padding:.1rem .45rem}
  .customer-rating{padding:.38rem .3rem .42rem}
  .stars{font-size:.78rem}
  .ribbon{top:12px;left:-10px;font-size:.84rem;padding:.42rem 1.5rem .42rem .85rem}
  .rank{left:-10px;top:12px;min-width:27px;height:21px;font-size:.84rem}
  .card--gold .rank,.card--blue .rank{top:3rem}
  .ribbon::after{width:10px;height:9px}
  .card--gold,.card--blue,.card--sky{padding-top:3.1rem}

  .purchase{text-align:left;gap:.5rem}
  .promo{justify-content:flex-start}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *{animation:none!important;transition:none!important}
}

/* ------------------------------------------------------------------
   CMS row/column scaffolding (app/views/pages/_container_summer26 +
   _column_summer26). The static mockup is a single flowing page with no
   generic multi-column grid system - these two small helper classes exist
   only so a Backend::Element row with more than one column (e.g. an editor
   adding a sidebar block) degrades gracefully instead of stacking without
   any gap/wrap behaviour.
------------------------------------------------------------------- */
.summer26-row{display:flex;flex-wrap:wrap;gap:1.5rem;align-items:flex-start}
.summer26-spalte{flex:1 1 0%;min-width:0}

/* ------------------------------------------------------------------
   "So funktioniert's" Schritt-Erklaerung (app/views/pages/_modern_how_its_working_summer26).
   The static mockup is a single product-listing page and has no 3-up
   icon+copy step row of its own - .wissen only supplies the boxed-surface
   wrapper used elsewhere in the file. These few rules just give that
   existing 3-step content a home inside .wissen, reusing the same
   --paper-2/--blau/--ink-2 tokens as the rest of the design instead of
   introducing new colors.
------------------------------------------------------------------- */
.guide__steps{display:flex;flex-wrap:wrap;justify-content:space-evenly;gap:1.6rem;margin-top:.4rem;text-align:center}
.guide__step{flex:1 1 180px;max-width:240px;color:var(--ink-2);font-size:.9rem;line-height:1.5}
.guide__step-icon{
  width:56px;height:56px;margin:0 auto .6rem;border-radius:var(--radius-pill);
  background:var(--paper-2);color:var(--blue);
  display:flex;align-items:center;justify-content:center;
}
.guide__step-icon svg{width:28px;height:28px}

/* ------------------------------------------------------------------
   Generisches Formular (app/views/pages/_contact_form_summer26). The mockup
   is a product-listing page and has no multi-field form of its own - only
   the single pill-shaped header search (.such-form), which can't be reused
   verbatim (it's opacity:0 by default outside its .such-zeile.ist-offen
   toggle, and its input is styled for one field, not a stacked field grid).
   These rules borrow the same field language (surface/line/blau focus ring,
   16px font to avoid iOS zoom) generalized to a normal block-level field.
------------------------------------------------------------------- */
.form{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);padding:1.6rem 1.8rem;
}
.form__header{text-align:center;margin-bottom:1.4rem}
.form__title{font-family:var(--display);font-weight:700;font-size:1.4rem;letter-spacing:-.02em;margin:0 0 .5rem}
.form__subtitle{color:var(--ink-2);font-size:.94rem;margin:0}
.form__grid{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem}
.form__field{display:flex;flex-direction:column;gap:.35rem}
.form__field--breit{grid-column:1 / -1}
.form__field label{font-size:.82rem;font-weight:600;color:var(--ink-2)}
.form__field input,
.form__field textarea{
  width:100%;background:var(--paper);color:var(--ink);
  border:1px solid var(--line);border-radius:var(--radius-sm);
  font-family:var(--body);font-size:16px;line-height:1.4;
  padding:.65rem .85rem;appearance:none;-webkit-appearance:none;resize:vertical;
}
.form__field input::placeholder,
.form__field textarea::placeholder{color:var(--ink-2)}
.form__field input:focus,
.form__field input:focus-visible,
.form__field textarea:focus,
.form__field textarea:focus-visible{
  outline:none;border-color:var(--blue);box-shadow:inset 0 0 0 2px var(--blue);
}
.form .cta{width:100%;border:0;cursor:pointer;font-size:.95rem}
@media (max-width:640px){
  .form{padding:1.2rem 1.1rem}
  .form__grid{grid-template-columns:1fr}
}

/* ------------------------------------------------------------------
   Newsletter-Formular (app/views/pages/_newsletter_form_summer26). Same
   reasoning as .formular above: the mockup's pill search bar can't be reused
   verbatim, so this is a small standalone variant of the same field language,
   laid out as one inline field + button rather than a stacked grid.
------------------------------------------------------------------- */
.newsletter{
  margin:1.6rem 0;padding:1.4rem 1.6rem;
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;
}
.newsletter__text{
  flex:1 1 240px;font-family:var(--display);font-weight:700;font-size:1.15rem;color:var(--ink);
}
.newsletter__form-wrap{flex:1 1 320px}
.newsletter__error{
  border:1px solid var(--red);background:#FBEAE9;color:var(--red);
  border-radius:var(--radius-sm);padding:.8rem 1rem;font-size:.85rem;margin-bottom:.7rem;
}
.newsletter__notice{display:block;color:var(--ink-2);font-size:.75rem;margin-top:.5rem}
.newsletter-form{display:flex;gap:.6rem;align-items:stretch}
.newsletter-form input{
  flex:1;min-width:0;background:var(--paper);color:var(--ink);
  border:1px solid var(--line);border-radius:var(--radius-sm);
  font-family:var(--body);font-size:16px;line-height:1.25;
  padding:.7rem .9rem;appearance:none;-webkit-appearance:none;
}
.newsletter-form input::placeholder{color:var(--ink-2)}
.newsletter-form input:focus,
.newsletter-form input:focus-visible{
  outline:none;border-color:var(--blue);box-shadow:inset 0 0 0 2px var(--blue);
}
.newsletter-form .cta{flex:none;border:0;cursor:pointer}
@media (max-width:640px){
  .newsletter{padding:1.1rem 1.2rem}
  .newsletter-form{flex-direction:column}
}
.newsletter__success{
  display:flex;align-items:center;gap:.7rem;
  border:1px solid var(--green);background:#EAF6EF;color:var(--green);
  border-radius:var(--radius-sm);padding:.9rem 1rem;font-size:.9rem;
}
.newsletter__success svg{width:22px;height:22px;flex:none}
