/* ══════════════════════════════════════════════════════════════════════════
   LANDINGS PAR VILLE — design fidèle aux maquettes (Paris / Lyon)

   Hero centré grand titre, cards blanches à pastille colorée, badges pilule,
   CTA gradient violet. Utilisé par city-landing.ejs et business-city-landing.ejs
   via le wrapper .wr-lp.
   ══════════════════════════════════════════════════════════════════════════ */

.wr-lp {
  --lp-ink: #1E1B2E;
  --lp-ink-2: #374151;
  --lp-muted: #6B7280;
  --lp-muted-2: #9CA3AF;
  --lp-violet: #8A63C1;
  --lp-violet-d: #6B47A6;
  --lp-violet-soft: #F2EDFA;
  --lp-line: #EEF1F7;
  --lp-bg: #FBFCFE;
  background: var(--lp-bg);
  width: 100%;
  max-width: 100%;
}
.wr-lp * { box-sizing: border-box; }
.wr-lp__wrap { max-width: 1100px; width: 100%; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
@media (max-width: 720px) { .wr-lp__wrap { padding: 0 16px; } }

/* ── HERO ── */
.wr-lp-hero { position: relative; padding: 56px 0 44px; overflow: hidden; text-align: center; }
.wr-lp-hero::before,
.wr-lp-hero::after {
  content: ""; position: absolute; width: 400px; height: 400px; pointer-events: none;
  background: radial-gradient(circle, rgba(138,99,192,.13), transparent 65%);
  filter: blur(46px);
}
.wr-lp-hero::before { top: -90px; right: -40px; }
.wr-lp-hero::after { bottom: -120px; left: -60px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(138,99,192,.1), transparent 65%); }
.wr-lp-hero__inner { position: relative; max-width: 760px; margin: 0 auto; }
.wr-lp-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--lp-violet-soft); color: var(--lp-violet-d);
  text-transform: uppercase; font-size: 11px; font-weight: 700; letter-spacing: .12em;
  padding: 7px 15px; border-radius: 100px; margin-bottom: 22px;
}
.wr-lp-hero__title {
  margin: 0 0 16px; font-size: 52px; line-height: 1.06; font-weight: 800;
  letter-spacing: -.03em; color: var(--lp-ink);
  overflow-wrap: break-word; word-break: normal;
}
.wr-lp-hero__title em { font-style: normal; color: var(--lp-violet); }
.wr-lp-hero__lede { margin: 0 auto 26px; max-width: 560px; font-size: 16px; line-height: 1.55; color: var(--lp-ink-2); }
@media (max-width: 980px) { .wr-lp-hero__title { font-size: 40px; } }
@media (max-width: 720px) { .wr-lp-hero__title { font-size: 32px; } }

/* Stats */
.wr-lp-stats { display: flex; justify-content: center; gap: 34px; margin: 0 0 30px; }
.wr-lp-stat__num { font-size: 26px; font-weight: 800; letter-spacing: -.03em; color: var(--lp-violet); }
.wr-lp-stat__label { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--lp-muted-2); }
.wr-lp-stats__sep { width: 1px; background: var(--lp-line); }

