/* ── Semantic color tokens — dark theme defaults ─────────────────────────────
   Будь-яка тема-варіант може переоверрайдити ці змінні через :root {}
   Змінні акцент-кольорів (--accent, --accent-light тощо) живуть у css_vars
   що генерується theme_css_vars() у build.nq6ca8g3.
────────────────────────────────────────────────────────────────────────────── */
:root {
  /* фони */
  --bg-page:        #0f1117;
  --bg-surface:     #151929;
  --bg-card:        #1a1f2e;
  --bg-card-inner:  #242938;
  --bg-raised:      #2d3748;
  --bg-hover:       #1e2638;
  /* бордери */
  --border:         #1e2535;
  --border-alt:     #2d3748;
  --border-section: #374151;
  /* текст */
  --text-primary:   #e2e8f0;
  --text-muted:     #94a3b8;
  --text-body:      #cbd5e1;
  --text-sub:       #a0aec0;
  --text-faint:     #6b7280;
  --text-dim:       #4b5563;
  --text-label:     #8892a4;
  --text-value:     #c9d1e0;
  /* семантичні (callout / pros-cons) */
  --bg-tip:         #1a2e1a;
  --bg-warning:     #2d1f0e;
  --bg-info:        #1a1f2e;
  --bg-pros:        #1a2e1a;
  --bg-cons:        #2d1a1a;
}

/* ── reset ───────────────────────────────────────────────────────────────────*/
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.7;
}

/* ── Navbar ──────────────────────────────────────────────────────────────────*/
.oohd8 {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.xblsa {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 62px; display: flex; align-items: center;
  justify-content: space-between; position: relative;
}
.nk5zi7 {
  color: var(--accent-light);
  font-weight: 800; font-size: 1.15rem;
  text-decoration: none; display: flex; align-items: center; gap: 4px;
}
.a42sux { height: 46px; width: auto; max-width: 140px; object-fit: contain; border-radius: 6px; }
.t9aj8v63 { list-style: none; display: flex; column-gap: 20px; row-gap: 6px; flex-wrap: wrap; align-items: center; --msep-color: var(--text-primary); }
.t9aj8v63 a {
  color: var(--text-muted); white-space: nowrap;
  text-decoration: none; font-size: 0.88rem; transition: color 0.2s;
}
.t9aj8v63 a:hover { color: var(--accent-light); }

/* ── Navbar dropdown ─────────────────────────────────────────────────────────*/
.i7vqwdd { position: relative; }
.sqzn2n {
  display: none; position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%);
  background: var(--bg-surface); border: 1px solid var(--border-alt);
  border-radius: 10px; padding: 8px 0; min-width: 190px;
  box-shadow: 0 8px 24px rgba(0,0,0,.45); z-index: 200;
  list-style: none;
}
/* nav_drop_shape */
.maymwx3j   .sqzn2n { border-radius: 0; }
.sf3fqf     .sqzn2n { border-radius: 6px; }
.rbd9jh  .sqzn2n { border-radius: 14px; }
.mmoc     .sqzn2n { border-radius: 24px; padding: 8px; }
/* rounded items to match container shape */
.sf3fqf .sqzn2n li:first-child a { border-top-left-radius: 4px; border-top-right-radius: 4px; }
.sf3fqf .sqzn2n li:last-child a { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; }
.rbd9jh .sqzn2n li:first-child a { border-top-left-radius: 10px; border-top-right-radius: 10px; }
.rbd9jh .sqzn2n li:last-child a { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }
.mmoc .sqzn2n li a { border-radius: 16px; }
/* nav_drop_sep — горизонтальні роздільники між пунктами дропдауну */
.h8xj  .sqzn2n li + li { border-top: 1px solid var(--border-alt); }
.suiuam .sqzn2n li + li { border-top: 1px dashed var(--border-alt); }
.x1f3dlgr .sqzn2n li + li { border-top: 1px dotted var(--border-alt); }
.bc65h7lm .sqzn2n li + li { border-top: 3px double var(--border-alt); }
/* Invisible bridge so mouse can travel from trigger to dropdown without losing hover */
.i7vqwdd::after {
  content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 10px;
}
.i7vqwdd:hover .sqzn2n,
.i7vqwdd:focus-within .sqzn2n { display: block; }
.sqzn2n li a {
  display: block; padding: 8px 18px; white-space: nowrap;
  color: var(--text-muted); font-size: 0.86rem; text-decoration: none;
  transition: color .15s, background .15s;
}
.sqzn2n li a:hover {
  color: var(--accent-light); background: var(--bg-hover);
}
@media (max-width: 640px) {
  .sqzn2n {
    position: static; transform: none; box-shadow: none;
    border: none; border-radius: 0; background: transparent;
    padding: 0 0 4px 16px;
  }
  .i7vqwdd:hover .sqzn2n,
  .i7vqwdd:focus-within .sqzn2n { display: block; }
  .sqzn2n li a { padding: 8px 16px; font-size: 0.88rem; }
}

.xikk {
  display: none; background: none; border: none;
  color: var(--text-muted); font-size: 1.4rem; cursor: pointer; padding: 4px 8px; line-height: 1;
}
.ljcv84f { display: none; }
@media (max-width: 640px) {
  .ljcv84f {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 899; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  }
  .ljcv84f.qz6b { display: block; }
}
@media (max-width: 640px) {
  .xikk { display: block; }
  .t9aj8v63 {
    display: none; flex-direction: column; gap: 0; align-items: stretch; flex-wrap: nowrap;
    position: absolute; top: 56px; left: 0; right: 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border); padding: 8px 0;
  }
  .t9aj8v63.qz6b { display: flex; }
  .t9aj8v63 li a {
    display: block; padding: 11px 24px; font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
  }
  .t9aj8v63 li:last-child a { border-bottom: none; }
}

/* ── Hero: спільні стилі ─────────────────────────────────────────────────────*/
.xih1 { min-height: 480px; }
.xl4o9f {
  font-size: 2.6rem; font-weight: 800; color: var(--accent-pale);
  line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.01em;
}
.ydift5f { font-size: 1.15rem; margin-bottom: 28px; max-width: 720px; margin-left: auto; margin-right: auto; }
.il4qvgh .ydift5f { margin-left: 0; margin-right: 0; }
.w77x {
  background: var(--accent); color: #fff; text-decoration: none;
  border-radius: 8px; padding: 14px 32px;
  font-size: 1.05rem; font-weight: 700; display: inline-block;
  transition: opacity 0.2s, transform 0.15s;
}
.w77x:hover { opacity: 0.88; }

/* ── Hero: BG layout (картинка — повноширокий фон) ───────────────────────────*/
.e6u7 {
  position: relative; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  background-color: var(--bg-surface);
}
.rhj21 {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 50%, var(--accent-bg) 100%);
  opacity: 0.85;
}
/* hero-content — такий самий контейнер як page-wrap (1000px) */
.e6u7 .cnhyd7h {
  position: relative; z-index: 1;
  width: 100%; max-width: 1100px; padding: 48px 24px;
}
.e6u7 .xl4o9f { text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.e6u7 .ydift5f { color: #e2e8f0; }

/* BG alignment — лише text-align в межах 1000px контейнера */
.e6u7.i8nf569d .cnhyd7h { text-align: center; }
.e6u7.il4qvgh   .cnhyd7h { text-align: left; }

/* hero-flat: без фону, просто текст на page bg (WP-style) */
.ahyj {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-page);
  min-height: auto; padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}
.ahyj .cnhyd7h {
  width: 100%; max-width: 1100px; padding: 24px 24px;
}
.ahyj .xl4o9f { color: var(--text-primary); text-shadow: none; }
.ahyj .ydift5f { color: var(--text-muted); }
.ahyj .w77x { margin-top: 16px; }
.ahyj, .ahyj.xih1 { min-height: auto !important; }
.ahyj.i8nf569d .cnhyd7h { text-align: center; }
.ahyj.il4qvgh   .cnhyd7h { text-align: left; }
/* flat hero: byline як звичайний текст, не оверлей */
.ahyj~.xu5pugym{position:static!important;left:auto!important;transform:none!important;width:100%!important;max-width:var(--content-mw,1100px)!important;margin:0 auto!important;padding:0 24px 12px!important}
.ahyj~.xu5pugym .av3zotw{background:transparent!important;color:var(--text-muted)!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important;padding:0!important;border-radius:0!important;font-size:.8rem}

/* bg-color: градієнтний фон замість фото */
.iwuhurf7 {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}
/* hero_anim: shimmer — ледь помітний блиск по поверхні */
.yxrkz2d .iwuhurf7,
.yxrkz2d .co0pn0p {
  position: relative; overflow: hidden;
}
.yxrkz2d .iwuhurf7::after,
.yxrkz2d .co0pn0p::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: hg-shimmer 8s ease-in-out infinite;
}
@keyframes hg-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
/* hero_anim: breathe — ледь помітне дихання opacity */
.jio63z0h .iwuhurf7,
.jio63z0h .co0pn0p {
  animation: hg-breathe 10s ease-in-out infinite;
}
@keyframes hg-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
/* hero_anim: grain — ледь помітна зернистість поверх градієнту */
.jaui5q .iwuhurf7,
.jaui5q .co0pn0p,
.jaui5q .e6u7 .rhj21 {
  position: relative; overflow: hidden;
}
.jaui5q .iwuhurf7::after,
.jaui5q .co0pn0p::after,
.jaui5q .e6u7 .rhj21::after {
  content: ''; position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035; pointer-events: none;
  animation: hg-grain 0.5s steps(1) infinite;
}
@keyframes hg-grain {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(-5%, -5%); }
  50%      { transform: translate(5%, 0); }
  75%      { transform: translate(0, 5%); }
}
/* hero_anim: drift — повільне зміщення розмитого blob */
.nqi10dd4 .iwuhurf7,
.nqi10dd4 .co0pn0p {
  position: relative; overflow: hidden;
}
.nqi10dd4 .iwuhurf7::after,
.nqi10dd4 .co0pn0p::after {
  content: ''; position: absolute;
  width: 60%; height: 120%; top: -10%; left: -10%;
  background: radial-gradient(ellipse, var(--accent-light) 0%, transparent 70%);
  opacity: 0.15; filter: blur(80px); pointer-events: none;
  animation: hg-drift 20s ease-in-out infinite;
}
@keyframes hg-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30%, 10%) scale(1.1); }
  66%      { transform: translate(10%, -10%) scale(0.95); }
}
.nqi10dd4 .e6u7 .rhj21 {
  position: relative; overflow: hidden;
}
.nqi10dd4 .e6u7 .rhj21::after {
  content: ''; position: absolute;
  width: 60%; height: 120%; top: -10%; left: -10%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
  animation: hg-drift 20s ease-in-out infinite;
}
/* hero_anim: fade-in — градієнт з'являється при завантаженні */
.xiv38m .iwuhurf7,
.xiv38m .co0pn0p,
.xiv38m .e6u7 .rhj21 {
  animation: hg-fadein 1.2s ease-out both;
}
@keyframes hg-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* hero-bg з фото — overlay анімації */
.yxrkz2d .e6u7 .rhj21 {
  position: relative; overflow: hidden;
}
.yxrkz2d .e6u7 .rhj21::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: hg-shimmer 8s ease-in-out infinite;
}
.jio63z0h .e6u7 .rhj21 {
  animation: hg-breathe 10s ease-in-out infinite;
}

.iwuhurf7 .rhj21 {
  background: none;
}
.iwuhurf7 .xl4o9f { color: #fff; }
.iwuhurf7 .ydift5f { color: rgba(255,255,255,0.85); }

/* ── Hero anim: split layouts ─────────────────────────────────────────────── */
.yxrkz2d .lj40s { position: relative; overflow: hidden; }
.yxrkz2d .lj40s::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: hg-shimmer 6s ease-in-out infinite;
}
.jio63z0h .lj40s {
  animation: hg-breathe 7s ease-in-out infinite;
}
.jaui5q .lj40s { position: relative; overflow: hidden; }
.jaui5q .lj40s::after {
  content: ''; position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035; pointer-events: none;
  animation: hg-grain 0.5s steps(1) infinite;
}
.nqi10dd4 .lj40s { position: relative; overflow: hidden; }
.nqi10dd4 .lj40s::after {
  content: ''; position: absolute;
  width: 60%; height: 120%; top: -10%; left: -10%;
  background: radial-gradient(ellipse, var(--accent-light) 0%, transparent 70%);
  opacity: 0.12; filter: blur(80px); pointer-events: none;
  animation: hg-drift 20s ease-in-out infinite;
}
.xiv38m .lj40s {
  animation: hg-fadein 1.2s ease-out both;
}


/* ── Hero: Split layout (текст + картинка поряд) ─────────────────────────────*/
.lj40s {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-areas: "text media";
  min-height: 480px;
  background: linear-gradient(110deg, var(--accent-bg) 0%, var(--bg-card) 55%, var(--bg-surface) 100%);
}
.g1fiecwy {
  grid-area: text;
  display: flex; flex-direction: column; justify-content: center;
  /* padding-left вирівняний з page-wrap (max-width 1000px) */
  padding: 60px 48px 60px clamp(24px, calc(50vw - 476px), 96px);
}
.ogejw {
  grid-area: media;
  position: relative; overflow: hidden; min-height: 320px;
}
/* img абсолютний щоб заповнити комірку grid повністю */
.t44bf {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.co0pn0p {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
}
.lj40s .xl4o9f { text-shadow: none; color: var(--accent-pale); }
.lj40s .ydift5f { color: var(--text-muted); }

/* Split alignment — всередині text-колонки */
.lj40s.i8nf569d .g1fiecwy { align-items: center; text-align: center; }
.lj40s.il4qvgh   .g1fiecwy { align-items: flex-start; text-align: left; }

/* split-overlay: картинка на всю половину з gradient overlay, текст може заходити */
.mzcmjp .ogejw { position: relative; }
.mzcmjp .ogejw::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--accent-bg) 0%, transparent 60%);
  pointer-events: none;
}
.mzcmjp.kosn .ogejw::after {
  background: linear-gradient(270deg, var(--accent-bg) 0%, transparent 60%);
}