/* CTA hero */
.wr-lp-hero__cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.wr-lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 12px; font-size: 14px; font-weight: 700;
  cursor: pointer; border: 1px solid transparent; text-decoration: none; transition: all .12s ease;
}
.wr-lp-btn--primary { background: var(--lp-violet); color: #fff; box-shadow: 0 4px 14px rgba(138,99,193,.32); }
.wr-lp-btn--primary:hover { background: var(--lp-violet-d); color: #fff; }
.wr-lp-btn--ghost { background: #fff; color: var(--lp-ink); border-color: #E5E7EB; }
.wr-lp-btn--ghost:hover { border-color: #D9CEF0; color: var(--lp-violet-d); }
.wr-lp-btn--light { background: #fff; color: var(--lp-violet-d); }
.wr-lp-btn--light:hover { background: #F8F4FD; }

/* ── SECTIONS ── */
.wr-lp-sec { padding: 8px 0 40px; }
.wr-lp-sechead { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; gap: 16px; }
.wr-lp-sectitle { margin: 0; font-size: 24px; font-weight: 800; letter-spacing: -.025em; color: var(--lp-ink); }
.wr-lp-seelink { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--lp-violet); text-decoration: none; white-space: nowrap; }
.wr-lp-secsub { margin: -8px 0 18px; font-size: 15px; color: var(--lp-ink-2); }

/* Grille d'items (offres) */
.wr-lp-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 720px) { .wr-lp-grid2 { grid-template-columns: 1fr; } }

/* Card ligne (offre) : pastille lettre + texte + badge */
.wr-lp-row {
  display: flex; align-items: center; gap: 12px; background: #fff;
  border: 1px solid var(--lp-line); border-radius: 14px; padding: 14px 16px;
  box-shadow: 0 0 16px rgba(0,0,0,.03); text-decoration: none;
  transition: border-color .12s ease, transform .1s ease;
}
.wr-lp-row:hover { border-color: #D9CEF0; transform: translateY(-2px); }
.wr-lp-badgeletter {
  width: 48px; height: 48px; border-radius: 12px; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
}
.wr-lp-row__body { flex: 1; min-width: 0; }
.wr-lp-row__title { display: block; font-size: 14.5px; font-weight: 700; color: var(--lp-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wr-lp-row__sub { display: block; font-size: 12px; color: var(--lp-muted); margin-top: 2px; }
.wr-lp-pill { background: var(--lp-violet-soft); color: var(--lp-violet); font-size: 11.5px; font-weight: 600; padding: 5px 9px; border-radius: 100px; flex: none; white-space: nowrap; }

/* Grille entreprises (cards centrées) */
.wr-lp-grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) { .wr-lp-grid4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .wr-lp-grid4 { grid-template-columns: 1fr; } }
.wr-lp-ccard {
  background: #fff; border: 1px solid var(--lp-line); border-radius: 16px;
  padding: 18px; text-align: center; text-decoration: none;
  transition: border-color .12s ease, transform .1s ease; display: block;
}
.wr-lp-ccard:hover { border-color: #D9CEF0; transform: translateY(-2px); }
.wr-lp-ccard__logo { width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; overflow: hidden; }
.wr-lp-ccard__logo img { width: 100%; height: 100%; object-fit: cover; }
.wr-lp-ccard__name { font-size: 14px; font-weight: 700; color: var(--lp-ink); }
.wr-lp-ccard__meta { font-size: 11.5px; color: var(--lp-muted); margin: 2px 0 8px; }

/* Card candidat anonyme (Lyon) : pastille initiale + poste/ville + badge */
.wr-lp-cand {
  display: flex; align-items: center; gap: 12px; background: #fff;
  border: 1px solid var(--lp-line); border-radius: 14px; padding: 14px 16px;
}
.wr-lp-cand__av {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
}
.wr-lp-cand__body { flex: 1; min-width: 0; }
.wr-lp-cand__title { display: block; font-size: 14px; font-weight: 700; color: var(--lp-ink); }
.wr-lp-cand__sub { display: block; font-size: 12px; color: var(--lp-muted); margin-top: 2px; }
.wr-lp-cand__skills { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
.wr-lp-cand__skill { font-size: 11px; font-weight: 600; color: #475569; background: #F1F5F9; padding: 3px 9px; border-radius: 100px; }
.wr-lp-cand__badge { background: #D1FAE5; color: #047857; font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: 100px; flex: none; }

/* Bloc inscription (Paris) */
.wr-lp-signup {
  background: linear-gradient(135deg, #F7F3FD, #FBF9FE); border: 1px solid #E8DFFF;
  border-radius: 24px; padding: 36px; display: grid; grid-template-columns: 1fr 380px; gap: 36px; align-items: center;
}
@media (max-width: 860px) { .wr-lp-signup { grid-template-columns: 1fr; } }
.wr-lp-signup__badge { display: inline-flex; align-items: center; gap: 7px; background: #fff; color: var(--lp-violet-d); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 6px 13px; border-radius: 100px; margin-bottom: 16px; }
.wr-lp-signup__title { margin: 0 0 12px; font-size: 30px; line-height: 1.12; font-weight: 800; letter-spacing: -.03em; color: var(--lp-ink); }
.wr-lp-signup__text { margin: 0 0 20px; font-size: 14.5px; line-height: 1.6; color: var(--lp-ink-2); }
.wr-lp-checks { display: flex; flex-direction: column; gap: 12px; }
.wr-lp-check { display: flex; align-items: center; gap: 12px; font-size: 13.5px; font-weight: 500; color: var(--lp-ink-2); }
.wr-lp-check__icon { width: 32px; height: 32px; border-radius: 9px; background: #fff; display: flex; align-items: center; justify-content: center; flex: none; color: var(--lp-violet); }
.wr-lp-signup__card { background: #fff; border: 1px solid var(--lp-line); border-radius: 18px; padding: 24px; box-shadow: 0 12px 32px -14px rgba(138,99,192,.25); }

/* Éditorial */
/* L'éditorial garde une largeur de lecture confortable, mais reste ALIGNÉ à
   gauche comme les autres blocs (un `margin: 0 auto` le centrait, ce qui le
   décalait visiblement par rapport au hero et aux autres sections). */
.wr-lp-editorial { max-width: 820px; }
.wr-lp-editorial h2 { margin: 0 0 14px; font-size: 24px; font-weight: 800; letter-spacing: -.025em; color: var(--lp-ink); }
.wr-lp-editorial p { margin: 0 0 14px; font-size: 14.5px; line-height: 1.7; color: var(--lp-ink-2); }
.wr-lp-editorial a { color: var(--lp-violet); }

/* CTA final gradient */
.wr-lp-final { background: linear-gradient(135deg, #8A63C0, #9D7BCC); border-radius: 26px; padding: 40px; box-shadow: 0 20px 50px -14px rgba(138,99,192,.4); }
.wr-lp-final__head { text-align: center; margin-bottom: 18px; }
.wr-lp-final__head h2 { margin: 0; font-size: 28px; font-weight: 800; letter-spacing: -.03em; color: #fff; }
.wr-lp-final__head p { margin: 8px 0 0; font-size: 15px; color: rgba(255,255,255,.9); }
.wr-lp-final__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .wr-lp-final__cards { grid-template-columns: 1fr; } }
.wr-lp-final__card { background: #fff; border-radius: 16px; padding: 24px; }
.wr-lp-final__role { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--lp-violet); margin-bottom: 6px; }
.wr-lp-final__card h3 { margin: 0 0 14px; font-size: 18px; font-weight: 800; color: var(--lp-ink); }
.wr-lp-final__card .wr-lp-btn { width: 100%; }

/* CTA final simple (une seule colonne, entreprise) */
.wr-lp-final--single { text-align: center; }
.wr-lp-final--single h2 { margin: 0 0 10px; font-size: 27px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.wr-lp-final--single p { margin: 0 0 22px; font-size: 15px; color: rgba(255,255,255,.9); }

.wr-lp-empty { text-align: center; padding: 30px 16px; color: var(--lp-muted); font-size: 14px; }

/* Bouton violet clair (visible sur fond blanc — carte CTA recruteur) */
.wr-lp-btn--soft { background: var(--lp-violet-soft); color: var(--lp-violet-d); }
.wr-lp-btn--soft:hover { background: #E9DFF7; color: var(--lp-violet-d); }
.wr-lp-btn--dark { background: #111; color: #fff; }
.wr-lp-btn--dark:hover { background: #000; color: #fff; }

/* ── RECHERCHE LIVE (hero Paris) ── */
.wr-lp-search {
  background: #fff; border-radius: 20px; box-shadow: 0 12px 40px -12px rgba(30,27,46,.16), 0 0 0 1px var(--lp-line);
  padding: 16px; text-align: left; max-width: 640px; margin: 26px auto 0;
}
.wr-lp-search__tabs { display: flex; gap: 8px; margin-bottom: 12px; }
.wr-lp-search__tab {
  flex: 1; border: none; border-radius: 10px; padding: 11px; font-size: 13px; font-weight: 700;
  cursor: pointer; background: #F4F6FB; color: var(--lp-ink-2); font-family: inherit; transition: all .12s ease;
}
.wr-lp-search__tab.is-active { background: var(--lp-violet); color: #fff; }
.wr-lp-search__field {
  display: flex; align-items: center; gap: 11px; background: #F9FAFB;
  border: 1px solid #E5E7EB; border-radius: 12px; padding: 14px 16px;
}
.wr-lp-search__field input { flex: 1; border: none; outline: none; background: transparent; font-size: 15px; color: var(--lp-ink); font-family: inherit; }
.wr-lp-search__count { font-size: 11px; font-weight: 700; color: var(--lp-violet); background: var(--lp-violet-soft); padding: 4px 10px; border-radius: 100px; white-space: nowrap; }
.wr-lp-search__results { margin-top: 10px; max-height: 300px; overflow-y: auto; }
.wr-lp-search__row { display: flex; align-items: center; gap: 12px; padding: 11px 8px; border-radius: 12px; text-decoration: none; }
.wr-lp-search__row:hover { background: #F9FAFB; }
.wr-lp-search__freq { margin: 14px 0 0; font-size: 12.5px; color: var(--lp-muted-2); }
.wr-lp-search__freq b { color: var(--lp-violet); font-weight: 600; cursor: pointer; }
.wr-lp-search__empty { text-align: center; padding: 24px 16px; color: var(--lp-muted-2); font-size: 13px; }

/* ── FORMULAIRE INSCRIPTION (Paris) ── */
.wr-lp-form { display: flex; flex-direction: column; gap: 10px; }
.wr-lp-form__title { margin: 0 0 16px; font-size: 17px; font-weight: 800; color: var(--lp-ink); }
.wr-lp-input {
  width: 100%; background: #FAFBFD; border: 1px solid #E5E9F0; border-radius: 11px;
  padding: 13px 14px; font-size: 13.5px; color: var(--lp-ink); font-family: inherit; outline: none;
}
.wr-lp-input:focus { border-color: var(--lp-violet); }
.wr-lp-form__or { display: flex; align-items: center; gap: 10px; margin: 14px 0; }
.wr-lp-form__or span:first-child, .wr-lp-form__or span:last-child { flex: 1; height: 1px; background: var(--lp-line); }
.wr-lp-form__or em { font-style: normal; font-size: 11px; color: var(--lp-muted-2); }
.wr-lp-gbtn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 9px;
  background: #fff; border: 1px solid #E5E7EB; border-radius: 11px; padding: 11px;
  font-size: 12.5px; font-weight: 600; color: var(--lp-ink); cursor: pointer; text-decoration: none; font-family: inherit;
}
.wr-lp-gbtn:hover { border-color: #D9CEF0; }

/* Breadcrumb (landing entreprise) */
.wr-lp-crumb { display: flex; align-items: center; gap: 8px; padding: 20px 0 0; font-size: 13px; color: var(--lp-muted); }
.wr-lp-crumb a { color: var(--lp-muted); text-decoration: none; }
.wr-lp-crumb a:hover { color: var(--lp-violet); }
.wr-lp-crumb__sep { color: var(--lp-muted-2); }
.wr-lp-crumb__current { color: var(--lp-ink); font-weight: 600; }

/* Autres villes (chips) */
.wr-lp-othercities { display: flex; flex-wrap: wrap; gap: 8px; }
.wr-lp-citychip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--lp-line); border-radius: 100px;
  padding: 8px 15px; font-size: 13.5px; font-weight: 600; color: var(--lp-ink);
  text-decoration: none; transition: border-color .12s ease, color .12s ease;
}
.wr-lp-citychip:hover { border-color: #D9CEF0; color: var(--lp-violet-d); }

/* ── HERO ENTREPRISE : 2 colonnes (contenu + carte formulaire) ── */
.wr-lp-hero--split .wr-lp-hero__inner { max-width: 100%; }
.wr-lp-hero__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 420px); gap: 48px; align-items: center;
  text-align: left;
}
@media (max-width: 980px) { .wr-lp-hero__grid { grid-template-columns: 1fr; gap: 32px; } }
.wr-lp-hero__left { text-align: left; min-width: 0; }
.wr-lp-herocard { min-width: 0; }
.wr-lp-hero--split .wr-lp-hero__title { text-align: left; }
.wr-lp-hero--split .wr-lp-hero__lede { margin-left: 0; text-align: left; }
.wr-lp-hero--split .wr-lp-stats { justify-content: flex-start; }
.wr-lp-hero--split .wr-lp-hero__cta { justify-content: flex-start; margin-bottom: 26px; }

/* Carte formulaire du hero */
.wr-lp-herocard {
  background: #fff; border: 1px solid var(--lp-line); border-radius: 22px;
  padding: 28px; box-shadow: 0 20px 50px -18px rgba(138,99,192,.3);
}
.wr-lp-herocard__title { margin: 0 0 4px; font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: var(--lp-ink); }
.wr-lp-herocard__sub { margin: 0 0 18px; font-size: 13px; color: var(--lp-muted); }
.wr-lp-herocard__pin {
  display: flex; align-items: center; gap: 8px;
  background: #FAFBFD; border: 1px solid #E5E9F0; border-radius: 11px;
  padding: 13px 14px; font-size: 13.5px; color: var(--lp-ink-2); margin-bottom: 10px;
}
.wr-lp-herocard__pin b { color: var(--lp-ink); font-weight: 700; }
.wr-lp-herocard__tag { margin-left: auto; font-size: 11px; color: var(--lp-violet); background: var(--lp-violet-soft); padding: 3px 8px; border-radius: 100px; }

/* Recherches fréquentes : labels cliquables avec emoji */
.wr-lp-freq { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.wr-lp-freq__label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: var(--lp-muted); margin-right: 2px;
}
.wr-lp-freqchip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--lp-line); border-radius: 100px;
  padding: 6px 13px; font-size: 13px; font-weight: 600; color: var(--lp-ink);
  font-family: inherit; cursor: pointer;
  transition: border-color .12s ease, color .12s ease, transform .12s ease;
}
.wr-lp-freqchip:hover {
  border-color: #D9CEF0; color: var(--lp-violet-d); transform: translateY(-1px);
}
.wr-lp-freqchip__ic { font-size: 14px; line-height: 1; }

/* ── Section « Poster une offre » (amorce vers le tunnel) ── */
.wr-lp-postjob {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  gap: 40px; align-items: center;
  background: #fff; border: 1px solid var(--lp-line);
  border-radius: 22px; padding: 34px 36px;
}
@media (max-width: 900px) { .wr-lp-postjob { grid-template-columns: 1fr; gap: 26px; padding: 26px 22px; } }
.wr-lp-postjob__sub { margin: 10px 0 18px; font-size: 15px; line-height: 1.6; color: var(--lp-ink-2); }
.wr-lp-postjob__pts { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.wr-lp-postjob__pts li {
  position: relative; padding-left: 26px;
  font-size: 14px; color: var(--lp-ink-2);
}
.wr-lp-postjob__pts li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #ECFDF5; color: #047857;
  font-size: 11px; font-weight: 800;
  display: grid; place-items: center;
}
.wr-lp-postjob__form {
  background: #FBFCFE; border: 1px solid var(--lp-line);
  border-radius: 18px; padding: 22px;
}
.wr-lp-postjob__label {
  display: block; margin-bottom: 8px;
  font-size: 13px; font-weight: 700; color: var(--lp-ink);
}
.wr-lp-postjob__city {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #E5E9F0; border-radius: 11px;
  padding: 12px 13px; margin-top: 10px; font-size: 13.5px; color: var(--lp-ink-2);
}
.wr-lp-postjob__city b { color: var(--lp-ink); font-weight: 700; }
.wr-lp-postjob__tag {
  margin-left: auto; font-size: 11px; color: var(--lp-violet);
  background: var(--lp-violet-soft); padding: 3px 8px; border-radius: 100px;
}
.wr-lp-postjob__note { margin: 10px 0 0; font-size: 12px; color: var(--lp-muted); text-align: center; }

/* ══════════════════════════════════════════════════════════════════════════
   LA LANDING DANS UNE COLONNE — requêtes de conteneur

   ⚠️  POURQUOI CE BLOC EXISTE.

   Les landings ville étaient rendues en pleine largeur (`fullWidth: true`).
   Elles vivent désormais dans la colonne centrale de la coquille, comme
   toutes les autres pages — avec la sidebar à gauche.

   Or les points de rupture ci-dessus interrogent l'ÉCRAN, pas la colonne :

       @media (max-width: 860px) { .wr-lp-signup { grid-template-columns: 1fr } }

   Sur un écran de 1000 px, la media query ne se déclenche pas — mais la
   colonne, elle, ne fait plus que ~510 px une fois la sidebar déduite
   (264 px + gouttière + marges). Le bloc d'inscription resterait sur deux
   colonnes de 250 px, avec un formulaire dedans.

   `@container` interroge la LARGEUR DISPONIBLE. La landing s'adapte donc à
   la place qu'elle a vraiment, que la sidebar soit dépliée, repliée à 68 px,
   ou absente. Aucun seuil à recalculer si la coquille change.

   ⚠️  ON NE SUPPRIME PAS LES MEDIA QUERIES CI-DESSUS.

   Elles restent le repli des navigateurs sans `@container` (< Chrome 105 /
   Safari 16). Les deux jeux de règles ne font jamais que RÉDUIRE le nombre
   de colonnes : les cumuler ne peut pas produire de mise en page absurde.
   ══════════════════════════════════════════════════════════════════════════ */

.wr-lp {
  container-type: inline-size;
  container-name: lp;
}

@container lp (max-width: 980px) {
  .wr-lp-hero__title { font-size: 40px; }
  .wr-lp-hero__grid { grid-template-columns: 1fr; gap: 32px; }
}

@container lp (max-width: 900px) {
  .wr-lp-grid4 { grid-template-columns: repeat(2, 1fr); }
  .wr-lp-postjob { grid-template-columns: 1fr; gap: 26px; padding: 26px 22px; }
}

@container lp (max-width: 860px) {
  .wr-lp-signup { grid-template-columns: 1fr; }
}

@container lp (max-width: 720px) {
  .wr-lp__wrap { padding: 0 16px; }
  .wr-lp-hero__title { font-size: 32px; }
  .wr-lp-grid2 { grid-template-columns: 1fr; }
}

@container lp (max-width: 640px) {
  .wr-lp-final__cards { grid-template-columns: 1fr; }
}

@container lp (max-width: 520px) {
  .wr-lp-grid4 { grid-template-columns: 1fr; }
}