/* split-rounded: картинка з rounded corners + тінь, не на весь блок */
.brvmq2h9 .ogejw {
  display: flex; align-items: center; justify-content: center;
  padding: 32px 32px 32px 0; overflow: visible;
}
.brvmq2h9 .t44bf {
  position: static; width: 100%; height: auto; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.brvmq2h9 .co0pn0p {
  position: static; width: 100%; aspect-ratio: 4/3; border-radius: 16px;
}
.brvmq2h9.kosn .ogejw { padding: 32px 0 32px 32px; }

/* split-inset: картинка з відступами і тінню, не на весь блок */
.u5kid .ogejw {
  display: flex; align-items: center; justify-content: center;
  padding: 40px 48px 40px 16px;
  overflow: visible;
}
.u5kid .t44bf {
  position: static;
  width: 100%; height: auto; aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.u5kid .co0pn0p {
  position: static;
  width: 100%; aspect-ratio: 4/3;
  border-radius: 16px;
}

/* ── Split reversed: зображення ліворуч, текст праворуч ─────────────────────*/
.kosn { grid-template-areas: "media text"; }

/* флiп padding: тепер права сторона виходить до краю сторінки */
.kosn .g1fiecwy {
  padding: 60px clamp(24px, calc(50vw - 476px), 96px) 60px 48px;
}

/* inset-left: інвертувати padding */
.u5kid.kosn .ogejw { padding: 40px 16px 40px 48px; }

/* ── Hero: split-cards ────────────────────────────────────────────────────── */
.lpfbnb .hiwh {
  display: flex !important; flex-direction: column; justify-content: center;
  gap: 0; padding: 24px 20px;
  background: rgba(0,0,0,0.78); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.d38u {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 22px 20px; text-decoration: none; color: #fff;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.d38u:last-child { border-bottom: none; }
.d38u:hover { background: rgba(255,255,255,0.14); }
.jhv03q { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.g58q452 { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.segu53 { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hiphh { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.t7t5ag { font-size: 0.82rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.caq6d { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.oefst8p2 { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); }
.oefst8p2 small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }
.hp8ol0 { font-size: 0.8rem; padding: 6px 14px; white-space: nowrap; }

/* ── Hero: cards-top ─────────────────────────────────────────────────────── */
.g64f { padding-bottom: 0; }
.g64f .cnhyd7h { padding-bottom: 24px; }
.nw6ac {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  padding: 0 24px 32px; max-width: 960px; margin: 0 auto; width: 100%;
}
.o4t4cw {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 12px 16px;
  flex: 1 1 260px; max-width: 320px;
  text-decoration: none; color: #fff; transition: transform 0.2s, box-shadow 0.2s;
}
.o4t4cw:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
.hvhqmwd1 { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.p682v { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.klryo5bb { font-weight: 700; font-size: 0.9rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hjhx4u { font-size: 0.8rem; color: rgba(255,255,255,0.75); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tfzz { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); flex-shrink: 0; }
.tfzz small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }

/* ── Hero: offer-cards ──────────────────────────────────────────────────── */
.nti0f .n8lf {
  display: flex !important; flex-direction: column; justify-content: center;
  gap: 6px; padding: 28px 24px;
}
.xisjw {
  display: flex; align-items: center; gap: 10px; width: 100%;
  background: var(--bg-card); border: 1px solid var(--border-alt);
  overflow: hidden;
  border-radius: 10px; padding: 10px 16px;
  text-decoration: none; color: var(--text-primary);
  transition: background .15s;
}
.xisjw:hover { background: var(--bg-hover); }

/* ── Hero: floating-cards ────────────────────────────────────────────────── */
.e2jw2vr .ogejw { display: flex !important; align-items: center; justify-content: center; position: relative; }
.ffam {
  display: flex; flex-direction: column; gap: 12px;
  padding: 32px 24px; width: 100%; max-width: 420px;
}
.gfsol {
  display: flex; align-items: center; gap: 14px; width: 100%;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 20px 18px;
  transform: translateX(calc(var(--fi) * 12px));
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.gfsol:hover { transform: translateX(calc(var(--fi) * 12px)) translateY(-2px); }
.jlvgkh { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.y6397ni { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.exx2zu { font-weight: 700; font-size: 0.85rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.f3onp9 { font-size: 0.78rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ept12 { font-weight: 800; font-size: 1.2rem; color: var(--accent-pale); flex-shrink: 0; }

/* ── Hero: numbered-top ──────────────────────────────────────────────────── */
.nkv1 .cnhyd7h { max-width: 960px; }
.vldx {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin: 28px 0 32px;
}
.skf8xx {
  display: flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 10px 16px;
  text-decoration: none; color: #fff; transition: transform 0.2s, background 0.2s;
}
.skf8xx:hover { transform: translateY(-2px); background: rgba(0,0,0,0.55); }
.kgpy { font-weight: 900; font-size: 1.5rem; color: var(--accent-pale); flex-shrink: 0; line-height: 1; }
.xf11w3 { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.wa8tt8c { font-weight: 700; font-size: 0.85rem; white-space: nowrap; }
.skxv4fs0 { font-size: 0.78rem; color: rgba(255,255,255,0.7); white-space: nowrap; }


@media (max-width: 700px) {
  .lj40s { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .lj40s .ogejw { display: none !important; }
  .e2jw2vr .ogejw { display: none !important; }
  .lpfbnb .hiwh { display: none !important; }
  .nti0f .n8lf { display: none !important; }
  .g1fiecwy  { padding: 36px 24px; }
  .lj40s~.xu5pugym,.kosn~.xu5pugym{max-width:100%;left:0;right:0;transform:none;padding:0 24px}
  /* cap hero height variants on mobile */
  .xih1, .lj40s { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .xl4o9f { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  /* cards-top: hide on mobile */
  .nw6ac { display: none !important; }
  /* numbered: stack */
  .vldx { flex-direction: column; align-items: center; }
  .skf8xx { width: 100%; max-width: 340px; }
}

/* ── Image wrap + style variants ─────────────────────────────────────────────*/
/* img-wrap: обгортка для section-banner, transition для всіх ефектів */
.bm9n { position: relative; overflow: hidden; margin: 16px 0; line-height: 0; }
.bqxxn { width: 100%; height: 300px; object-fit: cover; display: block; }

/* plain — без ефектів */

/* rounded */
.un9aad5 .bm9n        { border-radius: 16px; }
.un9aad5 .bqxxn  { border-radius: 16px; }

/* shadow */
.bpji3i .bm9n         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.bpji3i .bqxxn   { border-radius: 8px; }


/* ── Page wrap (hero post-content + TOC) ────────────────────────────────────*/
.won6sw { max-width: 1100px; margin: 0 auto; padding: 40px 24px 32px; }

/* ── Section: повноширокий блок, вміст обмежений section-inner ──────────────*/
.gh0dgtq { width: 100%; padding: 32px 0; position: relative; }
.lztevt8f { max-width: 1100px; margin: 0 auto; padding: 24px 24px; position: relative; z-index: 1; }

/* ── section-bg variants ─────────────────────────────────────────────────────*/
/* even: чергування bg-page / bg-surface */
.dq9ik8q .gh0dgtq:nth-child(even) { background: var(--bg-surface); }
.dq9ik8q .gh0dgtq:nth-child(odd)  { background: var(--bg-page); }
/* stripe: чергування bg-page / bg-card (сильніший контраст) */
.zyzq2 .gh0dgtq:nth-child(even) { background: var(--bg-card); }
.zyzq2 .gh0dgtq:nth-child(odd)  { background: var(--bg-page); }

/* ── контраст коли секція має кольоровий фон ─────────────────────────────────*/
/* section-inner отримує чіткіший фон щоб виділятись від фону секції */
.dq9ik8q .gh0dgtq:nth-child(odd)  .lztevt8f { background: var(--bg-card); border-radius: 6px; }
.dq9ik8q .gh0dgtq:nth-child(even) .lztevt8f { background: var(--bg-raised); border-radius: 6px; }
.zyzq2 .gh0dgtq:nth-child(odd)  .lztevt8f { background: var(--bg-card); border-radius: 6px; }
.zyzq2 .gh0dgtq:nth-child(even) .lztevt8f { background: var(--bg-raised); border-radius: 6px; }

/* підсекції теж підіймаємо вище (щоб виділялись від section-inner) */
.dq9ik8q .gh0dgtq:nth-child(even) .mu0b .ogp3,
.zyzq2 .gh0dgtq:nth-child(even) .mu0b .ogp3 { background: var(--bg-card); box-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.dq9ik8q .gh0dgtq:nth-child(odd) .mu0b .ogp3,
.zyzq2 .gh0dgtq:nth-child(odd) .mu0b .ogp3 { background: var(--bg-card-inner); }

.dq9ik8q .gh0dgtq:nth-child(even) .e8dcg6lc .ogp3:nth-child(odd),
.zyzq2 .gh0dgtq:nth-child(even) .e8dcg6lc .ogp3:nth-child(odd)  { background: var(--bg-card); }
.dq9ik8q .gh0dgtq:nth-child(even) .e8dcg6lc .ogp3:nth-child(even),
.zyzq2 .gh0dgtq:nth-child(even) .e8dcg6lc .ogp3:nth-child(even) { background: var(--bg-card-inner); }

/* ── Headings: base ──────────────────────────────────────────────────────────*/
h1.mrjmes3 { font-size: 2.2rem; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
h2.mrjmes3 {
  font-size: 1.6rem; font-weight: 700; color: var(--accent-light);
  margin: 0 0 16px;
  /* декорація — лише через .un30cax6* клас на body */
}
h3.tr92kp0 { font-size: 1.2rem; font-weight: 700; color: var(--accent-pale); margin: 0 0 10px; }

/* ── Heading style variants (клас на <body>) ─────────────────────────────────*/

/* bar: ліва кольорова смуга */
.fdbjlhp h2.mrjmes3 {
  border-left: 4px solid var(--accent); padding-left: 14px;
}
/* underline: підкреслення знизу */
.esn3yn h2.mrjmes3 {
  border-bottom: 2px solid var(--accent); padding-bottom: 10px;
  display: inline-block;
}
/* overline: тонка лінія зверху */
.vwt48 h2.mrjmes3 {
  border-top: 3px solid var(--accent); padding-top: 12px;
  color: var(--text-primary);
}
/* dot: маленька кольорова крапка перед заголовком */
.c25a3w h2.mrjmes3::before {
  content: ""; display: inline-block; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  margin-right: 12px; vertical-align: middle;
}
/* plain: просто жирний текст, без декорацій */
.redqej12 h2.mrjmes3 {
  color: var(--text-primary); font-size: 1.7rem;
}
/* slash: коса риска акцентного кольору перед текстом */
.sshfk h2.mrjmes3::before {
  content: "/"; color: var(--accent); font-weight: 800;
  margin-right: 10px;
}
/* caps: великі літери, розріджений трекінг, тонка нижня лінія */
.xr1w h2.mrjmes3 {
  text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 1.1rem; color: var(--accent);
  border-bottom: 1px solid var(--border-alt); padding-bottom: 8px;
}

/* ── Reviews heading above lead (review_visible=hide variant) ───────────────*/
.qy39fim4 { font-size: 1.35rem; font-weight: 700; color: var(--accent-light); margin-bottom: 12px; }

/* ── Lead & intro/outro ──────────────────────────────────────────────────────*/
.cf1sr2 { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 16px; }
@media (max-width: 640px) { .cf1sr2 { display: none; } }
.rc6p {
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  border-radius: 8px; padding: 12px 20px; margin-bottom: 24px;
  font-size: 1rem; font-weight: 600; color: #ede9fe;
}
.zl609fj { margin-right: 8px; color: var(--c-arrow); }
/* intro/outro — blended with body text (classes kept for easy re-styling) */
.h90f7s2 { font-size: inherit; color: var(--text-body); margin: 8px 0 16px; }
.xcg16l { font-size: inherit; color: var(--text-body); margin: 16px 0 0; }

/* ── TOC ─────────────────────────────────────────────────────────────────────*/
.ul5119 {
  background: var(--bg-surface);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 20px 24px; margin: 28px 0;
}
.umjrzhs { font-weight: 700; color: var(--accent-light); margin-bottom: 12px; font-size: 1rem; }
.o61x6yws { padding-left: 20px; }
.o61x6yws li { margin-bottom: 6px; }
.o61x6yws a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; }
.o61x6yws a:hover { color: var(--accent-light); }

/* ── toc_style variants ──────────────────────────────────────────────────────*/

/* notitle: список з нумерацією, без заголовка */
.qq4joc .umjrzhs { display: none; }

/* plain: без нумерації, тире перед кожним пунктом */
.rs6t .umjrzhs { display: none; }
.rs6t .o61x6yws { padding-left: 0; list-style: none; }
.rs6t .o61x6yws li::before { content: "—"; margin-right: 9px; color: var(--accent); opacity: 0.7; }
.rs6t .o61x6yws a { font-size: 0.92rem; }

/* pills: горизонтальні pill-бейджі, без заголовка, без рамки контейнера */
.aw2p6 .ul5119 { background: none; border: none; box-shadow: none !important; padding: 12px 0; }
.aw2p6 .umjrzhs { display: none; }
.aw2p6 .o61x6yws { padding-left: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.aw2p6 .o61x6yws li { margin-bottom: 0; }
.aw2p6 .o61x6yws a {
  display: inline-block;
  background: var(--accent-bg); color: var(--accent-light);
  border: 1px solid var(--accent-pale); border-radius: 999px;
  padding: 5px 16px; font-size: 0.88rem; font-weight: 500;
}
.aw2p6 .o61x6yws a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* cards: сітка карток з номером-кружечком, з заголовком */
.g4u8s .ul5119 { padding: 20px 20px 16px; }
.g4u8s .o61x6yws {
  padding-left: 0; list-style: none;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px;
  counter-reset: toc-c;
}
.g4u8s .o61x6yws li { counter-increment: toc-c; margin-bottom: 0; }
.g4u8s .o61x6yws a {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card); border-radius: 8px;
  padding: 9px 12px; border: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-muted);
}
.g4u8s .o61x6yws a::before {
  content: counter(toc-c);
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--accent); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
}
.g4u8s .o61x6yws a:hover { color: var(--accent-light); border-color: var(--accent); }

/* inline: пункти в рядок через кому, без рамки, без заголовка */
.l49xot .ul5119 { background: none; border: none; box-shadow: none !important; padding: 8px 0; margin: 16px 0; }
.l49xot .umjrzhs { display: none; }
.l49xot .o61x6yws { padding-left: 0; list-style: none; display: flex; flex-wrap: wrap; }
.l49xot .o61x6yws li { margin-bottom: 0; }
.l49xot .o61x6yws li::after { content: ","; color: var(--text-muted); margin-right: 10px; }
.l49xot .o61x6yws li:last-child::after { content: ""; margin-right: 0; }
.l49xot .o61x6yws a { font-size: 0.9rem; }

/* ── Subsection: base ────────────────────────────────────────────────────────*/
.ogp3 { padding: 14px 20px 18px; margin-bottom: 12px; border-radius: 10px; }

/* subs-cards (default) */
.mu0b .ogp3 { background: var(--bg-card); }

/* subs-even: через рядок різний фон */
.e8dcg6lc .ogp3:nth-child(odd)  { background: var(--bg-card); }
.e8dcg6lc .ogp3:nth-child(even) { background: var(--bg-raised); }

/* subs-lines: горизонтальні роздільники */
.u5qz36h .ogp3 {
  background: none; border-radius: 0;
  border-bottom: 1px solid var(--border);
  padding: 22px 4px;
}
.u5qz36h .ogp3:last-child { border-bottom: none; }
.u5qz36h h3.tr92kp0 { border-bottom: 2px solid var(--accent); padding-bottom: 6px; display: inline-block; }

/* subs-bordered: акцентна смуга зліва */
.acpnjqrr .ogp3 {
  background: none; border-radius: 0;
  border-left: 3px solid var(--accent);
  padding: 10px 0 10px 18px;
}
.acpnjqrr .ogp3 + .ogp3 { margin-top: 4px; }

/* subs-flat: мінімальний, без фону */
.arb1zrf .ogp3 { background: none; border-radius: 0; padding: 12px 0; }
.arb1zrf .ogp3 + .ogp3 { border-top: 1px solid var(--border-section); }
.vsk6 { color: var(--text-body); margin-bottom: 12px; font-size: inherit; }
.h7mh { color: var(--text-body); margin-top: 12px; font-size: inherit; }

/* ── intro_style variants (disabled — all blend with body text now) ──────────
   To re-enable visual distinction, uncomment the blocks below.

.wa8yryc .h90f7s2,
.wa8yryc .xcg16l,
.wa8yryc .vsk6,
.wa8yryc .h7mh { font-style: normal; color: var(--text-body); }

.egfh .h90f7s2,
.egfh .xcg16l {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.egfh .vsk6,
.egfh .h7mh {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

.ye1o .h90f7s2,
.ye1o .xcg16l,
.ye1o .vsk6,
.ye1o .h7mh {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}
────────────────────────────────────────────────────────────────────────────── */

/* ── Elements ────────────────────────────────────────────────────────────────*/
.kf2c { color: var(--text-body); margin-bottom: 10px; }
.txcus8, .rf3lvp { padding-left: 22px; color: var(--text-body); margin: 10px 0; }
.txcus8 li, .rf3lvp li { margin-bottom: 6px; }
.rf3lvp li { list-style: decimal; }

/* ── list_style variants ─────────────────────────────────────────────────────*/
/* Використовуємо ::marker замість ::before — не ламає float-контекст */

.apxhob7y     .txcus8 { list-style-type: "● "; }
.jl1372iv  .txcus8 { list-style-type: "■ "; }
.h4h5kqg6 .txcus8 { list-style-type: "◆ "; }
.k93stea    .txcus8 { list-style-type: "★ "; }

.apxhob7y     .hcy1z9xh { list-style-type: "● "; }
.jl1372iv  .hcy1z9xh { list-style-type: "■ "; }
.h4h5kqg6 .hcy1z9xh { list-style-type: "◆ "; }
.k93stea    .hcy1z9xh { list-style-type: "★ "; }

.apxhob7y    .txcus8 li::marker, .apxhob7y    .hcy1z9xh li::marker,
.jl1372iv .txcus8 li::marker, .jl1372iv .hcy1z9xh li::marker,
.h4h5kqg6 .txcus8 li::marker, .h4h5kqg6 .hcy1z9xh li::marker,
.k93stea   .txcus8 li::marker, .k93stea   .hcy1z9xh li::marker {
  color: var(--accent); font-size: 0.8em;
}

/* ol: CSS-лічильник з кольоровим маркером */
.apxhob7y .rf3lvp,
.jl1372iv .rf3lvp,
.h4h5kqg6 .rf3lvp,
.k93stea .rf3lvp {
  list-style: none;
  counter-reset: el-step;
  padding-left: 2.2em;
}
.apxhob7y .rf3lvp li,
.jl1372iv .rf3lvp li,
.h4h5kqg6 .rf3lvp li,
.k93stea .rf3lvp li {
  list-style: none;
  counter-increment: el-step;
  position: relative;
}
.apxhob7y .rf3lvp li::before,
.jl1372iv .rf3lvp li::before,
.h4h5kqg6 .rf3lvp li::before,
.k93stea .rf3lvp li::before {
  content: counter(el-step);
  position: absolute; left: -2.2em; top: 0.05em;
  width: 1.45em; height: 1.45em;
  background: var(--accent); color: #fff;
  font-size: 0.72em; font-weight: 700;
  line-height: 1.45em; text-align: center;
}
/* форма маркера ol — залежно від варіанту */
.apxhob7y     .rf3lvp li::before { border-radius: 50%; }
.jl1372iv  .rf3lvp li::before { border-radius: 3px; }
.h4h5kqg6 .rf3lvp li::before { border-radius: 3px; }
.k93stea    .rf3lvp li::before { border-radius: 50%; }

.n72t { overflow-x: auto; margin: 12px 0; background: var(--accent-bg); border-radius: 10px; border: 1px solid var(--border-alt); }
.qmrd6v .n72t,
.s6jx .n72t { background: transparent; border: none; border-radius: 0; }
.xpirx1j { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.xpirx1j th {
  background: var(--bg-raised); color: var(--accent-light);
  padding: 8px 12px; text-align: left; font-weight: 600;
}
.xpirx1j td { padding: 8px 12px; border-bottom: 1px solid var(--border-alt); color: var(--text-body); }
.xpirx1j tr:hover td { background: var(--bg-hover); }

/* ── table_style variants ────────────────────────────────────────────────────*/

/* stripe: зебра */
.e6r6r1b .xpirx1j tbody tr:nth-child(even) td { background: var(--bg-surface); }

/* grid: рамки з усіх боків */
.pxzeng .xpirx1j { border: 1px solid var(--border-alt); }
.pxzeng .xpirx1j th,
.pxzeng .xpirx1j td { border: 1px solid var(--border-alt); }

/* minimal: тільки лінія під th, рядки без рамок */
.eimlwu7 .xpirx1j th {
  background: transparent; color: var(--accent);
  border-bottom: 2px solid var(--accent); padding-bottom: 6px;
}
.eimlwu7 .xpirx1j td { border-bottom: none; }
.eimlwu7 .xpirx1j tr:not(:last-child) td { border-bottom: 1px solid var(--border-alt); }

/* accent: насичений заголовок */
.vue1rd .xpirx1j th {
  background: var(--accent); color: #fff; letter-spacing: 0.03em;
}

/* card: таблиця як картка */
.oggb .n72t {
  overflow: hidden;
}
.oggb .xpirx1j th { border-bottom: 1px solid var(--border-alt); }
.oggb .xpirx1j tr:last-child td { border-bottom: none; }

.kuuzmo1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin: 12px 0; }
.yk7llrs { background: var(--bg-card-inner); border-radius: 8px; overflow: hidden; }
.ayu8qu82 { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.rrfm { background: var(--accent-bg-light); color: var(--accent); font-weight: 700; padding: 10px 14px; font-size: 0.9rem; }
.snsmxl4a { padding: 10px 14px 4px; font-size: 0.88rem; color: var(--text-sub); }
.hcy1z9xh { padding: 4px 14px 12px 28px; font-size: 0.82rem; color: var(--text-muted); }
.hcy1z9xh li { margin-bottom: 3px; }
.y4gr {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  margin: 16px auto 4px; padding: 0;
  font-size: 1.5rem; color: var(--accent);
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border-radius: 50%;
}
.y4gr::before { font-family: "Font Awesome 6 Free"; font-weight: 900; }
/* icon chars */
[data-i="f0eb"]::before{content:"\f0eb"} [data-i="f3ed"]::before{content:"\f3ed"}
[data-i="f0e7"]::before{content:"\f0e7"} [data-i="f3a5"]::before{content:"\f3a5"}
[data-i="f005"]::before{content:"\f005"} [data-i="f1b2"]::before{content:"\f1b2"}
[data-i="f201"]::before{content:"\f201"} [data-i="f023"]::before{content:"\f023"}
[data-i="f140"]::before{content:"\f140"} [data-i="f0ac"]::before{content:"\f0ac"}
[data-i="f058"]::before{content:"\f058"} [data-i="f1fe"]::before{content:"\f1fe"}
[data-i="f059"]::before{content:"\f059"} [data-i="f084"]::before{content:"\f084"}
[data-i="f1e0"]::before{content:"\f1e0"} [data-i="f6e2"]::before{content:"\f6e2"}
[data-i="f5da"]::before{content:"\f5da"} [data-i="f024"]::before{content:"\f024"}
[data-i="f0a3"]::before{content:"\f0a3"} [data-i="f6ff"]::before{content:"\f6ff"}
/* colors */
[data-c="a"]{color:var(--accent);background:color-mix(in srgb,var(--accent) 15%,transparent)}
[data-c="b"]{color:var(--accent-light);background:color-mix(in srgb,var(--accent-light) 15%,transparent)}
[data-c="c"]{color:var(--c-pros);background:color-mix(in srgb,var(--c-pros) 15%,transparent)}
[data-c="d"]{color:var(--c-stars);background:color-mix(in srgb,var(--c-stars) 15%,transparent)}
[data-c="e"]{color:var(--accent-pale);background:color-mix(in srgb,var(--accent-pale) 15%,transparent)}
[data-c="f"]{color:var(--c-warn-border);background:color-mix(in srgb,var(--c-warn-border) 15%,transparent)}
[data-c="g"]{color:var(--c-tip-border);background:color-mix(in srgb,var(--c-tip-border) 15%,transparent)}
[data-c="h"]{color:var(--c-cons);background:color-mix(in srgb,var(--c-cons) 15%,transparent)}
/* shapes */
[data-s="r"]{border-radius:50%}
[data-s="s"]{border-radius:10px}
[data-s="d"]{border-radius:50% 8px}
[data-s="h"]{border-radius:50%;clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%)}
[data-s="b"]{border-radius:60% 40% 50% 50%/50% 60% 40% 50%}
.a04h8 .y4gr { margin-left: auto; margin-right: auto; }
.a04h8 .rrfm { background: transparent; text-align: center; }

/* ── card_img: розміщення та форма зображень в картках ──────────────────────*/

/* top-round: картинка зверху, rounded corners, трохи менша */
.f7swd1 .ayu8qu82 {
  margin: 10px 10px 0; width: calc(100% - 20px);
  aspect-ratio: 16/9; border-radius: 10px;
}

/* top-circle: маленький кружечок по центру зверху */
.ir1fn84 .ayu8qu82 {
  width: 72px; height: 72px; aspect-ratio: 1/1;
  border-radius: 50%; object-fit: cover;
  margin: 16px auto 4px; display: block;
  border: 3px solid var(--accent-bg);
}

/* side: картинка зліва, лише в першому рядку; body/list — повна ширина */
.aqqoas .yk7llrs { display: grid; grid-template-columns: auto 1fr; }
.aqqoas .ayu8qu82 {
  grid-column: 1; grid-row: 1;
  width: 88px; height: 88px; aspect-ratio: 1/1; object-fit: cover; align-self: center;
}
.aqqoas .rrfm { grid-column: 2; }
.aqqoas .snsmxl4a,
.aqqoas .hcy1z9xh { grid-column: 1 / -1; }

/* side-circle: кружечок зліва лише в першому рядку; body/list — повна ширина */
.s67j73i .yk7llrs { display: grid; grid-template-columns: auto 1fr; align-items: start; }
.s67j73i .ayu8qu82 {
  grid-column: 1; grid-row: 1;
  width: 60px; height: 60px; aspect-ratio: 1/1;
  border-radius: 50%; object-fit: cover;
  margin: 14px 12px; border: 2px solid var(--accent-pale);
}
.s67j73i .rrfm { grid-column: 2; }
.s67j73i .snsmxl4a,
.s67j73i .hcy1z9xh { grid-column: 1 / -1; }


/* ── card_style variants ─────────────────────────────────────────────────────*/

/* accent: тонка ліва акцентна смужка, чистий заголовок */
.us8dm88r .yk7llrs { border: 1px solid var(--border); border-left: 2px solid var(--accent); }
.us8dm88r .rrfm { background: none; color: var(--accent-light); font-weight: 700; }

/* glass: напівпрозорий фон з blur, без рамок */
.osor .yk7llrs { background: rgba(255,255,255,0.04); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.08); }
.osor .rrfm { background: none; color: var(--accent-light); font-weight: 700; }

/* minimal: без рамок і фону, separator між картками */
.salbji .yk7llrs { background: none; border: none; border-radius: 0; border-bottom: 1px solid var(--border); }
.salbji .yk7llrs:last-child { border-bottom: none; }
.salbji .rrfm { background: none; color: var(--accent-light); font-weight: 700; }

/* line-top: 3px акцентна смуга зверху, заголовок без заливки */
.px2jj1u8 .yk7llrs { border: 1px solid var(--border); border-top: 3px solid var(--accent); }
.px2jj1u8 .rrfm { background: none; color: var(--accent-light); font-weight: 700; padding-top: 13px; }

/* numbered: CSS-лічильник у вигляді кружечка перед заголовком */
.rcp73n5i .kuuzmo1 { counter-reset: card-n; }
.rcp73n5i .yk7llrs  { counter-increment: card-n; }
.rcp73n5i .rrfm { display: flex; align-items: center; gap: 10px; }
.rcp73n5i .rrfm::before {
  content: counter(card-n);
  flex-shrink: 0; min-width: 26px; height: 26px;
  background: var(--accent); color: #fff; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.76rem; font-weight: 700;
}

/* flat: мінімальний, нейтральний заголовок, тонка рамка */
.i193mz1 .yk7llrs { background: var(--bg-surface); border: 1px solid var(--border); }
.i193mz1 .rrfm { background: none; color: var(--text-main); font-weight: 700; border-bottom: 1px solid var(--border); }

.pbu5tuh { display: flex; gap: 14px; align-items: flex-start; border-radius: 8px; padding: 14px 18px; margin: 10px 0; }
.z41j  { background: var(--bg-tip);     border-left: 4px solid var(--c-tip-border); }
.ptsdd { background: var(--bg-warning); border-left: 4px solid var(--c-warn-border); }
.vjrll { background: var(--bg-info);    border-left: 4px solid #60a5fa; }
.jzsqth4 { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.pbu5tuh strong { color: var(--text-primary); font-size: 0.95rem; }
.pbu5tuh p { color: var(--text-muted); font-size: 0.88rem; margin-top: 4px; }

.jiylgv { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 10px 0; }
.xe9vb, .iy35f { border-radius: 8px; padding: 14px; }
.xe9vb { background: var(--bg-pros); }
.iy35f { background: var(--bg-cons); }
.kit9 { font-weight: 700; font-size: 0.85rem; margin-bottom: 8px; }
.xe9vb .kit9 { color: var(--c-pros-label); }
.iy35f .kit9 { color: #f87171; }
.xe9vb ul li { color: var(--c-pros); list-style: none; padding-left: 4px; margin-bottom: 5px; font-size: 0.88rem; }
.iy35f ul li { color: var(--c-cons); list-style: none; padding-left: 4px; margin-bottom: 5px; font-size: 0.88rem; }

.bqxxn { width: 100%; height: 300px; object-fit: cover; border-radius: 10px; display: block; }

/* ── CTA button ──────────────────────────────────────────────────────────────*/
.wy3s2hi {
  background: var(--accent); color: #fff; border: none;
  border-radius: 6px; padding: 8px 16px; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; text-decoration: none; display: inline-block; white-space: nowrap;
}
.wy3s2hi:hover { opacity: 0.85; }

/* ── btn_style variants ──────────────────────────────────────────────────────*/
/* solid = default (accent bg, white text) — no override needed */

/* outline / ghost — only .wy3s2hi; .w77x NEVER changes (always solid accent) */
.zms0j .wy3s2hi  { background: transparent; border: 2px solid var(--accent); color: var(--accent-light); }
.zms0j .wy3s2hi:hover  { background: var(--accent); color: #fff; opacity: 1; }
.h4b9 .wy3s2hi  { background: var(--accent-bg); border: 1px solid var(--accent); color: var(--accent-light); }
.h4b9 .wy3s2hi:hover  { background: var(--accent); color: #fff; opacity: 1; }

/* pill = solid but very rounded */
.o4uy .w77x { border-radius: 50px; }
.o4uy .wy3s2hi  { border-radius: 50px; }
/* btn_pad */
.alsfe8 .w77x { padding-left: 22px; padding-right: 22px; }
.alsfe8 .wy3s2hi  { padding-left: 12px; padding-right: 12px; }
.fpd5t .w77x { padding-left: 44px; padding-right: 44px; }
.fpd5t .wy3s2hi  { padding-left: 24px; padding-right: 24px; }
.m9nafqwt .w77x { padding-left: 56px; padding-right: 56px; }
.m9nafqwt .wy3s2hi  { padding-left: 32px; padding-right: 32px; }

/* ── btn_icon: SVG-іконки на .w77x і .wy3s2hi (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.t8lcqf   .w77x::after, .t8lcqf   .wy3s2hi::after,
.i9yc3uew .w77x::after, .i9yc3uew .wy3s2hi::after,
.pdzwxzet    .w77x::after, .pdzwxzet    .wy3s2hi::after,
.eugah    .w77x::after, .eugah    .wy3s2hi::after,
.yl3jt    .w77x::after, .yl3jt    .wy3s2hi::after,
.vdhhnfg     .w77x::after, .vdhhnfg     .wy3s2hi::after,
.n7yd53k    .w77x::after, .n7yd53k    .wy3s2hi::after,
.jk3ujs   .w77x::after, .jk3ujs   .wy3s2hi::after {
  content: ""; display: inline-block;
  width: 1em; height: 1em; margin-left: 6px; vertical-align: -0.15em;
  background: currentColor;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}

/* SVG masks — кожна іконка */
.t8lcqf .w77x::after, .t8lcqf .wy3s2hi::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
}
.i9yc3uew .w77x::after, .i9yc3uew .wy3s2hi::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
}
.pdzwxzet .w77x::after, .pdzwxzet .wy3s2hi::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4l14 8-14 8z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4l14 8-14 8z' fill='black'/%3E%3C/svg%3E");
}
.eugah .w77x::after, .eugah .wy3s2hi::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z' fill='black'/%3E%3C/svg%3E");
}
.yl3jt .w77x::after, .yl3jt .wy3s2hi::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.1 6.3 6.9.7-5 4.8 1.5 6.9L12 17.3l-6.5 3.4 1.5-6.9L2 9l6.9-.7z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.1 6.3 6.9.7-5 4.8 1.5 6.9L12 17.3l-6.5 3.4 1.5-6.9L2 9l6.9-.7z' fill='black'/%3E%3C/svg%3E");
}
.vdhhnfg .w77x::after, .vdhhnfg .wy3s2hi::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h12l4 6L12 22 2 9z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h12l4 6L12 22 2 9z' fill='black'/%3E%3C/svg%3E");
}
.n7yd53k .w77x::after, .n7yd53k .wy3s2hi::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c0 0-7 6-7 12a7 7 0 0 0 14 0c0-3-1.5-5-3.5-6.5 0 3-2 5-3.5 5C14 9 12 2 12 2z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c0 0-7 6-7 12a7 7 0 0 0 14 0c0-3-1.5-5-3.5-6.5 0 3-2 5-3.5 5C14 9 12 2 12 2z' fill='black'/%3E%3C/svg%3E");
}
.jk3ujs .w77x::after, .jk3ujs .wy3s2hi::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 19h20v2H2zM2 17L5.5 7l4.5 5L12 3l2 9 4.5-5L22 17z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 19h20v2H2zM2 17L5.5 7l4.5 5L12 3l2 9 4.5-5L22 17z' fill='black'/%3E%3C/svg%3E");
}

/* ── cta_icon: незалежні іконки для navbar-cta-btn і sticky-cta-btn ────────*/
.avfz   .nkvfhs::after, .avfz   .w6mfc8::after,
.h7ezgu02 .nkvfhs::after, .h7ezgu02 .w6mfc8::after,
.vb9uc    .nkvfhs::after, .vb9uc    .w6mfc8::after,
.it8fy74    .nkvfhs::after, .it8fy74    .w6mfc8::after,
.pi3c7oga    .nkvfhs::after, .pi3c7oga    .w6mfc8::after,
.kpt5ruu     .nkvfhs::after, .kpt5ruu     .w6mfc8::after,
.f0q0    .nkvfhs::after, .f0q0    .w6mfc8::after,
.xyouka   .nkvfhs::after, .xyouka   .w6mfc8::after {
  content: "" !important; display: inline-block !important;
  width: 1em; height: 1em; margin-left: 6px; vertical-align: -0.15em;
  background: currentColor !important;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
.avfz .nkvfhs::after, .avfz .w6mfc8::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
}
.h7ezgu02 .nkvfhs::after, .h7ezgu02 .w6mfc8::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
}
.vb9uc .nkvfhs::after, .vb9uc .w6mfc8::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4l14 8-14 8z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4l14 8-14 8z' fill='black'/%3E%3C/svg%3E");
}
.it8fy74 .nkvfhs::after, .it8fy74 .w6mfc8::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z' fill='black'/%3E%3C/svg%3E");
}
.pi3c7oga .nkvfhs::after, .pi3c7oga .w6mfc8::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.1 6.3 6.9.7-5 4.8 1.5 6.9L12 17.3l-6.5 3.4 1.5-6.9L2 9l6.9-.7z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.1 6.3 6.9.7-5 4.8 1.5 6.9L12 17.3l-6.5 3.4 1.5-6.9L2 9l6.9-.7z' fill='black'/%3E%3C/svg%3E");
}
.kpt5ruu .nkvfhs::after, .kpt5ruu .w6mfc8::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h12l4 6L12 22 2 9z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h12l4 6L12 22 2 9z' fill='black'/%3E%3C/svg%3E");
}
.f0q0 .nkvfhs::after, .f0q0 .w6mfc8::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c0 0-7 6-7 12a7 7 0 0 0 14 0c0-3-1.5-5-3.5-6.5 0 3-2 5-3.5 5C14 9 12 2 12 2z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c0 0-7 6-7 12a7 7 0 0 0 14 0c0-3-1.5-5-3.5-6.5 0 3-2 5-3.5 5C14 9 12 2 12 2z' fill='black'/%3E%3C/svg%3E");
}
.xyouka .nkvfhs::after, .xyouka .w6mfc8::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 19h20v2H2zM2 17L5.5 7l4.5 5L12 3l2 9 4.5-5L22 17z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 19h20v2H2zM2 17L5.5 7l4.5 5L12 3l2 9 4.5-5L22 17z' fill='black'/%3E%3C/svg%3E");
}

/* ── Casino showcase ─────────────────────────────────────────────────────────*/
.idqs { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


.md6ge {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 10px; padding: 10px 16px;
  display: flex; flex-direction: row; align-items: center; gap: 14px;
  transition: background .15s;
}
/* microdata wrapper — invisible to layout */
.md6ge > [itemprop="item"] { display: contents; }
.md6ge:hover { background: var(--bg-hover); }
.u4gkw9 {
  background: var(--accent-bg);
  border-radius: 8px; padding: 4px 8px;
  display: flex; align-items: center; justify-content: center;
  min-width: 56px; height: 42px; flex-shrink: 1;
}
/* cs_logo_bg variants — override default accent-bg */
.w033 .u4gkw9 { background: #1a1a1a; }
.gdjtw4be .u4gkw9 { background: rgba(128,128,128,.12); }
.mo0ewhs .u4gkw9 { background: var(--bg-raised); }
.uaov .u4gkw9 { background: transparent; padding: 0; }
.w1p35au5 { max-height: 34px; max-width: 80px; object-fit: contain; }
.waos { font-weight: 700; font-size: .85rem; color: var(--accent-light); }
.spche { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; }
.a0oh9fj { font-weight: 700; font-size: .88rem; color: var(--text-primary); flex-shrink: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.x18i7cpy { color: var(--accent); font-size: .8rem; letter-spacing: 1px; flex-shrink: 1; min-width: 0; }
.y45kratt { display: flex; flex-direction: column; align-items: center; font-size: .78rem; flex: 1 1 0; min-width: 0; }
.d27ilffp { color: var(--text-label); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.rky99vz { color: var(--text-value); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.hxv0n { margin-left: auto; flex-shrink: 0; white-space: nowrap; }
.hxv0n.wy3s2hi { padding-left: 16px !important; padding-right: 16px !important; }
/* планшет / мобіль: 1 картка в ряд */
@media (max-width: 720px) {
  .idqs { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .idqs .md6ge { flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px; }
  .idqs .spche { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
  .idqs .u4gkw9 { width: 100%; min-width: unset; height: 52px; }
  .idqs .w1p35au5 { max-height: 40px; max-width: 110px; }
  .idqs .a0oh9fj { min-width: unset; text-align: center; white-space: normal; }
  .idqs .y45kratt { flex-direction: row; justify-content: space-between; width: 100%; border-top: 1px solid var(--border); padding-top: 5px; }
  .idqs .hxv0n { width: 100%; text-align: center; margin-left: 0; }
  .h8xl13k .md6ge { row-gap: 8px !important; gap: 8px !important; }
}

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.r0ydfmr {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.ueh7slyg {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.lwsktvos {
  width: 90px; flex-shrink: 0;
  background: var(--bg-page);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  padding: 8px; min-height: 60px;
}
.lwsktvos img { max-width: 80px; max-height: 50px; object-fit: contain; }
.f9glj { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.dxv1nds5 { flex: 1; }
.dxv1nds5 h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.nhha { color: var(--c-stars); font-size: 1.1rem; }
.ojve9vic { margin-bottom: 8px; }
.oiyy { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.ennyr90k::before   { content: "★ "; color: var(--accent); }
.juiltg::before { content: "↓ "; color: var(--accent); }
.z1jq::before { content: "✦ "; color: var(--accent); }
.q7yw { flex-shrink: 0; }
.cylxg img.yyzu { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.qmrd6v { padding: 20px 24px; }
.q2wvjw62 { color: var(--text-muted); margin-bottom: 16px; }
.sjssc { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.lmxtsxj4, .ei9yqej { list-style: none; font-size: 0.9rem; }
.lmxtsxj4 li { color: var(--c-pros); margin-bottom: 4px; }
.ei9yqej li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.lmxtsxj4 li::before { content: "✓"; margin-right: 5px; }
.ei9yqej li::before { content: "✗"; margin-right: 5px; }
.tfrp22p .lmxtsxj4 li::before { content: "→"; }
.tfrp22p .ei9yqej li::before { content: "–"; }
.lpdncvg  .lmxtsxj4 li::before { content: "★"; }
.lpdncvg  .ei9yqej li::before { content: "✕"; }
.d5pw4    .lmxtsxj4 li::before { content: "◆"; }
.d5pw4    .ei9yqej li::before { content: "▲"; }
.qxluih  .lmxtsxj4 li::before { content: "▶"; }
.qxluih  .ei9yqej li::before { content: "■"; }
.h1we8 { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.woxt83bi { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.xjatdss { background: var(--bg-pros); color: var(--c-tag-pay); }

/* ── expert note — використовує callout CSS, власних стилів немає ────────────*/
/* review-expert-note — callout прикріплений до низу картки огляду */
.q7brai5 { margin: 0; border-radius: 0 0 8px 8px; border-left-width: 0 !important; border-top: 1px solid var(--border-alt); }
.q5qa3b .q7brai5 { border-top-width: 4px !important; border-radius: 0 0 8px 8px; }
.azfn4 .q7brai5 { border: none; border-top: 1.5px solid; }


/* ── review_cols: 2-колонки на десктопі ─────────────────────────────────────*/
@media (min-width: 860px) {
  .wwrbsick .dtzmafkq {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start;
  }
  .wwrbsick .r0ydfmr { margin: 0; }
}

/* ── review_style variants ───────────────────────────────────────────────────*/
/* default = current, без override */

/* accent: акцентний фон хедера картки */
.quz6r .ueh7slyg { background: var(--accent-bg); border-bottom: 2px solid var(--accent); }
.quz6r .dxv1nds5 h3 { color: var(--accent-light); }
.quz6r .lwsktvos { background: var(--bg-page); border: 1px solid var(--border); }

/* top: жирна акцентна смуга зверху картки */
.pvna3l .r0ydfmr { border-top: 4px solid var(--accent); }
.pvna3l .ueh7slyg { background: var(--bg-card); }

/* flat: мінімалістичний, без радіусів */
.zvm1zav .r0ydfmr { border-radius: 0; border: none; border-bottom: 2px solid var(--border-alt); box-shadow: none; margin: 0 0 20px; }
.zvm1zav .ueh7slyg { background: transparent; border-bottom: 1px solid var(--border); padding: 14px 16px; }
.zvm1zav .qmrd6v { padding: 14px 16px; }
.zvm1zav .lwsktvos { border-radius: 4px; }
.zvm1zav .q7brai5 { border-radius: 0; }

/* split: лого в окремій кольоровій панелі зліва */
.rifzgdd .ueh7slyg { padding: 0; gap: 0; overflow: hidden; }
.rifzgdd .lwsktvos { background: var(--accent-bg); border-radius: 0; width: 100px; min-height: 84px; padding: 20px 14px; align-self: stretch; border: none; }
.rifzgdd .dxv1nds5 { padding: 16px 20px; }
.rifzgdd .q7yw { padding: 16px 20px; align-self: center; }

/* ── Brand card (single brand, two-column hero) ─────────────────────────────*/
/* ═══════════════════════════════════════════════════════════════════════════
   BRAND CARD — shared tokens
   ═══════════════════════════════════════════════════════════════════════════ */
.s6jx {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.dtp4 {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.dtp4 img { max-width: 100%; max-height: 100%; object-fit: contain; }
.blpqkj { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.r5esjq { display: flex; align-items: center; gap: 8px; }
.r5esjq .nhha { font-size: .95rem; }
.r5esjq strong { font-size: 1.1rem; color: var(--text); }
.sszz { border-radius: 8px; overflow: hidden; }
.sszz img { width: 100%; display: block; border-radius: 8px; }
.ukrq5ily { text-align: center; flex-shrink: 0; }
.qd119weh { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.ozrl7rho { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.jl2l { font-size: .88rem; font-weight: 600; color: var(--text); }
.gfkz6 .jl2l { font-size: 1.02rem; font-weight: 700; color: var(--accent); }
.s6jx .jiylgv { gap: 10px; }
.s6jx .xe9vb, .s6jx .iy35f { padding: 12px; }
.s6jx .xe9vb ul, .s6jx .iy35f ul { margin: 4px 0 0; padding-left: 18px; }
.s6jx .xe9vb li, .s6jx .iy35f li { font-size: .85rem; margin-bottom: 3px; }
.fl8d6agi { font-size: .8rem; color: var(--text-muted); margin-top: 10px; }
.fl8d6agi strong { color: var(--text-secondary); }
.fl8d6agi .woxt83bi { margin: 2px 4px 2px 0; }

/* ── LAYOUT 1: split — sidebar | data column ─────────────────────────────── */
.s5c8mv { display: grid; grid-template-columns: 260px 1fr; gap: 0; }
.r4oc {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center; padding: 24px; border-right: 1px solid var(--border-alt);
}
.r4oc .sszz { width: 100%; margin-top: 4px; }
.r4oc .ukrq5ily { width: 100%; margin-top: auto; }
.c8iqu { display: flex; flex-direction: column; gap: 14px; padding: 20px; }
.s5c8mv .ikapcql {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.s5c8mv .qd119weh { border-bottom: 1px solid var(--border-alt); }
.s5c8mv .qd119weh:nth-child(odd) { border-right: 1px solid var(--border-alt); }
.s5c8mv .gfkz6 { grid-column: 1 / -1; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .s5c8mv { grid-template-columns: 1fr; }
  .r4oc { flex-direction: row; flex-wrap: wrap; gap: 10px; border-right: none; border-bottom: 1px solid var(--border-alt); padding: 16px; }
  .r4oc .dtp4 { width: 72px; height: 50px; }
  .r4oc .sszz { max-width: 180px; }
  .r4oc .ukrq5ily { width: auto; }
}

/* ── LAYOUT 2: hero — full-width screenshot header ────────────────────────── */
.oxiqkcaw {
  position: relative; max-height: 240px; overflow: hidden;
}
.oxiqkcaw > img { width: 100%; display: block; object-fit: cover; min-height: 160px; }
.yhwsm7 {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; gap: 16px;
  padding: 16px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
}
.yhwsm7 .dtp4 { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.yhwsm7 .blpqkj { color: #fff; font-size: 1.25rem; }
.yhwsm7 .r5esjq strong { color: #fff; }
.yhwsm7 .r5esjq .nhha { filter: brightness(1.2); }
.yhwsm7 .ukrq5ily { margin-left: auto; white-space: nowrap; }
.gi8z9j0 { flex: 1; }
.lv7fb9o {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-alt);
}
.lv7fb9o .ukrq5ily { margin-left: auto; }
.bglbqhkp { display: flex; flex-direction: column; gap: 16px; padding: 20px 24px; }
.fw3jo .ikapcql {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.fw3jo .qd119weh {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.fw3jo .gfkz6 { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .yhwsm7 { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .bglbqhkp { padding: 16px; }
  .fw3jo .qd119weh { min-width: 50%; }
}

/* ── LAYOUT 3: magazine — editorial 3-column ──────────────────────────────── */
.xk3o {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.alj418o { flex: 1; }
.alj418o .blpqkj { font-size: 1.3rem; }
.zt7tjxc0 {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.yzudxv1 { padding: 16px; border-right: 1px solid var(--border-alt); }
.yzudxv1 .sszz { height: 100%; }
.yzudxv1 .sszz img { height: 100%; object-fit: cover; }
.fe6zk2r { padding: 0; border-right: 1px solid var(--border-alt); }
.fe6zk2r .ikapcql { display: flex; flex-direction: column; }
.fe6zk2r .qd119weh { border-bottom: 1px solid var(--border-alt); }
.fe6zk2r .gfkz6 { background: var(--accent-bg); }
.vsmlg { padding: 16px; }
.vsmlg .jiylgv { grid-template-columns: 1fr; }
.qk24ioyv {
  padding: 12px 24px; border-top: 1px solid var(--border-alt);
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .zt7tjxc0 { grid-template-columns: 1fr; }
  .yzudxv1 { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .fe6zk2r { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .xk3o { flex-wrap: wrap; padding: 16px; }
}

/* ── LAYOUT 4: compact — header bar → screenshot → data ──────────────────── */
.f9icg9yn {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border-alt);
}
.n4nx {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.n4nx .dtp4 { width: 72px; height: 50px; }
.n4nx .blpqkj { font-size: 1rem; white-space: nowrap; }
.l981b1 { border-bottom: 1px solid var(--border-alt); max-height: 280px; overflow: hidden; }
.l981b1 img { width: 100%; display: block; object-fit: cover; }
.x0s9 {
  display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; overflow: hidden;
}
.c63l4m .ikapcql { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.c63l4m .qd119weh { padding: 0; flex: 0 0 auto; gap: 6px; }
.c63l4m .gfkz6 { display: none; }
.c63l4m .jiylgv { gap: 8px; }
.c63l4m .xe9vb, .c63l4m .iy35f { padding: 8px; }
@media (max-width: 480px) {
  .f9icg9yn { flex-direction: column; align-items: stretch; }
}

/* ── LAYOUT 5: dossier — bar → screenshot → two-col data ─────────────────── */
.g3bo7qv {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px; border-bottom: 1px solid var(--border-alt);
  background: var(--surface);
}
.x3b8u7 { flex: 1; }
.ui906d { max-height: 220px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.ui906d img { width: 100%; display: block; object-fit: cover; }
.taj8d {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.kibij6 { padding: 16px 20px; border-right: 1px solid var(--border-alt); display: flex; flex-direction: column; gap: 14px; }
.kibij6 .ikapcql { display: flex; flex-direction: column; border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden; }
.kibij6 .qd119weh { border-bottom: 1px solid var(--border-alt); }
.kibij6 .qd119weh:last-child { border-bottom: none; }
.kibij6 .gfkz6 { background: var(--accent-bg); }
.uf4nh { padding: 16px 20px; }
@media (max-width: 720px) {
  .taj8d { grid-template-columns: 1fr; }
  .kibij6 { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .g3bo7qv { flex-wrap: wrap; gap: 10px; padding: 14px 16px; }
}

/* ── LAYOUT 6: scorecard — big score centerpiece ──────────────────────────── */
.thhnd3lc {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
  border-bottom: 1px solid var(--border-alt);
}
.ah15bw5 {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; text-align: center;
}
.e3yx {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--accent-bg); border: 3px solid var(--accent);
  position: relative;
}
.pyogh6md { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.pyogh6md .s35e418z { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.e3yx .nhha { font-size: .75rem; margin-top: 2px; }
.tiyc { padding: 12px; display: flex; align-items: center; flex: 1; }
.tiyc .sszz { width: 100%; }
.oeh9i1 {
  padding: 0; border-bottom: 1px solid var(--border-alt);
}
.dnvwvub .ikapcql {
  display: flex; flex-wrap: wrap;
}
.dnvwvub .qd119weh {
  flex: 1 1 auto; min-width: 100px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
  flex-direction: column; align-items: center; gap: 2px; padding: 12px 8px; text-align: center;
}
.dnvwvub .qd119weh:last-child { border-right: none; }
.dnvwvub .ozrl7rho { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.dnvwvub .gfkz6 { background: var(--accent-bg); }
.d3kldr { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 720px) {
  .thhnd3lc { grid-template-columns: 1fr; }
  .e3yx { width: 100px; height: 100px; margin: 16px auto; }
  .pyogh6md { font-size: 1.4rem; }
  .tiyc { justify-content: center; }
  .dnvwvub .qd119weh { min-width: 50%; }
}

/* ── LAYOUT 7: stack — vertical full-width flow ──────────────────────────── */
.ffaq {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.urbneg { max-height: 240px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.urbneg img { width: 100%; display: block; object-fit: cover; }
.wfjkwkj { padding: 16px 24px; border-bottom: 1px solid var(--border-alt); }
.ysaj9lzc .ikapcql {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ysaj9lzc .qd119weh {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.ysaj9lzc .gfkz6 {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.ysaj9lzc .jiylgv { margin: 0 24px; padding-top: 16px; }
.ysaj9lzc .fl8d6agi { padding: 0 24px; }
.ot4toir { padding: 16px 24px; border-top: 1px solid var(--border-alt); text-align: center; }
.ot4toir .ukrq5ily { display: inline-block; }
@media (max-width: 540px) {
  .ffaq { flex-wrap: wrap; padding: 14px 16px; }
  .wfjkwkj { padding: 12px 16px; }
  .ysaj9lzc .jiylgv { margin: 0 16px; }
  .ysaj9lzc .fl8d6agi { padding: 0 16px; }
  .ot4toir { padding: 12px 16px; }
}


/* ── casino_style variants ───────────────────────────────────────────────────*/

/* grid: showcase в 2-col grid, review компактніший */
.xue5a3o .idqs {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px;
}
.xue5a3o .idqs .md6ge {
  flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px;
}
.xue5a3o .idqs .spche { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
.xue5a3o .idqs .u4gkw9 { width: 100%; min-width: unset; height: 52px; }
.xue5a3o .idqs .a0oh9fj { min-width: unset; text-align: center; white-space: normal; }
.xue5a3o .idqs .y45kratt {
  flex-direction: row; justify-content: space-between;
  width: 100%; border-top: 1px solid var(--border); padding-top: 5px;
}
.xue5a3o .idqs .hxv0n { width: 100%; text-align: center; margin-left: 0; }
.xue5a3o .ueh7slyg { gap: 14px; }

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.j7jsx .d27ilffp {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.j7jsx .rky99vz {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.j7jsx .x18i7cpy { color: var(--accent); }
.j7jsx .ueh7slyg { background: var(--accent-bg); }
.j7jsx .ennyr90k, .j7jsx .juiltg, .j7jsx .z1jq {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

/* pill: label стекований над value, значення як rounded accent-badge */
.j6z1xrd .y45kratt { flex-direction: column; align-items: flex-start; gap: 2px; padding-top: 6px; }
.j6z1xrd .d27ilffp {
  font-size: 0.67rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-muted); line-height: 1;
}
.j6z1xrd .rky99vz {
  font-weight: 700; font-size: 0.85rem;
  color: var(--accent); background: var(--accent-bg);
  border-radius: 6px; padding: 2px 10px; display: inline-block;
}
.j6z1xrd .x18i7cpy { color: var(--accent); }
.j6z1xrd .ueh7slyg { border-bottom: 2px solid var(--accent-bg); }
.j6z1xrd .ennyr90k, .j6z1xrd .juiltg, .j6z1xrd .z1jq {
  background: var(--accent-bg); color: var(--accent); border-radius: 100px;
  padding: 2px 10px; font-weight: 600; border: none;
}

/* accent: акцентна смуга зверху на showcase-картках, кольоровий заголовок review */
.m5ryih9 .md6ge { border-top: 3px solid var(--accent); }
/* casino-accent logo bg тепер через cs_logo_bg варіант */
.m5ryih9 .r0ydfmr { overflow: hidden; }
.m5ryih9 .ueh7slyg { background: var(--accent-bg); }

/* compact: менші відступи всюди */
.cumo9 .md6ge { padding: 8px 14px; gap: 12px; }
.cumo9 .u4gkw9 { height: 32px; min-width: 52px; }
.cumo9 .w1p35au5 { max-height: 24px; }
.cumo9 .a0oh9fj { font-size: 0.82rem; }
.cumo9 .ueh7slyg { padding: 14px 18px; gap: 14px; }
.cumo9 .qmrd6v { padding: 14px 18px; }
.cumo9 .lwsktvos { width: 70px; }
.cumo9 .dxv1nds5 h3 { font-size: 1.05rem; }

/* stripe: смугасті рядки */
.g2z277b .idqs { gap: 0; }
.g2z277b .md6ge {
  border-radius: 0; border-left: none; border-right: none;
  border-top: none; border-bottom: 1px solid var(--border);
}
.g2z277b .md6ge:last-child { border-bottom: none; }
.g2z277b .md6ge:nth-child(odd) { background: var(--accent-bg); }
.g2z277b .md6ge:nth-child(odd):hover { background: var(--bg-hover); }

/* bordered: таблиця з усіма рамками */
.h8xl13k .idqs {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.h8xl13k .md6ge {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); row-gap: 0; column-gap: 12px;
}
.h8xl13k .md6ge:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.h8xl13k .x18i7cpy,
.h8xl13k .evzz,
.h8xl13k .dg49b2bx { border-left: 1px solid var(--border); padding-left: 10px; }
.h8xl13k .a0oh9fj { padding: 0 10px; }

/* ── casino-named: назва під лого (column) ────────────────────────────────*/
.mxxa .spche { flex-direction: column; align-items: center; gap: 4px; min-width: 110px; flex-shrink: 0; }
.mxxa .a0oh9fj { text-align: center; white-space: normal; font-size: .82rem; line-height: 1.2; }
.mxxa .u4gkw9 { min-width: 80px; height: 52px; }
.mxxa .w1p35au5 { max-height: 42px; max-width: 100px; }

/* ── casino-named-top: назва над лого ─────────────────────────────────────*/
.pq8l0b .spche { flex-direction: column-reverse; align-items: center; gap: 4px; min-width: 110px; flex-shrink: 0; }
.pq8l0b .a0oh9fj { text-align: center; white-space: normal; font-size: .82rem; line-height: 1.2; }
.pq8l0b .u4gkw9 { min-width: 80px; height: 52px; }
.pq8l0b .w1p35au5 { max-height: 42px; max-width: 100px; }

/* ── casino-wide: високі горизонтальні картки з великим лого ───────────────*/
.nwea94 .idqs { gap: 12px; }
.nwea94 .md6ge {
  padding: 18px 24px; gap: 20px; border-radius: 12px;
  min-height: 80px;
}
.nwea94 .u4gkw9 {
  min-width: 90px; height: 64px; padding: 6px 12px; border-radius: 10px;
}
.nwea94 .w1p35au5 { max-height: 52px; max-width: 120px; }
.nwea94 .a0oh9fj { font-size: 1rem; }
.nwea94 .y45kratt { font-size: .85rem; }
.nwea94 .rky99vz { font-size: .9rem; }
.nwea94 .hxv0n.wy3s2hi { padding: 10px 24px !important; font-size: .9rem; }

/* ── casino-jumbo: дуже великі картки, лого + інтерфейс скриншот ──────────*/
.yypm .idqs { gap: 16px; }
.yypm .md6ge {
  padding: 24px 28px; gap: 24px; border-radius: 14px;
  min-height: 100px; border-width: 2px;
}
.yypm .u4gkw9 {
  min-width: 110px; height: 80px; padding: 8px 14px; border-radius: 12px;
  background: var(--bg-raised);
}
.yypm .w1p35au5 { max-height: 64px; max-width: 140px; }
.yypm .a0oh9fj { font-size: 1.1rem; font-weight: 800; }
.yypm .x18i7cpy { font-size: .95rem; letter-spacing: 2px; }
.yypm .y45kratt { font-size: .9rem; }
.yypm .rky99vz { font-size: .95rem; font-weight: 700; }
.yypm .d27ilffp { font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; }
.yypm .hxv0n.wy3s2hi { padding: 12px 32px !important; font-size: .95rem; font-weight: 700; }

/* ── grid / compact: на мобілі допускаємо 2 колонки (картки досить вузькі) */
@media (max-width: 720px) {
  .xue5a3o .idqs,
  .cumo9 .idqs {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.r5biki .evzz { flex: 1.8; }
.r5biki .evzz .rky99vz {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}
.r5biki .evzz .d27ilffp { font-weight: 700; color: var(--text-primary); }
.r5biki .v1ytnz,
.r5biki .hmve725,
.r5biki .wv6tnweq { flex: 0.75; opacity: 0.65; }

/* ── cs_rating: вигляд рейтингу в showcase ──────────────────────────────────*/
/* show = default (accent color, базові стилі) */
.ls61 { display: none; }
.r6p23 .x18i7cpy { display: none; }
.radj8 .x18i7cpy { font-size: 1rem; letter-spacing: 2px; }
.c4t4d .x18i7cpy {
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 10px; font-size: 0.75rem;
  color: var(--accent); font-weight: 700; letter-spacing: .5px;
}
/* score: цифровий рейтинг замість зірок — спільна база */
.b2ap2p .x18i7cpy,
.y0bkj0v .x18i7cpy,
.pmnbk .x18i7cpy { display: none; }
.b2ap2p .ls61,
.y0bkj0v .ls61,
.pmnbk .ls61 { display: inline-flex; align-items: baseline; gap: 1px; line-height: 1; }

/* score: велике число без /10 */
.b2ap2p .ls61 { font-size: 1.4rem; font-weight: 900; color: var(--accent); }
.b2ap2p .ls61 small { display: none; }

/* score-pill: number/10 в pill, однаковий розмір */
.y0bkj0v .ls61 {
  font-size: 0.85rem; font-weight: 800; color: var(--accent);
  background: var(--accent-bg); border-radius: 100px;
  padding: 2px 10px; gap: 0;
}
.y0bkj0v .ls61 small { font-size: 1em; font-weight: 600; color: var(--accent); opacity: 0.65; }

/* score-box: ціле число в суцільному блоці */
.pmnbk .ls61 {
  font-size: 1rem; font-weight: 900; color: var(--bg-page);
  background: var(--accent); border-radius: 6px;
  padding: 3px 9px; gap: 0;
}
.pmnbk .ls61 small { display: none; }

/* score в оглядах — ховаємо зірки */
.b2ap2p .ojve9vic .nhha,
.y0bkj0v .ojve9vic .nhha,
.pmnbk .ojve9vic .nhha { display: none; }

/* score: тільки велике число, /10 приховано */
.b2ap2p .ojve9vic strong { font-size: 1.6rem; font-weight: 900; color: var(--accent); }
.b2ap2p .s35e418z { display: none; }

/* score-pill: число/10 рівного розміру в pill */
.y0bkj0v .ojve9vic strong {
  font-size: 0.95rem; font-weight: 800; color: var(--accent);
  background: var(--accent-bg); border-radius: 100px;
  padding: 4px 14px; white-space: nowrap;
}
.y0bkj0v .rjb9r,
.y0bkj0v .s35e418z { font-size: 1em; }

/* score-box: тільки число в суцільному квадраті */
.pmnbk .ojve9vic strong {
  font-size: 1.15rem; font-weight: 900; color: var(--bg-page);
  background: var(--accent); border-radius: 6px;
  padding: 4px 10px;
}
.pmnbk .s35e418z { display: none; }

/* ── FAQ ─────────────────────────────────────────────────────────────────────*/
.rfmdj146 { margin: 16px 0; }
.iu0qsjto { background: var(--bg-card); border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
.iu0qsjto summary {
  padding: 14px 18px; font-weight: 600; color: var(--accent-pale);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
}
.iu0qsjto summary::after { content: "+"; color: var(--accent); }
.iu0qsjto[open] summary::after { content: "−"; }
.iu0qsjto p { padding: 0 18px 14px; color: var(--text-muted); font-size: 0.95rem; }

/* ── Sections ────────────────────────────────────────────────────────────────*/
.gh0dgtq { margin-bottom: 0; }
.byym h2.mrjmes3 { color: var(--accent-light); border-color: var(--accent); }
.isj58 h2.mrjmes3 { color: var(--accent-light); border-color: var(--accent); }

/* ── callout_colors variants ─────────────────────────────────────────────────*/

/* classic — default, вже задано в color_scheme */

/* vivid: смарагд / рожевий / фіолетовий */
.mrhu .z41j     { background: #052e16; border-color: #10b981; }
.mrhu .ptsdd { background: #2d0a1e; border-color: #f43f5e; }
.mrhu .vjrll    { background: #1e1036; border-color: #a855f7; }
.mrhu .pbu5tuh strong  { color: #f1f5f9; }
.mrhu .pbu5tuh p       { color: #cbd5e1; }
.mrhu .zfmlnnrv    .z41j     .jzsqth4::before,
.mrhu .dom27g  .z41j     .jzsqth4::before,
.mrhu .hwv7nm  .z41j     .jzsqth4::before,
.mrhu .fgnnsdu3 .z41j     .jzsqth4::before { color: #10b981; }
.mrhu .zfmlnnrv    .ptsdd .jzsqth4::before,
.mrhu .dom27g  .ptsdd .jzsqth4::before,
.mrhu .hwv7nm  .ptsdd .jzsqth4::before,
.mrhu .fgnnsdu3 .ptsdd .jzsqth4::before { color: #f43f5e; }
.mrhu .zfmlnnrv    .vjrll    .jzsqth4::before,
.mrhu .dom27g  .vjrll    .jzsqth4::before,
.mrhu .hwv7nm  .vjrll    .jzsqth4::before,
.mrhu .fgnnsdu3 .vjrll    .jzsqth4::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.d1xm .z41j     { background: #2d2000; border-color: #eab308; }
.d1xm .ptsdd { background: #2d0b0b; border-color: #ef4444; }
.d1xm .vjrll    { background: #2d1600; border-color: #f97316; }
.d1xm .pbu5tuh strong  { color: #f1f5f9; }
.d1xm .pbu5tuh p       { color: #cbd5e1; }
.d1xm .zfmlnnrv    .z41j     .jzsqth4::before,
.d1xm .dom27g  .z41j     .jzsqth4::before,
.d1xm .hwv7nm  .z41j     .jzsqth4::before,
.d1xm .fgnnsdu3 .z41j     .jzsqth4::before { color: #eab308; }
.d1xm .zfmlnnrv    .ptsdd .jzsqth4::before,
.d1xm .dom27g  .ptsdd .jzsqth4::before,
.d1xm .hwv7nm  .ptsdd .jzsqth4::before,
.d1xm .fgnnsdu3 .ptsdd .jzsqth4::before { color: #ef4444; }
.d1xm .zfmlnnrv    .vjrll    .jzsqth4::before,
.d1xm .dom27g  .vjrll    .jzsqth4::before,
.d1xm .hwv7nm  .vjrll    .jzsqth4::before,
.d1xm .fgnnsdu3 .vjrll    .jzsqth4::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.v9aq8 .z41j     { background: #0c1a2e; border-color: #38bdf8; }
.v9aq8 .ptsdd { background: #12103a; border-color: #818cf8; }
.v9aq8 .vjrll    { background: #0a2020; border-color: #2dd4bf; }
.v9aq8 .pbu5tuh strong  { color: #f1f5f9; }
.v9aq8 .pbu5tuh p       { color: #cbd5e1; }
.v9aq8 .zfmlnnrv    .z41j     .jzsqth4::before,
.v9aq8 .dom27g  .z41j     .jzsqth4::before,
.v9aq8 .hwv7nm  .z41j     .jzsqth4::before,
.v9aq8 .fgnnsdu3 .z41j     .jzsqth4::before { color: #38bdf8; }
.v9aq8 .zfmlnnrv    .ptsdd .jzsqth4::before,
.v9aq8 .dom27g  .ptsdd .jzsqth4::before,
.v9aq8 .hwv7nm  .ptsdd .jzsqth4::before,
.v9aq8 .fgnnsdu3 .ptsdd .jzsqth4::before { color: #818cf8; }
.v9aq8 .zfmlnnrv    .vjrll    .jzsqth4::before,
.v9aq8 .dom27g  .vjrll    .jzsqth4::before,
.v9aq8 .hwv7nm  .vjrll    .jzsqth4::before,
.v9aq8 .fgnnsdu3 .vjrll    .jzsqth4::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.tsiz .z41j     { background: var(--accent-bg); border-color: var(--accent); }
.tsiz .ptsdd { background: var(--accent-bg-light); border-color: var(--accent-light); }
.tsiz .vjrll    { background: var(--accent-bg); border-color: var(--accent-pale); }
.tsiz .zfmlnnrv    .jzsqth4::before,
.tsiz .dom27g  .jzsqth4::before,
.tsiz .hwv7nm  .jzsqth4::before,
.tsiz .fgnnsdu3 .jzsqth4::before { color: var(--accent-light) !important; }

/* ── pros_cons_colors variants ───────────────────────────────────────────────*/

/* base: іконки через ::before на .snqgqc0w / .mtzbqk */
.snqgqc0w::before,
.mtzbqk::before { margin-right: 5px; }

/* classic — фіксовані контрастні кольори незалежно від акценту */
.myx6b .xe9vb ul li,
.myx6b .lmxtsxj4 li         { color: #4ade80; }
.myx6b .xe9vb .snqgqc0w { color: #22c55e; }
.myx6b .iy35f ul li,
.myx6b .ei9yqej li         { color: #f87171; }
.myx6b .iy35f .mtzbqk { color: #ef4444; }

/* blue: синій pros / amber cons */
.svpd2qou .xe9vb { background: #0c1a2e; }
.svpd2qou .iy35f { background: #2d1f00; }
.svpd2qou .xe9vb .snqgqc0w { color: #93c5fd; }
.svpd2qou .iy35f .mtzbqk { color: #fcd34d; }
.svpd2qou .xe9vb ul li,
.svpd2qou .lmxtsxj4 li            { color: #bfdbfe; }
.svpd2qou .iy35f ul li,
.svpd2qou .ei9yqej li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.prkctp .xe9vb { background: var(--accent-bg); }
.prkctp .iy35f { background: var(--accent-bg-light); }
.prkctp .xe9vb .snqgqc0w { color: var(--accent-pale); }
.prkctp .iy35f .mtzbqk { color: var(--accent-light); }
.prkctp .xe9vb ul li,
.prkctp .lmxtsxj4 li          { color: var(--text-body); }
.prkctp .iy35f ul li,
.prkctp .ei9yqej li          { color: var(--text-body); }

/* ── pros_cons_icons variants ────────────────────────────────────────────────*/

/* check: ✓ / ✗ */
.gxs7 .snqgqc0w::before { content: "✓ "; }
.gxs7 .mtzbqk::before { content: "✗ "; }

/* arrows: → / ← */
.tfrp22p .snqgqc0w::before { content: "→ "; }
.tfrp22p .mtzbqk::before { content: "← "; }

/* marks: ★ / ✕ */
.lpdncvg .snqgqc0w::before { content: "★ "; }
.lpdncvg .mtzbqk::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.d5pw4 .snqgqc0w::before { content: "◆ "; }
.d5pw4 .mtzbqk::before { content: "▲ "; }

/* ── callout_style variants ──────────────────────────────────────────────────*/

/* sidebar (default) — вже визначено в базових .vqqrh* */

/* outline: рамка з усіх боків, без заливки */
.azfn4 .pbu5tuh { background: transparent; border-left: none; border: 1.5px solid; }
.azfn4 .z41j     { border-color: var(--c-tip-border); }
.azfn4 .ptsdd { border-color: var(--c-warn-border); }
.azfn4 .vjrll    { border-color: #60a5fa; }
/* outline: прозорий фон — текст завжди від сторінки */
.azfn4 .pbu5tuh strong { color: var(--text-primary); }
.azfn4 .pbu5tuh p      { color: var(--text-muted); }

/* topbar: смуга зверху */
.q5qa3b .pbu5tuh { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.q5qa3b .z41j     { border-top-color: var(--c-tip-border); }
.q5qa3b .ptsdd { border-top-color: var(--c-warn-border); }
.q5qa3b .vjrll    { border-top-color: #60a5fa; }

/* filled: насичений кольоровий фон — завжди темний, білий текст завжди читабельний */
.h44w6x4q .pbu5tuh { border-left: none; border-radius: 8px; }
.h44w6x4q .z41j     { background: #065f46; }  /* dark emerald */
.h44w6x4q .ptsdd { background: #92400e; }  /* dark amber */
.h44w6x4q .vjrll    { background: #1e3a8a; }  /* dark blue */
.h44w6x4q .pbu5tuh strong,
.h44w6x4q .pbu5tuh p { color: #fff; }
.h44w6x4q .jzsqth4::before { color: rgba(255,255,255,0.85) !important; }
/* colors варіанти overrideять фони і для filled */
.mrhu.h44w6x4q .z41j,
.mrhu .h44w6x4q .z41j     { background: #052e16; }
.mrhu.h44w6x4q .ptsdd,
.mrhu .h44w6x4q .ptsdd { background: #2d0a1e; }
.mrhu.h44w6x4q .vjrll,
.mrhu .h44w6x4q .vjrll    { background: #1e1036; }
.d1xm.h44w6x4q .z41j,
.d1xm .h44w6x4q .z41j      { background: #2d2000; }
.d1xm.h44w6x4q .ptsdd,
.d1xm .h44w6x4q .ptsdd  { background: #2d0b0b; }
.d1xm.h44w6x4q .vjrll,
.d1xm .h44w6x4q .vjrll     { background: #2d1600; }
.v9aq8.h44w6x4q .z41j,
.v9aq8 .h44w6x4q .z41j      { background: #0c1a2e; }
.v9aq8.h44w6x4q .ptsdd,
.v9aq8 .h44w6x4q .ptsdd  { background: #12103a; }
.v9aq8.h44w6x4q .vjrll,
.v9aq8 .h44w6x4q .vjrll     { background: #0a2020; }

/* ghost: без рамки, мінімальний фон */
.wz88 .pbu5tuh { border-left: none; border-radius: 6px; padding: 10px 14px; }
.wz88 .z41j     { background: color-mix(in srgb, var(--c-tip-border) 10%, transparent); }
.wz88 .ptsdd { background: color-mix(in srgb, var(--c-warn-border) 10%, transparent); }
.wz88 .vjrll    { background: color-mix(in srgb, #60a5fa 10%, transparent); }
/* ghost: майже прозорий фон — текст завжди від сторінки */
.wz88 .pbu5tuh strong { color: var(--text-primary); }
.wz88 .pbu5tuh p      { color: var(--text-muted); }

/* card: картка з тінню */
.wh7eos0r .pbu5tuh { border-left: none; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.25); }

/* ── callout_icons variants ──────────────────────────────────────────────────*/
/* Приховуємо порожній span та рендеримо іконку через ::before */

.zfmlnnrv .jzsqth4,
.dom27g .jzsqth4,
.hwv7nm .jzsqth4,
.fgnnsdu3 .jzsqth4 { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.zfmlnnrv .jzsqth4::before,
.dom27g .jzsqth4::before,
.hwv7nm .jzsqth4::before,
.fgnnsdu3 .jzsqth4::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.zfmlnnrv .z41j     .jzsqth4::before { content: "✦"; color: var(--c-tip-border); }
.zfmlnnrv .ptsdd .jzsqth4::before { content: "▲"; color: var(--c-warn-border); }
.zfmlnnrv .vjrll    .jzsqth4::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.dom27g .z41j     .jzsqth4::before { content: "★"; color: var(--c-tip-border); }
.dom27g .ptsdd .jzsqth4::before { content: "◆"; color: var(--c-warn-border); }
.dom27g .vjrll    .jzsqth4::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.hwv7nm .z41j     .jzsqth4::before { content: "▶"; color: var(--c-tip-border); }
.hwv7nm .ptsdd .jzsqth4::before { content: "■"; color: var(--c-warn-border); }
.hwv7nm .vjrll    .jzsqth4::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.fgnnsdu3 .z41j     .jzsqth4::before { content: "→"; color: var(--c-tip-border); }
.fgnnsdu3 .ptsdd .jzsqth4::before { content: "⬥"; color: var(--c-warn-border); }
.fgnnsdu3 .vjrll    .jzsqth4::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.t4hi .mu0b .ogp3,
.t4hi .e8dcg6lc .ogp3  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.t4hi .yk7llrs                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.t4hi .md6ge                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.t4hi .r0ydfmr            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.t4hi .n72t          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.t4hi .ul5119                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.md1qxm .mu0b .ogp3,
.md1qxm .e8dcg6lc .ogp3,
.md1qxm .yk7llrs,
.md1qxm .md6ge,
.md1qxm .r0ydfmr,
.md1qxm .n72t,
.md1qxm .ul5119,
.md1qxm .wh7eos0r .pbu5tuh { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.hpx0tw   body, .hpx0tw   { font-size: 0.9rem; }
.hpx0tw   .kf2c, .hpx0tw .vsk6, .hpx0tw .h7mh,
.hpx0tw   .h90f7s2, .hpx0tw .xcg16l { font-size: 0.9rem; }
.hpx0tw   .txcus8, .hpx0tw .rf3lvp { font-size: 0.9rem; }

.sjz3f   .kf2c, .sjz3f .vsk6, .sjz3f .h7mh,
.sjz3f   .h90f7s2, .sjz3f .xcg16l { font-size: 0.9rem; }
.sjz3f   .txcus8, .sjz3f .rf3lvp { font-size: 0.9rem; }

/* base — default, вже задано */

.pxt5o   .kf2c, .pxt5o .vsk6, .pxt5o .h7mh,
.pxt5o   .h90f7s2, .pxt5o .xcg16l { font-size: 1.08rem; }
.pxt5o   .txcus8, .pxt5o .rf3lvp { font-size: 1.05rem; }
.pxt5o   .xpirx1j { font-size: 0.97rem; }

/* ── type_scale variants ─────────────────────────────────────────────────────*/
/* default — базові розміри вже визначені (h1=2.6 h2=1.6 h3=1.2) */

/* large */
.ol91 .xl4o9f      { font-size: 3.2rem; }
.ol91 h2.mrjmes3 { font-size: 1.9rem; }
.ol91 h3.tr92kp0     { font-size: 1.4rem; }

/* display */
.ze8ch6kg .xl4o9f      { font-size: 3.8rem; }
.ze8ch6kg h2.mrjmes3 { font-size: 2.2rem; }
.ze8ch6kg h3.tr92kp0     { font-size: 1.6rem; }

/* ── section_divider variants ────────────────────────────────────────────────*/
/* ::before — абсолютно позиційований на верхньому краю нової секції */
.gh0dgtq + .gh0dgtq { position: relative; }

/* Спільна база: abs-позиція на межі між секціями */
.jq86c3uy   .gh0dgtq + .gh0dgtq::before,
.hx9sp  .gh0dgtq + .gh0dgtq::before,
.ebfm   .gh0dgtq + .gh0dgtq::before,
.sqy82   .gh0dgtq + .gh0dgtq::before,
.seydpn   .gh0dgtq + .gh0dgtq::before,
.e3pypn .gh0dgtq + .gh0dgtq::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}

/* line: тонка акцентна лінія */
.jq86c3uy .gh0dgtq + .gh0dgtq::before {
  content: ""; height: 1px; background: var(--accent); opacity: 0.5;
}

/* thick: товста градієнтна смуга */
.hx9sp .gh0dgtq + .gh0dgtq::before {
  content: ""; height: 4px;
  background: linear-gradient(90deg, var(--grad-start), var(--accent), var(--grad-end));
}

/* dots: три крапки по центру */
.ebfm .gh0dgtq + .gh0dgtq::before {
  content: "● ● ●";
  text-align: center; font-size: 0.55rem; letter-spacing: 0.5em;
  color: var(--accent); opacity: 0.7; line-height: 1;
  padding-top: 6px;
}

/* fade: лінія що розчиняється по краях */
.sqy82 .gh0dgtq + .gh0dgtq::before {
  content: ""; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 25%, var(--accent) 75%, transparent 100%);
  opacity: 0.6;
}

/* gap: трохи більший відступ, без декору; скасовуємо inner_pad щоб не стекалось */
.jg4h9 .gh0dgtq { margin-bottom: 16px; }
.jg4h9 .gh0dgtq + .gh0dgtq { margin-top: 0; }
.jg4h9 .lztevt8f { padding-top: 0; padding-bottom: 0; }

/* dash: пунктирна лінія */
.seydpn .gh0dgtq + .gh0dgtq::before {
  content: ""; border-top: 2px dashed var(--accent); opacity: 0.5;
}

/* stitch: строчка (дрібні крапки) */
.e3pypn .gh0dgtq + .gh0dgtq::before {
  content: ""; border-top: 3px dotted var(--accent); opacity: 0.5;
}

/* wave: заповнена хвиля hero-style — ::before виступає вгору з нової секції */
.crfj0ath .gh0dgtq + .gh0dgtq::before,
.t8dc .gh0dgtq + .gh0dgtq::before,
.s2z2b .gh0dgtq + .gh0dgtq::before {
  content: ""; display: block;
  position: absolute; top: -70px; left: 0; right: 0; height: 70px;
  background: var(--bg-page);
  pointer-events: none; z-index: 2;
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}

/* section_bg=even: парні секції мають bg-surface, непарні — bg-page */
.dq9ik8q .crfj0ath .gh0dgtq:nth-child(even)::before,
.dq9ik8q .t8dc .gh0dgtq:nth-child(even)::before,
.dq9ik8q .s2z2b .gh0dgtq:nth-child(even)::before { background: var(--bg-surface); }

/* section_bg=stripe: парні секції мають bg-card */
.zyzq2 .crfj0ath .gh0dgtq:nth-child(even)::before,
.zyzq2 .t8dc .gh0dgtq:nth-child(even)::before,
.zyzq2 .s2z2b .gh0dgtq:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.crfj0ath .gh0dgtq + .gh0dgtq::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C12 0 37 0 50 20 C63 40 88 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C12 0 37 0 50 20 C63 40 88 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}

/* wave-b: 2 гребені */
.t8dc .gh0dgtq + .gh0dgtq::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C8 0 17 0 25 20 C33 40 42 40 50 20 C58 0 67 0 75 20 C83 40 92 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C8 0 17 0 25 20 C33 40 42 40 50 20 C58 0 67 0 75 20 C83 40 92 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}

/* wave-c: глибока дуга */
.s2z2b .gh0dgtq + .gh0dgtq::before {
  height: 80px; top: -80px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 40 C20 0 80 0 100 40 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 40 C20 0 80 0 100 40 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}

/* ── hero_wave: SVG-хвиля на нижньому краю hero-bg ──────────────────────────*/
/* ::after з bg-page перекриває нижній край hero у формі хвилі */
.snokvzgz .e6u7,
.rabb5 .e6u7,
.a5hl .e6u7 { overflow: hidden; }

/* wave: додатковий простір щоб хвиля не закривала CTA */
.snokvzgz .cnhyd7h,
.rabb5 .cnhyd7h { margin-bottom: 60px; }
.a5hl .cnhyd7h { margin-bottom: 70px; }
.snokvzgz .g1fiecwy,
.rabb5 .g1fiecwy { padding-bottom: 60px; }
.a5hl .g1fiecwy { padding-bottom: 70px; }

.snokvzgz .e6u7::before,
.rabb5 .e6u7::before,
.a5hl .e6u7::before {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--bg-page);
  pointer-events: none; z-index: 2;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* wave-a: плавна S-хвиля (1 гребінь) */
.snokvzgz .e6u7::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C12 0 37 0 50 20 C63 40 88 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C12 0 37 0 50 20 C63 40 88 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}

/* wave-b: 2 гребені */
.rabb5 .e6u7::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C8 0 17 0 25 20 C33 40 42 40 50 20 C58 0 67 0 75 20 C83 40 92 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C8 0 17 0 25 20 C33 40 42 40 50 20 C58 0 67 0 75 20 C83 40 92 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}

/* wave-c: глибока дуга */
.a5hl .e6u7::before {
  height: 70px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 40 C20 0 80 0 100 40 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 40 C20 0 80 0 100 40 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}

/* ── hero_grad: gradient direction + color mix ────────────────────────────*/
/* hg-br (default): grad-start → grad-end → accent, 135deg — set in base rules */

/* hero-overlay varies per hg-* too */
.ntu68 .rhj21 { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.mcqi .rhj21 { background: linear-gradient(45deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%); }
.pszykfqz  .rhj21 { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.lwjzis19  .rhj21 { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }

/* hg-bl: зворотний кут */
.ntu68 .iwuhurf7 { background: linear-gradient(225deg, var(--accent) 0%, var(--accent-light) 100%); }
.ntu68 .co0pn0p { background: linear-gradient(225deg, var(--accent), var(--accent-light)); }
.ntu68 .lj40s { background: linear-gradient(225deg, var(--accent-bg) 0%, var(--bg-surface) 100%); }

/* hg-tr: діагональ вгору */
.mcqi .iwuhurf7 { background: linear-gradient(45deg, var(--accent) 0%, var(--accent-light) 100%); }
.mcqi .co0pn0p { background: linear-gradient(45deg, var(--accent), var(--accent-light)); }
.mcqi .lj40s { background: linear-gradient(45deg, var(--bg-surface) 0%, var(--accent-bg) 100%); }

/* hg-r: горизонтальний */
.pszykfqz .iwuhurf7 { background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%); }
.pszykfqz .co0pn0p { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
.pszykfqz .lj40s { background: linear-gradient(90deg, var(--accent-bg) 0%, var(--bg-surface) 100%); }

/* hg-b: вертикальний */
.lwjzis19 .iwuhurf7 { background: linear-gradient(180deg, var(--accent) 0%, var(--accent-light) 100%); }
.lwjzis19 .co0pn0p { background: linear-gradient(180deg, var(--accent), var(--accent-light)); }
.lwjzis19 .lj40s { background: linear-gradient(180deg, var(--accent-bg) 0%, var(--bg-surface) 100%); }

/* hg-solid: суцільний колір без градієнту */
.lfwqw2 .iwuhurf7 { background: var(--accent); }
.lfwqw2 .iwuhurf7 .rhj21 { background: none; }
.lfwqw2 .co0pn0p { background: var(--accent); }
.lfwqw2 .lj40s { background: var(--accent-bg); }
.lfwqw2 .rhj21 { background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%); }


/* ── section_img: розміщення банерного зображення в секції ─────────────────*/
/* top = current (banner вгорі, повна ширина — без override) */

/* left: зображення зліва ~38%, текст обтікає справа */
.x5fo .bm9n { float: left; width: 38%; margin: 0 28px 16px 0; }
.x5fo .bm9n .bqxxn { width: 100%; height: auto; max-height: 280px; object-fit: cover; border-radius: 10px; }
.x5fo .lztevt8f::after { content: ''; display: block; clear: both; }

/* right: зображення справа ~38%, текст обтікає зліва */
.hlyb .bm9n { float: right; width: 38%; margin: 0 0 16px 28px; }
.hlyb .bm9n .bqxxn { width: 100%; height: auto; max-height: 280px; object-fit: cover; border-radius: 10px; }
.hlyb .lztevt8f::after { content: ''; display: block; clear: both; }

/* alt: непарні зліва, парні справа */
.tu3w .gh0dgtq:nth-child(odd)  .bm9n { float: left;  width: 38%; margin: 0 28px 16px 0; }
.tu3w .gh0dgtq:nth-child(even) .bm9n { float: right; width: 38%; margin: 0 0 16px 28px; }
.tu3w .bm9n .bqxxn { width: 100%; height: auto; max-height: 280px; object-fit: cover; border-radius: 10px; }
.tu3w .lztevt8f::after { content: ''; display: block; clear: both; }

/* Великі блочні елементи — clear float щоб не стискались */
.x5fo .kuuzmo1,
.x5fo .idqs,
.hlyb .kuuzmo1,
.hlyb .idqs,
.tu3w .kuuzmo1,
.tu3w .idqs { clear: both; }

/* Маркери списків не мають налазити на float-картинку */
.x5fo .txcus8,
.x5fo .rf3lvp,
.hlyb .txcus8,
.hlyb .rf3lvp,
.tu3w .txcus8,
.tu3w .rf3lvp { overflow: hidden; }


@media (max-width: 640px) {
  .x5fo .bm9n,
  .hlyb .bm9n,
  .tu3w .bm9n { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1100px (задано в .won6sw, .lztevt8f, .yiqm) */
.q145e998 .won6sw,
.q145e998 .lztevt8f,
.q145e998 .yiqm  { max-width: 1100px; }
.q145e998 { --content-mw: 1100px; }
.k6roen .won6sw,
.k6roen .lztevt8f,
.k6roen .yiqm  { max-width: 1200px; }
.k6roen { --content-mw: 1200px; }
.h8oe5 .won6sw,
.h8oe5 .lztevt8f,
.h8oe5 .yiqm  { max-width: 1320px; }
.h8oe5 { --content-mw: 1320px; }

/* ── Breadcrumb ─────────────────────────────────────────────────────────────*/
.ighmlfdp { font-size: 0.82rem; color: var(--text-muted); }
/* bc-inner: лише flex-контейнер, без padding/max-width — кожен варіант задає сам */
.dbri { display: flex; align-items: center; }
.tpibeb {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
}
.l7sq { display: flex; align-items: center; }
.r144v39 { color: var(--accent); text-decoration: none; padding: 2px 5px; border-radius: 4px; }
.r144v39:hover { text-decoration: underline; }
.l1owm { margin: 0 3px; opacity: 0.45; }
.l1owm::before { content: '/'; }
.ekv68sw { padding: 2px 5px; color: var(--text-main); }

/* above: bc-inner центрує як page-wrap */
.ieyro5 .ighmlfdp {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
}
.ieyro5 .dbri { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* below: всередині page-wrap — bc-inner лише відступ під ліву смугу */
.glaahhf .ighmlfdp {
  border-left: 3px solid var(--accent);
  padding: 4px 0;
  margin-bottom: 20px;
}
.glaahhf .dbri { padding: 0 0 0 12px; }

/* float: bc-float-wrap — зовнішній контейнер; bc-inner тільки внутрішній padding картки */
.fgeuamd1 {
  max-width: 1100px; margin: -38px auto 0;
  padding: 0 24px; position: relative; z-index: 5;
}
.mlq6y3n .dbri { padding: 0 16px; }
.mlq6y3n .ighmlfdp {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
}
.mlq6y3n .won6sw { padding-top: 28px; }

/* content-width: above — обидва класи на <body>, тому без пробілу */
.q145e998.ieyro5 .dbri { max-width: 1100px; }
.k6roen.ieyro5 .dbri { max-width: 1200px; }
.h8oe5.ieyro5 .dbri { max-width: 1320px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.q145e998 .fgeuamd1 { max-width: 1100px; }
.k6roen .fgeuamd1 { max-width: 1200px; }
.h8oe5 .fgeuamd1 { max-width: 1320px; }

/* ── section_gap: відстань між секціями (padding на .gh0dgtq) ───────────*/
.ky47c4ey .gh0dgtq { padding-top: 16px; padding-bottom: 16px; }
.wfmx .gh0dgtq { padding-top: 24px; padding-bottom: 24px; }
/* gap-md = base (32px) — без override */
.aeuv .gh0dgtq { padding-top: 40px; padding-bottom: 40px; }
.ylpj .gh0dgtq { padding-top: 52px; padding-bottom: 52px; }

/* gap-varied: кожна секція має власний відступ циклом 4 */
.b7uhfr .gh0dgtq:nth-child(4n+1) { padding-top: 20px;  padding-bottom: 20px; }
.b7uhfr .gh0dgtq:nth-child(4n+2) { padding-top: 36px;  padding-bottom: 36px; }
.b7uhfr .gh0dgtq:nth-child(4n+3) { padding-top: 28px;  padding-bottom: 28px; }
.b7uhfr .gh0dgtq:nth-child(4n)   { padding-top: 44px;  padding-bottom: 44px; }

/* ── inner_pad: вертикальний відступ всередині section-inner ─────────────────*/
/* base = 24px (задано в .lztevt8f вище) */
.z9w2km .lztevt8f { padding-top: 10px;  padding-bottom: 10px; }
.d8l7 .lztevt8f { padding-top: 18px;  padding-bottom: 18px; }
/* ipad-md = base (24px) — без override */
.d4c0alm .lztevt8f { padding-top: 36px;  padding-bottom: 36px; }
.sy1ru .lztevt8f { padding-top: 48px;  padding-bottom: 48px; }

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.y8h42 { font-weight: 300; }
.y8h42 h2.mrjmes3 { font-weight: 600; }
.y8h42 h3.tr92kp0     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.wghr5g4g { font-weight: 500; }
.wghr5g4g h2.mrjmes3 { font-weight: 800; }
.wghr5g4g h3.tr92kp0     { font-weight: 700; }
/* fw-600: semibold */
.pjvf3x2 { font-weight: 600; }
.pjvf3x2 h2.mrjmes3 { font-weight: 900; }
.pjvf3x2 h3.tr92kp0     { font-weight: 800; }
.pjvf3x2 .pbu5tuh strong,
.pjvf3x2 .pbu5tuh strong { font-weight: 600; }
/* .pjvf3x2 .vsk6, .pjvf3x2 .h90f7s2 { font-weight: 600; } */

/* ── Navbar CTA button ───────────────────────────────────────────────────────*/
.nkvfhs {
  margin-left: 16px; flex-shrink: 0;
  padding: 7px 16px; font-size: 0.82rem; font-weight: 700; border-radius: 6px;
}
/* show/hide via body class */
.ilf2f0y .nkvfhs { display: none; }
/* on mobile: hide navbar cta when menu is open (it's inside the burger zone) */
@media (max-width: 640px) { .nkvfhs { display: none; } }
/* solid by default */
.nkvfhs { background: var(--accent) !important; color: #fff !important; border: none !important; }
.nkvfhs:hover { opacity: 0.85; }
/* gradient variant — синхронізовано з hg-* btn gradients */
.qpj01y .nkvfhs { background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important; }
/* on accent/glass navbar: grad-start → accent-light — контрастує з accent-фоном */
.tavtoe3 .nkvfhs,
.v5txp  .nkvfhs { background: var(--grad-start) !important; color: #fff !important; border: none !important; }
.tavtoe3 .nkvfhs:hover,
.v5txp  .nkvfhs:hover { opacity: 0.88; }
.qpj01y.tavtoe3 .nkvfhs,
.qpj01y.v5txp  .nkvfhs { background: linear-gradient(135deg, var(--grad-start), var(--accent-light)) !important; }

/* ── Sticky corner CTA button ────────────────────────────────────────────────*/
.w6mfc8 {
  position: fixed; bottom: 32px; z-index: 900;
  padding: 12px 22px; font-size: 0.9rem; font-weight: 700; border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform .15s, opacity .15s;
}
.w6mfc8:hover { transform: translateY(-2px); opacity: 0.92; }
/* always solid background regardless of btn_style variant */
.w6mfc8 { background: var(--accent) !important; color: #fff !important; border: none !important; }
/* position by variant */
.e2301x .w6mfc8 { display: none; }
.vo71v9 .w6mfc8 { right: 32px; }
.uykap274  .w6mfc8 { left: 32px; }
@media (max-width: 480px) {
  .vo71v9 .w6mfc8 { right: 20px; bottom: 20px; }
  .uykap274  .w6mfc8 { left: 20px; bottom: 20px; }
}

/* ── Footer ──────────────────────────────────────────────────────────────────*/
.cizn { background: var(--bg-surface); border-top: 1px solid var(--border); margin-top: 60px; }
.yiqm { max-width: 1100px; margin: 0 auto; padding: 32px 24px; }
.lnfd { color: var(--text-faint); font-size: 0.85rem; margin-bottom: 6px; }
.rudd2 { color: var(--text-dim); font-size: 0.8rem; }
/* brand/logo */
.y9o3 { display: inline-flex; align-items: center; gap: 8px; color: var(--text); text-decoration: none; font-weight: 700; font-size: 1rem; margin-bottom: 14px; }
.y9o3 img { height: 26px; width: auto; object-fit: contain; }
.p40n { color: var(--text-faint); font-size: 0.82rem; margin: 0; }
/* footer nav links */
.bb11 { display: flex; flex-direction: column; gap: 6px; }
.bb11 a, .haq7n a { color: var(--text); text-decoration: none; font-size: 0.87rem; transition: color .15s; }
.bb11 a:hover, .haq7n a:hover { color: var(--accent-light); }
.bb11 .w9czc { padding-left: 10px; font-size: 0.82rem; opacity: 0.8; }
.haq7n { display: flex; flex-wrap: wrap; gap: 4px 18px; }

/* minimal */
.dnp8ktb .yiqm { text-align: center; }
.dnp8ktb .haq7n { justify-content: center; margin-bottom: 16px; }
.dnp8ktb .lnfd { margin-top: 0; }

/* service links — менший розмір, відступ зверху */
.aj4ief { margin-top: 10px; }
.aj4ief a { font-size: 0.8rem; opacity: 0.65; }

/* mobile footer */
@media (max-width: 640px) {
  .yiqm { padding-left: 16px; padding-right: 16px; }
  .jplq5x .yiqm { padding: 20px 16px; }
  .haq7n { gap: 4px 12px; }
  .lnfd { font-size: 0.78rem; }
}


/* split — лого+tagline | topic nav (2-col grid) | service+legal */
.vryu .e07vgxm { display: grid; grid-template-columns: 1fr 1.6fr 1fr; gap: 2.5rem; align-items: start; }
.vryu .q500y2nm .y9o3 { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; text-decoration: none; color: var(--text); margin-bottom: 10px; }
.vryu .p40n { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.vryu .yzswt { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px 16px; }
.vryu .yzswt a { font-size: 0.88rem; color: var(--text-muted); text-decoration: none; }
.vryu .yzswt a:hover { color: var(--accent); }
.vryu .lnfd { font-size: 0.78rem; color: var(--text-faint); margin: 14px 0 4px; line-height: 1.5; }
.vryu .rudd2 { font-size: 0.78rem; color: var(--text-faint); margin: 0; }
@media (max-width: 768px) { .vryu .e07vgxm { grid-template-columns: 1fr 1fr; } .vryu .q500y2nm { grid-column: 1 / -1; } }
@media (max-width: 480px) { .vryu .e07vgxm { grid-template-columns: 1fr; } }


/* ribbon — компактний 1 рядок, service + disclaimer дрібно знизу */
.i3zlxw .g78ychny { display: flex; align-items: center; gap: 0; flex-wrap: wrap; padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 12px; }
.i3zlxw .y9o3 { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1rem; text-decoration: none; color: var(--text); margin-right: auto; flex-shrink: 0; }
.i3zlxw .urref0 { display: flex; flex-wrap: wrap; gap: 4px 16px; margin-right: 24px; }
.i3zlxw .urref0 a { font-size: 0.87rem; color: var(--text-muted); text-decoration: none; }
.i3zlxw .urref0 a:hover { color: var(--accent); }
.ispkr8iv { font-size: 0.8rem; color: var(--text-faint); margin: 0; white-space: nowrap; }
.i3zlxw .lw9x { display: flex; align-items: baseline; gap: 1.5rem; flex-wrap: wrap; }
.i3zlxw .z39azpr2 { display: flex; flex-wrap: wrap; gap: 4px 14px; }
.i3zlxw .z39azpr2 a { font-size: 0.78rem; color: var(--text-faint); text-decoration: none; }
.i3zlxw .z39azpr2 a:hover { color: var(--accent); }
.i3zlxw .lnfd { font-size: 0.78rem; color: var(--text-faint); margin: 0; }
@media (max-width: 640px) { .i3zlxw .g78ychny { gap: 12px; } .i3zlxw .y9o3 { margin-right: 0; width: 100%; } }

/* mega — верхня зона лого+2 колонки лінків, нижня legal-смуга */
.h5323z .cgc0l { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; padding-bottom: 28px; border-bottom: 1px solid var(--border); margin-bottom: 20px; align-items: start; }
.h5323z .did9twj .y9o3 { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; text-decoration: none; color: var(--text); margin-bottom: 10px; }
.h5323z .p40n { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
.h5323z .is9y2ft { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin: 0 0 12px; }
.h5323z .yzswt { display: flex; flex-direction: column; gap: 9px; }
.h5323z .yzswt a { font-size: 0.88rem; color: var(--text-muted); text-decoration: none; }
.h5323z .yzswt a:hover { color: var(--accent); }
.h5323z .bvpv { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.h5323z .lnfd { font-size: 0.78rem; color: var(--text-faint); margin: 0; flex: 1; }
.h5323z .rudd2 { font-size: 0.78rem; color: var(--text-faint); margin: 0; white-space: nowrap; }
@media (max-width: 768px) { .h5323z .cgc0l { grid-template-columns: 1fr 1fr; } .h5323z .did9twj { grid-column: 1 / -1; } }
@media (max-width: 480px) { .h5323z .cgc0l { grid-template-columns: 1fr; } }

/* columns — 3 колонки: бренд | links (2-col grid) | legal */
.zkh85 .e830peu { display: grid; grid-template-columns: 1fr 2fr 1.2fr; gap: 2rem; align-items: start; }
.zkh85 .bb11 { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 6px 20px; }
@media (max-width: 760px) { .zkh85 .e830peu { grid-template-columns: 1fr 1fr; } .zkh85 .ahsic6:first-child { grid-column: 1 / -1; } }
@media (max-width: 480px) { .zkh85 .e830peu { grid-template-columns: 1fr; } }
/* columns без topic-сторінок — 2 колонки: бренд | service-лінки у grid */
.myvieo9 .e830peu { grid-template-columns: 1fr 2fr; }
.myvieo9 .i8nw .bb11 { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
@media (max-width: 480px) { .myvieo9 .e830peu { grid-template-columns: 1fr; } }

/* centered — всі елементи по центру */
.s371tq .yiqm { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.s371tq .haq7n { justify-content: center; }

/* ── nav_theme: колір фону navbar і footer ───────────────────────────────────*/
/* surface = default — без override */

/* page: bg-page замість bg-surface */
.j6r7h .oohd8      { background: var(--bg-page); border-bottom-color: var(--border-alt); }
.j6r7h .cizn { background: var(--bg-page); border-top-color: var(--border-alt); }

/* dark: завжди темний, незалежно від теми */
.ej2cfk5h .oohd8      { background: #0d1117; border-bottom-color: #21262d; }
.ej2cfk5h .nk5zi7 { color: var(--accent-light); }
.ej2cfk5h .t9aj8v63 { --msep-color: #8b949e; }
.ej2cfk5h .t9aj8v63 a { color: #8b949e; }
.ej2cfk5h .t9aj8v63 a:hover { color: var(--accent-light); }
.ej2cfk5h .xikk { color: #8b949e; }
.ej2cfk5h .cizn { background: #0d1117; border-top-color: #21262d; }
.ej2cfk5h .lnfd,
.ej2cfk5h .rudd2 { color: #6e7681; }
.ej2cfk5h .bb11 a, .ej2cfk5h .haq7n a,
.ej2cfk5h .yzswt a, .ej2cfk5h .urref0 a,
.ej2cfk5h .z39azpr2 a, .ej2cfk5h .y9o3 { color: #8b949e; }
.ej2cfk5h .bb11 a:hover, .ej2cfk5h .haq7n a:hover,
.ej2cfk5h .yzswt a:hover, .ej2cfk5h .urref0 a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .ej2cfk5h .t9aj8v63 { background: #0d1117; border-top-color: #21262d; }
  .ej2cfk5h .t9aj8v63 li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.dwc6t2 .oohd8      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.dwc6t2 .nk5zi7 { color: var(--accent); }
.dwc6t2 .t9aj8v63 { --msep-color: #475569; }
.dwc6t2 .t9aj8v63 a { color: #475569; }
.dwc6t2 .t9aj8v63 a:hover { color: var(--accent); }
.dwc6t2 .xikk { color: #64748b; }
.dwc6t2 .cizn { background: #f0f4f8; border-top-color: #cbd5e1; }
.dwc6t2 .lnfd,
.dwc6t2 .rudd2 { color: #64748b; }
.dwc6t2 .bb11 a, .dwc6t2 .haq7n a,
.dwc6t2 .yzswt a, .dwc6t2 .urref0 a,
.dwc6t2 .z39azpr2 a, .dwc6t2 .y9o3 { color: #374151; }
.dwc6t2 .bb11 a:hover, .dwc6t2 .haq7n a:hover,
.dwc6t2 .yzswt a:hover, .dwc6t2 .urref0 a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .dwc6t2 .t9aj8v63 { background: #f0f4f8; border-top-color: #cbd5e1; }
  .dwc6t2 .t9aj8v63 li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.tavtoe3 .oohd8      { background: var(--accent); border-bottom-color: var(--accent-light); }
.tavtoe3 .nk5zi7 { color: #fff; }
.tavtoe3 .t9aj8v63 { --msep-color: rgba(255,255,255,0.82); }
.tavtoe3 .t9aj8v63 a { color: rgba(255,255,255,0.82); }
.tavtoe3 .t9aj8v63 a:hover { color: #fff; }
.tavtoe3 .xikk { color: rgba(255,255,255,0.9); }
.tavtoe3 .sqzn2n a { color: var(--text-primary) !important; }
.tavtoe3 .sqzn2n a:hover { color: var(--accent) !important; }
.tavtoe3 .cizn { background: var(--accent); border-top-color: var(--accent-light); }
.tavtoe3 .lnfd,
.tavtoe3 .rudd2 { color: rgba(255,255,255,0.72); }
.tavtoe3 .bb11 a, .tavtoe3 .haq7n a,
.tavtoe3 .yzswt a, .tavtoe3 .urref0 a,
.tavtoe3 .z39azpr2 a, .tavtoe3 .y9o3 { color: rgba(255,255,255,0.82); }
.tavtoe3 .bb11 a:hover, .tavtoe3 .haq7n a:hover,
.tavtoe3 .yzswt a:hover, .tavtoe3 .urref0 a:hover { color: #fff; }
@media (max-width: 640px) {
  .tavtoe3 .t9aj8v63 { background: var(--accent); border-top-color: var(--accent-light); }
  .tavtoe3 .t9aj8v63 li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.v5txp .oohd8 {
  background: color-mix(in srgb, var(--bg-surface) 60%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: color-mix(in srgb, var(--border) 50%, transparent);
}
.v5txp .cizn {
  background: color-mix(in srgb, var(--bg-surface) 60%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top-color: color-mix(in srgb, var(--border) 50%, transparent);
}
@media (max-width: 640px) {
  .v5txp .t9aj8v63 {
    background: color-mix(in srgb, var(--bg-surface) 85%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}

/* ── nav_height: висота navbar (вертикальний padding пунктів меню) ───────────*/
/* md = default (62px) — без override */
.kylb4r .xblsa { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.ckq94xf .xblsa { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.jvh1s5t .xblsa { min-height: 72px; height: auto; }
.igei9 .xblsa { min-height: 84px; height: auto; }

/* ── nav_width: ширина контейнера ────────────────────────────────────────────*/
/* content = default (max-width: 1100px) — без override */
.jplq5x .xblsa { max-width: none; padding: 0 32px; }
.jplq5x .yiqm  { max-width: none; padding: 24px 32px; }
/* navbar-inner expands with content when nav-w-content (never narrower than 1000px default) */
.xmpw.k6roen .xblsa { max-width: 1200px; }
.xmpw.h8oe5 .xblsa { max-width: 1320px; }

/* ── nav_brand: кейс бренднейму (CSS text-transform) ────────────────────────*/
/* cap = default: перша з великої, далі lowercase */
.krlz6   .nk5zi7 { text-transform: capitalize; }
.t43idr4e .nk5zi7 { text-transform: lowercase; }
.d8g6r7 .nk5zi7 { text-transform: uppercase; letter-spacing: 0.06em; }


/* ── nav_logo_shape: форма логотипа ─────────────────────────────────────────*/
/* sq = default */

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.gjf5j, .jc03r {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.uslsmjt .gjf5j,
.uslsmjt .jc03r { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.atluvbl7 .gjf5j,
.atluvbl7 .jc03r { background: linear-gradient(135deg, color-mix(in srgb, var(--grad-start) var(--logo-bg-opacity, 8%), transparent), color-mix(in srgb, var(--grad-end) var(--logo-bg-opacity, 8%), transparent)); border-radius: 8px; padding: 4px; }
.rdmasrts .gjf5j,
.rdmasrts .jc03r { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.yfqhpik .gjf5j,
.yfqhpik .jc03r { background: linear-gradient(135deg, color-mix(in srgb, var(--grad-start) var(--logo-bg-opacity, 8%), transparent), color-mix(in srgb, var(--grad-end) var(--logo-bg-opacity, 8%), transparent)); border-radius: 999px; padding: 4px 8px; }

/* ── nav_menu_weight: жирність пунктів меню ─────────────────────────────────*/
/* regular = default, успадковує font-weight */
.fjvic   .t9aj8v63 a { font-weight: 500; }
.l4sz .t9aj8v63 a { font-weight: 600; }
.oblfn     .t9aj8v63 a { font-weight: 700; }
.pegz    .t9aj8v63 a { font-weight: 800; letter-spacing: 0.01em; }

/* ── nav_menu_sep: розділювач між пунктами на desktop ───────────────────────*/
/* none = без розділювача */
.fax95     .t9aj8v63 > li + li::before,
.bz6slq1    .t9aj8v63 > li + li::before,
.xla0fj    .t9aj8v63 > li + li::before,
.a5gn .t9aj8v63 > li + li::before,
.jj5mako .t9aj8v63 > li + li::before,
.uo9g0x  .t9aj8v63 > li + li::before,
.f3pqskks    .t9aj8v63 > li + li::before {
  margin-right: 10px; margin-left: -10px; opacity: 0.5; color: var(--msep-color);
}
.fax95     .t9aj8v63 > li + li::before { content: "·"; font-size: 1.4em; line-height: 1; vertical-align: middle; }
.bz6slq1    .t9aj8v63 > li + li::before { content: "|"; }
.xla0fj    .t9aj8v63 > li + li::before { content: "—"; }
.a5gn .t9aj8v63 > li + li::before { content: "◆"; font-size: 0.45em; vertical-align: middle; }
.jj5mako .t9aj8v63 > li + li::before { content: "›"; font-size: 1.3em; line-height: 1; }
.uo9g0x  .t9aj8v63 > li + li::before { content: "•"; font-size: 0.8em; vertical-align: middle; }
.f3pqskks    .t9aj8v63 > li + li::before { content: "✦"; font-size: 0.55em; vertical-align: middle; }

/* ── nav_burger: CSS-лінії замість символу ☰ ─────────────────────────────────*/
/* default = символ ☰ без змін; всі інші — тільки @media (завжди перемагають) */
@media (max-width: 640px) {

  /* ховаємо ☰ символ і центруємо кнопку */
  .k0ln .xikk,
  .x9ymfn .xikk,
  .tp5h .xikk,
  .mpvpd9 .xikk,
  .xubwfv9l .xikk {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .k0ln .xikk::before,
  .x9ymfn .xikk::before,
  .tp5h .xikk::before,
  .mpvpd9 .xikk::before,
  .xubwfv9l .xikk::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .k0ln .xikk::before {
    width: 22px; height: 11px;
    background:
      linear-gradient(currentColor, currentColor) 0 0    / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100% /  68% 2px no-repeat;
  }

  /* 3 лінії рівні */
  .x9ymfn .xikk::before {
    width: 22px; height: 17px;
    background:
      linear-gradient(currentColor, currentColor) 0 0    / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 50%  / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat;
  }

  /* 3 лінії спадні: 100 → 70 → 42% */
  .tp5h .xikk::before {
    width: 22px; height: 17px;
    background:
      linear-gradient(currentColor, currentColor) 0 0    / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 50%  /  70% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100% /  42% 2px no-repeat;
  }

  /* 3 лінії, середня коротша: 100 → 52 → 100% */
  .mpvpd9 .xikk::before {
    width: 22px; height: 17px;
    background:
      linear-gradient(currentColor, currentColor) 0 0    / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 50%  /  52% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat;
  }

  /* 4 лінії спадні: 100 → 76 → 52 → 28% */
  .xubwfv9l .xikk::before {
    width: 22px; height: 25px;
    background:
      linear-gradient(currentColor, currentColor) 0 0     / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 33.3% /  76% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 66.6% /  52% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100%  /  28% 2px no-repeat;
  }

}

/* ── nav_mobile: стиль мобільного меню та кнопки бургера ────────────────────*/
/* default = поточна поведінка, без overrides */

/* float: плаваюча картка поряд із бургером ─────────────────────────────── */
@media (max-width: 640px) {
  .jjcfff0 .xikk {
    padding: 5px 14px;
  }
  .jjcfff0 .t9aj8v63 {
    left: auto; right: 12px; top: 54px;
    width: auto; min-width: 180px;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    padding: 6px 0;
  }
  .jjcfff0 .t9aj8v63 li a {
    border-bottom: none; padding: 10px 22px;
  }
  .jjcfff0 .t9aj8v63 li a:hover { background: var(--bg-raised); }
}

/* drawer: висувається з правого боку ───────────────────────────────────── */
@media (max-width: 640px) {
  .g5krhl6x .xikk {
    padding: 5px 10px;
  }
  .g5krhl6x .t9aj8v63 {
    display: flex !important;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: auto;
    width: 72vw; max-width: 280px;
    background: var(--bg-surface);
    border-left: 1px solid var(--border);
    border-top: none; border-radius: 0;
    padding: 72px 0 24px;
    transform: translateX(105%);
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
    z-index: 900;
    box-shadow: -4px 0 24px rgba(0,0,0,0.22);
  }
  .g5krhl6x .t9aj8v63.qz6b { transform: translateX(0); }
  .g5krhl6x .t9aj8v63 li a {
    padding: 14px 28px; font-size: 1rem; border-bottom: 1px solid var(--border);
  }
  .g5krhl6x .t9aj8v63 li:last-child a { border-bottom: none; }
}

/* sheet: з'їжджає знизу ────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .z4zrgimx .xikk {
    padding: 5px 10px;
  }
  .z4zrgimx .t9aj8v63 {
    display: flex !important;
    position: fixed;
    bottom: 0; left: 0; right: 0; top: auto;
    border-radius: 18px 18px 0 0;
    border-top: 1px solid var(--border); border-left: none; border-right: none;
    padding: 20px 0 28px;
    transform: translateY(110%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 900;
    box-shadow: 0 -6px 28px rgba(0,0,0,0.2);
  }
  .z4zrgimx .t9aj8v63::before {
    content: ""; display: block;
    width: 40px; height: 4px;
    background: var(--border); border-radius: 2px;
    margin: 0 auto 14px;
  }
  .z4zrgimx .t9aj8v63.qz6b { transform: translateY(0); }
  .z4zrgimx .t9aj8v63 li a {
    text-align: center; border-bottom: none; padding: 13px 28px; font-size: 1rem;
  }
}

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .m5xfm .xikk {
    padding: 5px 10px;
  }
  .m5xfm .t9aj8v63 {
    display: flex !important;
    position: fixed; inset: 0;
    background: color-mix(in srgb, var(--bg-surface) 96%, transparent);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 4px; border: none; border-radius: 0; padding: 0;
    opacity: 0; pointer-events: none;
    transition: opacity 0.22s ease; z-index: 900;
  }
  .m5xfm .t9aj8v63.qz6b { opacity: 1; pointer-events: auto; }
  .m5xfm .t9aj8v63 li a {
    font-size: 1.5rem; font-weight: 700; border-bottom: none;
    padding: 14px 48px; letter-spacing: 0.01em;
  }
}

/* ── nav_burger_shape: форма обводки бургера (перевизначає hardcoded radius) */
@media (max-width: 640px) {
  .xdqm     .xikk { border-radius: 0 !important; }
  .avxw   .xikk { border-radius: 8px !important; }
  .lcl2 .xikk { border-radius: 50% !important; }
  .zdjnkq   .xikk { border-radius: 999px !important; }
}

/* ── nav_logo_size: розмір логотипу в навбарі ──────────────────────────────*/
/* default = 46px (задано в базовому .a42sux) */
.qf4kn .a42sux { height: 28px; }
.xt3aqqk .a42sux { height: 54px; }
.n4h2z9k .a42sux { height: 54px; }

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .x18i7cpy / .nhha) */
.axkma    .x18i7cpy, .axkma    .nhha { color: #f59e0b; }
.c4lx0yq      .x18i7cpy { font-size: 1rem; letter-spacing: 1.5px; }
.c4lx0yq      .nhha   { font-size: 1.35rem; }
.uwnd7lr    .x18i7cpy, .uwnd7lr    .nhha { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.su9415cg     .x18i7cpy, .su9415cg     .nhha { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.ijsrja .x18i7cpy, .ijsrja .nhha { color: var(--accent); letter-spacing: 2px; }
.tihtp   .x18i7cpy, .tihtp   .nhha { color: #e91e63; letter-spacing: 2px; }
.jhleswm  .x18i7cpy, .jhleswm  .nhha { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.d0ou     .x18i7cpy, .d0ou     .nhha { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

/* ── cs_cols: вигляд колонок таблиці оферів ────────────────────────────────*/
/* default = current: label above val, centered, flex:1 */

/* divided: вертикальний роздільник між сусідніми колонками даних */
.nt366e .y45kratt + .y45kratt {
  border-left: 1px solid var(--border); padding-left: 10px;
}

/* tall: вищі рядки showcase з більшими відступами */
.h3yddexd .md6ge { padding: 18px 24px; min-height: 68px; }

/* bold: великі акцентні значення + малі uppercase лейбли */
.gdlpxdmt .d27ilffp {
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-muted);
}
.gdlpxdmt .rky99vz {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}

/* tinted: кожна колонка даних з тонованим фоном */
.sl9mzn1 .y45kratt {
  background: var(--accent-bg); border-radius: 6px; padding: 2px 8px;
}

/* ── cs_rank: нумерація рядків showcase ────────────────────────────────────*/
/* none = без нумерації (default) */

/* corner: маленький #1/#2 у правому верхньому куті */
.mnohl3 .idqs { counter-reset: cs-rank; }
.mnohl3 .md6ge { position: relative; counter-increment: cs-rank; }
.mnohl3 .md6ge::before {
  content: "#" counter(cs-rank);
  position: absolute; top: 8px; right: 10px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: -.01em;
  color: var(--accent); opacity: 0.5; font-variant-numeric: tabular-nums;
}

/* col: велика напівпрозора цифра як перша flex-колонка рядка */
.glianwg .idqs { counter-reset: cs-rank; }
.glianwg .md6ge::before {
  counter-increment: cs-rank;
  content: counter(cs-rank);
  font-size: 1.6rem; font-weight: 900;
  color: var(--accent); opacity: 0.2;
  min-width: 24px; text-align: center;
  align-self: center; flex-shrink: 0;
  font-variant-numeric: tabular-nums; line-height: 1;
}

/* ── faq_style: вигляд FAQ ─────────────────────────────────────────────────*/
/* default = bg-card + +/− тогл (базові стилі .iu0qsjto вже задано) */

/* line: тільки нижня межа, без карток */
.l7zilwi .iu0qsjto {
  background: none; border-radius: 0; margin-bottom: 0;
  border-bottom: 1px solid var(--border); overflow: visible;
}
.l7zilwi .iu0qsjto summary { padding: 16px 2px; color: var(--text-primary); font-size: 0.98rem; }
.l7zilwi .iu0qsjto p { padding: 0 2px 16px; }

/* pill: summary як pill-бейдж з акцентним фоном */
.bjxvc5g .iu0qsjto { background: none; border-radius: 0; overflow: visible; margin-bottom: 12px; }
.bjxvc5g .iu0qsjto summary {
  background: var(--accent-bg); border-radius: 100px;
  padding: 10px 22px; color: var(--accent-light); font-weight: 700;
}
.bjxvc5g .iu0qsjto summary::after { content: "›"; font-size: 1.2em; }
.bjxvc5g .iu0qsjto[open] summary::after { content: "‹"; }
.bjxvc5g .iu0qsjto p { padding: 10px 22px 4px; }

/* outlined: ліва акцентна смуга замість суцільного фону */
.a0rbc .iu0qsjto {
  background: var(--bg-card); border-radius: 0;
  border-left: 3px solid var(--accent); overflow: hidden;
  margin-bottom: 10px;
}
.a0rbc .iu0qsjto summary { color: var(--text-primary); padding-left: 16px; }
.a0rbc .iu0qsjto summary::after { content: "›"; font-size: 1.1em; }
.a0rbc .iu0qsjto[open] summary::after { content: "‹"; }
.a0rbc .iu0qsjto p { padding-left: 16px; }

/* flush: суцільний акордеон без відступів між питаннями */
.lvtow0 .rfmdj146 { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.lvtow0 .iu0qsjto {
  background: var(--bg-card); border-radius: 0; margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}
.lvtow0 .iu0qsjto:last-child { border-bottom: none; }
.lvtow0 .iu0qsjto summary { color: var(--text-primary); border-radius: 0; }
.lvtow0 .iu0qsjto summary::after { content: "›"; font-size: 1.1em; }
.lvtow0 .iu0qsjto[open] summary::after { content: "‹"; }

/* accent: заливка summary акцентним кольором */
.dpr2 .iu0qsjto { overflow: hidden; }
.dpr2 .iu0qsjto summary {
  background: var(--accent); color: #fff; border-radius: 0;
}
.dpr2 .iu0qsjto summary::after { color: rgba(255,255,255,.75); }
.dpr2 .iu0qsjto[open] summary { border-radius: 0; }

/* ── Static pages: contact & privacy ────────────────────────────────────────*/
.vc6u { max-width: 1100px; margin: 0 auto; padding: 40px 24px 80px; }
.bslqxm6 {
  text-align: center; padding: 48px 0 36px;
  border-bottom: 1px solid var(--border); margin-bottom: 44px;
}
.gblkyvs {
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--text-primary); margin-bottom: 12px;
}
.p6hxyhx { color: var(--text-muted); font-size: 1.05rem; }

/* ── Contact form ────────────────────────────────────────────────────────────*/
.j8q3j4 {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start;
  max-width: 680px;
}

.liv9 {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 14px; padding: 32px;
}
.nrilmw { margin-bottom: 20px; }
.vmk697 {
  display: block; color: var(--text-muted); font-size: 0.78rem;
  font-weight: 600; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.defh5fk {
  width: 100%; background: var(--bg-page);
  border: 1px solid var(--border-alt); border-radius: 8px;
  padding: 10px 14px; color: var(--text-primary);
  font-size: 0.95rem; font-family: inherit;
  outline: none; transition: border-color .15s; box-sizing: border-box;
}
.defh5fk:focus { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-bg); }
.x1xn4p { resize: vertical; min-height: 130px; }
.lo1r { width: 100%; margin-top: 8px; }

.n2pefd2d { display: flex; flex-direction: column; gap: 14px; }
.o0btr {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 12px; padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 14px;
}
.cxph { font-size: 1.15rem; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.e9vpg {
  color: var(--text-muted); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px;
}
.f0o1 { color: var(--text-primary); font-weight: 600; font-size: 0.92rem; word-break: break-all; }
.rhd2x { align-items: flex-start; }
.rhd2x p { color: var(--text-faint); font-size: 0.82rem; line-height: 1.55; margin: 0; }
.lxqzi3yd .laddi7b { color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; margin: 4px 0 0; }

/* ── Static page sections (about, faq on contact page) ───────────────────────*/
.ry1us0 {
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.l6uzsx0 {
  font-size: 1.25rem; font-weight: 700; color: var(--accent-light);
  margin-bottom: 14px;
}
.fcv7 { color: var(--text-muted); line-height: 1.75; }
.i41czlj { color: var(--text-muted); line-height: 1.75; padding-left: 1.4em; }
.i41czlj li { margin-bottom: 6px; }

/* contact FAQ */
.psjv1a { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.sveqh {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 10px; overflow: hidden;
}
.q6s7 {
  padding: 14px 18px; cursor: pointer; font-weight: 600;
  color: var(--text-primary); font-size: 0.95rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.q6s7::after { content: "+"; color: var(--accent); font-size: 1.2rem; flex-shrink: 0; }
.sveqh[open] .q6s7::after { content: "−"; }
.cgt4g5l { padding: 0 18px 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── Privacy policy ──────────────────────────────────────────────────────────*/
.yylufl99 { max-width: 760px; margin: 0 auto; }
.nxb7v { color: var(--text-muted); line-height: 1.75; margin-bottom: 36px; }
.zicoe0a { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.zicoe0a:last-child { border-bottom: none; }
.zicoe0a h2 {
  font-size: 1.1rem; font-weight: 700; color: var(--accent-light);
  margin-bottom: 12px;
}
.zicoe0a p { color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ── About page layouts ──────────────────────────────────────────────────────*/
.q6aq7 { max-width: 760px; margin: 0 auto; }
.qctrtjm5 { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.qctrtjm5:last-child { border-bottom: none; }
.t1q7fs { font-size: 1.1rem; font-weight: 700; color: var(--accent-light); margin-bottom: 12px; }
.qctrtjm5 p { color: var(--text-muted); line-height: 1.75; margin: 0; }
.qctrtjm5 ul.i41czlj { margin: 0; }

.lnn9kg9 { max-width: 900px; margin: 0 auto; }
.ez424 { display: grid; grid-template-columns: 200px 1fr; gap: 32px; padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--border); align-items: start; }
.ez424:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.ez424 .t1q7fs { margin: 0; font-size: 1rem; }
.ez424 .wv1cug p { color: var(--text-muted); line-height: 1.75; margin: 0; }
@media (max-width: 640px) { .ez424 { grid-template-columns: 1fr; gap: 10px; } }

.dlyp { max-width: 640px; margin: 0 auto; text-align: center; }
.tt8nkr9p { margin-bottom: 48px; }
.tt8nkr9p .t1q7fs { font-size: 1.2rem; font-weight: 700; color: var(--accent-light); margin-bottom: 14px; }
.tt8nkr9p p { color: var(--text-muted); line-height: 1.75; margin: 0; }

.syj3g { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.yutgs4z { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.d9qvk30w { font-size: 1.05rem; font-weight: 700; color: var(--accent-light); margin: 0 0 12px; }
.yutgs4z p { color: var(--text-muted); line-height: 1.7; margin: 0; font-size: 0.9rem; }
.yutgs4z .i41czlj { margin: 0; font-size: 0.9rem; }
@media (max-width: 640px) { .syj3g { grid-template-columns: 1fr; } }

/* ── Privacy timeline layout ─────────────────────────────────────────────────*/
.lt4d6xv1 { max-width: 760px; margin: 0 auto; }
.afd8jhd { position: relative; padding-left: 28px; }
.afd8jhd::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.u6y2 { position: relative; display: flex; gap: 20px; padding-bottom: 32px; }
.u6y2:last-child { padding-bottom: 0; }
.j2nfn6 { position: absolute; left: -28px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg-surface); flex-shrink: 0; }
.cjrpp1 h2 { font-size: 1.05rem; font-weight: 700; color: var(--accent-light); margin: 0 0 8px; }
.cjrpp1 p { color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ── Static hero variants ────────────────────────────────────────────────────*/
.k4ykrgm {
  background: var(--accent-bg); border-radius: 14px;
  border-bottom: none; padding: 44px 36px; margin-bottom: 44px;
}
.k4ykrgm .gblkyvs { color: var(--accent-light); }
.yyfbqdf {
  text-align: left; border-bottom: none;
  border-left: 4px solid var(--accent); padding: 28px 0 28px 28px;
  margin-bottom: 44px;
}
.yyfbqdf .gblkyvs { font-size: 2rem; }
.yyfbqdf .p6hxyhx { max-width: 680px; }
.voxu {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; text-align: left; padding: 40px 0 32px;
  border-bottom: 1px solid var(--border); margin-bottom: 44px;
}
.voxu .gblkyvs { margin: 0; font-size: 1.8rem; flex-shrink: 0; max-width: 45%; }
.voxu .p6hxyhx  { margin: 0; }
@media (max-width: 640px) { .voxu { flex-direction: column; } }

.n2iy08la {
  background: linear-gradient(135deg, var(--accent-bg) 0%, var(--bg-surface) 100%);
  border-bottom: none; padding: 40px 32px 36px; margin-bottom: 32px; border-radius: 0 0 16px 16px;
}
.n2iy08la .gblkyvs { color: var(--accent-light); }
.uvyt25 {
  background: var(--accent); border-bottom: none;
  padding: 40px 32px 36px; margin-bottom: 32px;
}
.uvyt25 .gblkyvs { color: #fff; }
.uvyt25 .p6hxyhx  { color: rgba(255,255,255,0.85); }

/* ── Contact: layout variants ────────────────────────────────────────────────*/
/* side = default (already in .j8q3j4) */

/* top layout: info row above, full-width form */
.ktibjc {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px;
}
.ktibjc .o0btr { flex: 1 1 180px; }
.ivvpx { max-width: 680px; margin: 0 auto; }
.coq35s {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px;
}
@media (max-width: 540px) { .coq35s { grid-template-columns: 1fr; } }

/* ── Contact: form style variants ────────────────────────────────────────────*/
/* card = default (already set) */
.cdjn { background: transparent; border-color: transparent; padding-left: 0; padding-right: 0; }
.cdjn .defh5fk {
  border: none; border-bottom: 2px solid var(--border-alt);
  border-radius: 0; background: transparent; padding-left: 0; padding-right: 0;
}
.cdjn .defh5fk:focus { border-bottom-color: var(--accent); box-shadow: none; }
.xht6 .defh5fk { background: var(--bg-raised); border-color: transparent; }
.xht6 .defh5fk:focus { background: var(--bg-card); border-color: var(--accent); }
.qbkxwj .defh5fk { border-radius: 100px; padding: 11px 20px; }
.qbkxwj .x1xn4p { border-radius: 14px; }

/* ── Privacy: accordion layout ───────────────────────────────────────────────*/
.rufrx8 {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 10px; overflow: hidden; margin-bottom: 10px;
}
.rufrx8 summary {
  padding: 16px 20px; cursor: pointer; font-weight: 700;
  color: var(--accent-light); font-size: 1.05rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.rufrx8 summary::-webkit-details-marker { display: none; }
.rufrx8 summary::after { content: "+"; color: var(--accent); font-size: 1.2rem; flex-shrink: 0; }
.rufrx8[open] summary::after { content: "−"; }
.w3h0k {
  padding: 4px 20px 16px; color: var(--text-muted); line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* ── Privacy: grid layout ────────────────────────────────────────────────────*/
.f73b8u4g {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 640px) { .f73b8u4g { grid-template-columns: 1fr; } }
.cmvgf {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 12px; padding: 22px 24px;
}
.cmvgf h2 {
  font-size: 1rem; font-weight: 700; color: var(--accent-light); margin-bottom: 10px;
}
.cmvgf p { color: var(--text-muted); line-height: 1.7; margin: 0; font-size: 0.9rem; }

/* ── Privacy: numbered layout ────────────────────────────────────────────────*/
.knp4 { counter-reset: priv-count; }
.n0sw06w {
  counter-increment: priv-count;
  display: grid; grid-template-columns: 52px 1fr; gap: 0 20px;
  margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border);
}
.n0sw06w:last-child { border-bottom: none; }
.yi99ly {
  font-size: 2.4rem; font-weight: 800; color: var(--accent);
  opacity: 0.3; line-height: 1.1; font-variant-numeric: tabular-nums;
}
.n0sw06w h2 {
  font-size: 1.1rem; font-weight: 700; color: var(--accent-light); margin-bottom: 10px;
}
.n0sw06w p { color: var(--text-muted); line-height: 1.75; margin: 0; }

/* Service page list + faq elements */
.ji37 { color: var(--text-muted); line-height: 1.75; padding-left: 1.4em; margin: 0; }
.ji37 li { margin-bottom: 6px; }
.dionlfym dt { font-weight: 600; color: var(--text); margin-top: 16px; }
.dionlfym dd { color: var(--text-muted); line-height: 1.75; margin: 4px 0 0 0; }

/* ── Byline slots — position control ── */
.arwt2zk9{display:none}
.arwt2zk9:empty,.av3zotw:empty{display:none}
.ebcr{position:relative;overflow:visible}

/* hero slot — shown for all hero positions */
.t3mr6a2s .xu5pugym,.tcg7gm53 .xu5pugym,
.ugdc .xu5pugym,.mj4cs .xu5pugym,
.gkn4lr .xu5pugym,.ovda .xu5pugym{display:block}
.o9v3 .bbc7wj{display:block}

/* shared overlay: centered container matching hero-content width (always 1100px) */
.t3mr6a2s .xu5pugym,.tcg7gm53 .xu5pugym,
.ugdc .xu5pugym,.mj4cs .xu5pugym,
.gkn4lr .xu5pugym{position:absolute;z-index:3;left:50%;transform:translateX(-50%);width:100%;max-width:1100px;padding:0 24px;box-sizing:border-box}
/* overlay byline badge */
.t3mr6a2s .xu5pugym .av3zotw,.tcg7gm53 .xu5pugym .av3zotw,
.ugdc .xu5pugym .av3zotw,.mj4cs .xu5pugym .av3zotw,
.gkn4lr .xu5pugym .av3zotw{margin:0;font-size:.75rem;opacity:1;color:#fff;background:color-mix(in srgb, var(--accent) 35%, rgba(0,0,0,.45));backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);padding:5px 12px;border-radius:6px;display:inline-flex;width:auto}
/* overlay positions: strip per-date backgrounds and borders — container badge is enough */
.t3mr6a2s .i54q,.tcg7gm53 .i54q,
.ugdc .i54q,.mj4cs .i54q,
.gkn4lr .i54q{background:transparent!important;border:none!important;padding:0;border-radius:0;color:inherit!important}
/* top positions */
.t3mr6a2s .xu5pugym,.tcg7gm53 .xu5pugym{top:12px}
.t3mr6a2s .xu5pugym .av3zotw{margin-right:auto}
.tcg7gm53 .xu5pugym .av3zotw{margin-left:auto}
.tcg7gm53 .xu5pugym{text-align:right}
/* bottom positions */
.ugdc .xu5pugym,.mj4cs .xu5pugym{bottom:12px}
.ugdc .xu5pugym .av3zotw{margin-right:auto}
.mj4cs .xu5pugym .av3zotw{margin-left:auto}
.mj4cs .xu5pugym{text-align:right}
/* center overlay at bottom of hero */
.gkn4lr .xu5pugym{bottom:16px}
.gkn4lr .xu5pugym .av3zotw{margin:0 auto}

/* hero-bottom: below hero, matches page-wrap width */
.ovda .xu5pugym{max-width:var(--content-mw,1100px);margin:0 auto;padding:8px 24px}
.ovda .xu5pugym .av3zotw{margin:0}
/* hero-bottom + split: align to text column start */
.ovda .lj40s~.xu5pugym,
.ovda .kosn~.xu5pugym{max-width:none;margin:0;padding:8px clamp(24px,calc(50vw - 476px),96px)}
.ovda .lj40s~.xu5pugym .av3zotw,
.ovda .kosn~.xu5pugym .av3zotw{justify-content:flex-start}

/* split hero: overlay positions fall back to static below hero (too complex to overlay on split 50/50) */
.lj40s~.xu5pugym,.kosn~.xu5pugym{position:static!important;left:auto!important;right:auto!important;top:auto!important;bottom:auto!important;transform:none!important;width:100%!important;max-width:none!important;padding:8px clamp(24px,calc(50vw - 476px),96px)!important}
.lj40s~.xu5pugym .av3zotw{justify-content:flex-start;margin-left:0;margin-right:auto;background:transparent;color:var(--text-body);backdrop-filter:none;-webkit-backdrop-filter:none}
.kosn~.xu5pugym .av3zotw{justify-content:flex-end;margin-left:auto;margin-right:0;background:transparent;color:var(--text-body);backdrop-filter:none;-webkit-backdrop-filter:none}

/* post-hero: inside page-wrap, inherits its width naturally */
.bbc7wj .av3zotw{margin:0 0 12px}

/* ── Byline (compact author + dates) ── */
.av3zotw{display:flex;flex-wrap:wrap;align-items:center;gap:6px 10px;font-size:.82rem;color:var(--text-muted);margin:10px 0 16px}
.lstv9{width:28px;height:28px;border-radius:50%;object-fit:cover;flex-shrink:0}
.ekpnr5b{font-weight:600;color:var(--text-heading);opacity:1}
.qwrcu::before{content:"·";margin:0 2px;opacity:.5}
.i54q{white-space:nowrap}

/* byline author style: text — no avatar */
.o3xeacy4 .lstv9{display:none}

/* byline: hide author parts when author_pos=none or end (dates still show) */
/* author visibility controlled structurally in templates (not CSS display:none) */

/* ── Date style variants ── */
/* plain: default, no extra styling */

/* chips: pill badges */
.trnbcy3o .i54q{background:var(--date-bg, var(--accent-bg));padding:3px 10px;border-radius:99px;font-size:.78rem}
.trnbcy3o .qwrcu::before{content:""}

/* cards: mini bordered cards */
.ayw00 .i54q{background:var(--date-bg, var(--accent-bg));padding:6px 12px;border-radius:var(--radius, 6px);font-size:.78rem;display:inline-flex;align-items:center;gap:4px}
.ayw00 .qwrcu::before{content:""}

/* bar: single row with background */
.ssdtaixk .av3zotw{background:var(--date-bg, var(--accent-bg));padding:8px 14px;border-radius:var(--radius, 6px);gap:8px 16px}

/* tag: accent left border tag */
.tx6m .i54q{border-left:2px solid var(--accent);padding-left:8px;font-size:.78rem}
.tx6m .qwrcu::before{content:""}

/* accent: date text in accent color */
.n4qhp .i54q{color:var(--accent);opacity:1;font-weight:500}

/* underline: thin line beneath dates */
.fne1ybr .i54q{border-bottom:1px solid currentColor;padding-bottom:2px}

/* muted: extra small and faded */
.ewa23n .av3zotw{font-size:.78rem;color:var(--text-faint);letter-spacing:.02em}

/* ── Date background variants ── */
.z3vh{--date-bg:var(--accent-bg)}
.jceda{--date-bg:var(--accent-bg-light)}
.xmqmwfoh{--date-bg:transparent}

/* ── Date separator variants ── */
.y6ujc9kx .qwrcu::before{content:""}
.vbrs58 .qwrcu::before{content:"•";opacity:.4}
.vbrs58 .i54q + .i54q::before{content:"•";margin-right:6px;opacity:.4}
.oz7j .qwrcu::before{content:"/";opacity:.35}
.oz7j .i54q + .i54q::before{content:"/";margin-right:6px;opacity:.35}
.x3dr .qwrcu::before{content:"|";opacity:.3}
.x3dr .i54q + .i54q::before{content:"|";margin-right:6px;opacity:.3}
.uxmsln .qwrcu::before{content:"—";opacity:.3}
.uxmsln .i54q + .i54q::before{content:"—";margin-right:6px;opacity:.3}
.kmq68lkn .qwrcu::before{content:"◆";font-size:.5em;opacity:.35}
.kmq68lkn .i54q + .i54q::before{content:"◆";font-size:.5em;margin-right:6px;opacity:.35}
.kroog5 .qwrcu::before{content:"·";opacity:.4}
.kroog5 .i54q + .i54q::before{content:"·";margin-right:6px;opacity:.4}
.ic6u471s .qwrcu::before{content:"›";opacity:.4}
.ic6u471s .i54q + .i54q::before{content:"›";margin-right:6px;opacity:.4}
.lmxljq9 .qwrcu::before{content:"→";opacity:.35;font-size:.85em}
.lmxljq9 .i54q + .i54q::before{content:"→";font-size:.85em;margin-right:6px;opacity:.35}


/* ── Author box (full card at article end) ── */
.m75ns{display:flex;align-items:flex-start;gap:16px;max-width:var(--content-width, 960px);margin:32px auto 24px;padding:20px 24px}
.la9i20w{width:56px;height:56px;border-radius:50%;object-fit:cover;flex-shrink:0}
.fuwmw3{display:flex;flex-direction:column;gap:3px}
.dxlixs9y{font-size:.7rem;text-transform:uppercase;letter-spacing:.06em;color:var(--text-body);opacity:.55}
.pwvku6c{font-weight:700;font-size:1rem;color:var(--text-heading)}
.is26nhxu{font-size:.85rem;color:var(--text-body);opacity:.8;line-height:1.5;margin-top:4px}

/* author box variants */
.dpbs3bvv .m75ns{background:var(--surface-alt);border-radius:var(--radius, 8px);border:1px solid var(--border)}
.yfu6 .m75ns{border-top:3px solid var(--accent);padding-top:18px}
.r6wtaf .m75ns{border-left:3px solid var(--accent);border-radius:0}
.hd9ea .m75ns{padding:20px 0}

/* author box visibility by author_pos */
/* author-box visibility controlled structurally in templates */

@media(max-width:640px){
  .m75ns{flex-direction:column;align-items:center;text-align:center;gap:10px;padding:16px}
  .is26nhxu{max-width:100%}
}


/* ── color scheme ── */
:root {
  --accent:          #695816;
  --accent-light:    #9f8a44;
  --accent-pale:     #d7c073;
  --grad-start:      #c6af65;
  --grad-end:        #fae191;
  --bg-page: #e2d9c6;
  --bg-surface: #fff8ef;
  --bg-card: #fbf3e4;
  --bg-card-inner: #f5eddd;
  --bg-raised: #f0e7d6;
  --bg-hover: #ebe2ce;
  --border: #b9b19f;
  --border-alt: #817a6a;
  --border-section: #b9b19f;
  --text-primary: #373225;
  --text-muted: #645f4f;
  --bg-page:        #f8f9fa;
  --bg-surface:     #ffffff;
  --bg-card:        #ffffff;
  --bg-card-inner:  #f3f4f6;
  --bg-raised:      #eef0f2;
  --bg-hover:       #f3f4f6;
  --border:         #e5e7eb;
  --border-alt:     #d1d5db;
  --border-section: #e5e7eb;
  --text-body: #333029;
  --text-sub: #4a463e;
  --text-faint: #6e6a61;
  --text-dim: #959086;
  --text-label: #625e55;
  --text-value: #3e3b33;
  --accent-bg:       #fae191;
  --accent-bg-light: #ebd385;
  --bg-tip:        #f0fdf4;
  --bg-warning:    #fffbeb;
  --bg-info:       #eff6ff;
  --bg-pros:       #f0fdf4;
  --bg-cons:       #fef2f2;
  --c-pros:        #15803d;
  --c-cons:        #b91c1c;
  --c-pros-label:  #16a34a;
  --c-tip-border:  #059669;
  --c-warn-border: #d97706;
  --c-stars:       #b45309;
  --c-arrow:       #d97706;
  --c-tag-pay:     #15803d;
}
:root { --logo-bg-opacity: 52%; }

/* ── variants ── */
body, button, input { font-family: "Josefin Sans", sans-serif; }

.hmx4q .lmxtsxj4 li::before, .hmx4q .ei9yqej li::before {  font-family: "Font Awesome 6 Free"; font-weight: 900; margin-right: 5px;  font-size: 0.85em; line-height: 1; vertical-align: 0.05em; }.hmx4q .lmxtsxj4 li::before { content: ""; }.hmx4q .ei9yqej li::before { content: ""; }.hmx4q .snqgqc0w::before, .hmx4q .mtzbqk::before {  font-family: "Font Awesome 6 Free"; font-weight: 900;  font-size: 0.85em; margin-right: 5px; line-height: 1; }.hmx4q .snqgqc0w::before { content: ""; }.hmx4q .mtzbqk::before { content: ""; }

.cbi6emuz .xih1, .cbi6emuz .lj40s { min-height: 640px; }

.uvpi .w77x::after, .uvpi .wy3s2hi::after {  content: ""; font-family: "Font Awesome 6 Free"; font-weight: 900;  display: inline-block; margin-left: 6px; vertical-align: -0.05em;  font-size: 0.8em; line-height: 1; }

.s4lf1czc .nkvfhs::after,.s4lf1czc .w6mfc8::after {  content: "" !important; font-family: "Font Awesome 6 Free" !important;  font-weight: 900 !important; display: inline-block !important;  margin-left: 6px; vertical-align: -0.05em; font-size: 0.8em; line-height: 1; }

.l1owm::before { content: '/'; }

.w22gj .i54q::before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:5px;font-size:1em;opacity:.55}.w22gj .i54q:first-of-type::before{content:"\f017"}.w22gj .i54q:last-of-type::before{content:"\f2f1"}