/* ── Semantic color tokens — dark theme defaults ─────────────────────────────
   Будь-яка тема-варіант може переоверрайдити ці змінні через :root {}
   Змінні акцент-кольорів (--accent, --accent-light тощо) живуть у css_vars
   що генерується theme_css_vars() у build.qcox2n0.
────────────────────────────────────────────────────────────────────────────── */
: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 ──────────────────────────────────────────────────────────────────*/
.jn9iixg9 {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.cga5 {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 62px; display: flex; align-items: center;
  justify-content: space-between; position: relative;
}
.j3zu4b {
  color: var(--accent-light);
  font-weight: 800; font-size: 1.15rem;
  text-decoration: none; display: flex; align-items: center; gap: 4px;
}
.g163kic { height: 46px; width: auto; max-width: 140px; object-fit: contain; border-radius: 6px; }
.yabjy { list-style: none; display: flex; column-gap: 20px; row-gap: 6px; flex-wrap: wrap; align-items: center; --msep-color: var(--text-primary); }
.yabjy a {
  color: var(--text-muted); white-space: nowrap;
  text-decoration: none; font-size: 0.88rem; transition: color 0.2s;
}
.yabjy a:hover { color: var(--accent-light); }

/* ── Navbar dropdown ─────────────────────────────────────────────────────────*/
.pb0f8h { position: relative; }
.zg4es9sq {
  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 */
.f407ut0g   .zg4es9sq { border-radius: 0; }
.adrw5pi     .zg4es9sq { border-radius: 6px; }
.rpppt  .zg4es9sq { border-radius: 14px; }
.v83f     .zg4es9sq { border-radius: 24px; padding: 8px; }
/* rounded items to match container shape */
.adrw5pi .zg4es9sq li:first-child a { border-top-left-radius: 4px; border-top-right-radius: 4px; }
.adrw5pi .zg4es9sq li:last-child a { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; }
.rpppt .zg4es9sq li:first-child a { border-top-left-radius: 10px; border-top-right-radius: 10px; }
.rpppt .zg4es9sq li:last-child a { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }
.v83f .zg4es9sq li a { border-radius: 16px; }
/* nav_drop_sep — горизонтальні роздільники між пунктами дропдауну */
.u7nuyhfi  .zg4es9sq li + li { border-top: 1px solid var(--border-alt); }
.kxn5fv .zg4es9sq li + li { border-top: 1px dashed var(--border-alt); }
.ep75fb .zg4es9sq li + li { border-top: 1px dotted var(--border-alt); }
.t3k7f .zg4es9sq li + li { border-top: 3px double var(--border-alt); }
/* Invisible bridge so mouse can travel from trigger to dropdown without losing hover */
.pb0f8h::after {
  content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 10px;
}
.pb0f8h:hover .zg4es9sq,
.pb0f8h:focus-within .zg4es9sq { display: block; }
.zg4es9sq 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;
}
.zg4es9sq li a:hover {
  color: var(--accent-light); background: var(--bg-hover);
}
@media (max-width: 640px) {
  .zg4es9sq {
    position: static; transform: none; box-shadow: none;
    border: none; border-radius: 0; background: transparent;
    padding: 0 0 4px 16px;
  }
  .pb0f8h:hover .zg4es9sq,
  .pb0f8h:focus-within .zg4es9sq { display: block; }
  .zg4es9sq li a { padding: 8px 16px; font-size: 0.88rem; }
}

.et21aiyn {
  display: none; background: none; border: none;
  color: var(--text-muted); font-size: 1.4rem; cursor: pointer; padding: 4px 8px; line-height: 1;
}
.usrf4w { display: none; }
@media (max-width: 640px) {
  .usrf4w {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 899; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  }
  .usrf4w.gyb78b { display: block; }
}
@media (max-width: 640px) {
  .et21aiyn { display: block; }
  .yabjy {
    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;
  }
  .yabjy.gyb78b { display: flex; }
  .yabjy li a {
    display: block; padding: 11px 24px; font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
  }
  .yabjy li:last-child a { border-bottom: none; }
}

/* ── Hero: спільні стилі ─────────────────────────────────────────────────────*/
.hw6g3sod { min-height: 480px; }
.zpgt {
  font-size: 2.6rem; font-weight: 800; color: var(--accent-pale);
  line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.01em;
}
.qvwg41l3 { font-size: 1.15rem; margin-bottom: 28px; max-width: 720px; margin-left: auto; margin-right: auto; }
.lmr9y4a2 .qvwg41l3 { margin-left: 0; margin-right: 0; }
.jl1pgq4k {
  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;
}
.jl1pgq4k:hover { opacity: 0.88; }

/* ── Hero: BG layout (картинка — повноширокий фон) ───────────────────────────*/
.wybtvh {
  position: relative; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  background-color: var(--bg-surface);
}
.ytssfa {
  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) */
.wybtvh .k57z9w {
  position: relative; z-index: 1;
  width: 100%; max-width: 1100px; padding: 48px 24px;
}
.wybtvh .zpgt { text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.wybtvh .qvwg41l3 { color: #e2e8f0; }

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

/* hero-flat: без фону, просто текст на page bg (WP-style) */
.q3cp6k9 {
  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);
}
.q3cp6k9 .k57z9w {
  width: 100%; max-width: 1100px; padding: 24px 24px;
}
.q3cp6k9 .zpgt { color: var(--text-primary); text-shadow: none; }
.q3cp6k9 .qvwg41l3 { color: var(--text-muted); }
.q3cp6k9 .jl1pgq4k { margin-top: 16px; }
.q3cp6k9, .q3cp6k9.hw6g3sod { min-height: auto !important; }
.q3cp6k9.grghxyg .k57z9w { text-align: center; }
.q3cp6k9.lmr9y4a2   .k57z9w { text-align: left; }
/* flat hero: byline як звичайний текст, не оверлей */
.q3cp6k9~.he1b{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}
.q3cp6k9~.he1b .cet5{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: градієнтний фон замість фото */
.yq3ywpu8 {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}
/* hero_anim: shimmer — ледь помітний блиск по поверхні */
.izgqu0un .yq3ywpu8,
.izgqu0un .gre94ef {
  position: relative; overflow: hidden;
}
.izgqu0un .yq3ywpu8::after,
.izgqu0un .gre94ef::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 */
.grgknw0o .yq3ywpu8,
.grgknw0o .gre94ef {
  animation: hg-breathe 10s ease-in-out infinite;
}
@keyframes hg-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
/* hero_anim: grain — ледь помітна зернистість поверх градієнту */
.vvq9p .yq3ywpu8,
.vvq9p .gre94ef,
.vvq9p .wybtvh .ytssfa {
  position: relative; overflow: hidden;
}
.vvq9p .yq3ywpu8::after,
.vvq9p .gre94ef::after,
.vvq9p .wybtvh .ytssfa::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 */
.elkuxu .yq3ywpu8,
.elkuxu .gre94ef {
  position: relative; overflow: hidden;
}
.elkuxu .yq3ywpu8::after,
.elkuxu .gre94ef::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); }
}
.elkuxu .wybtvh .ytssfa {
  position: relative; overflow: hidden;
}
.elkuxu .wybtvh .ytssfa::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 — градієнт з'являється при завантаженні */
.ajrsf02 .yq3ywpu8,
.ajrsf02 .gre94ef,
.ajrsf02 .wybtvh .ytssfa {
  animation: hg-fadein 1.2s ease-out both;
}
@keyframes hg-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* hero-bg з фото — overlay анімації */
.izgqu0un .wybtvh .ytssfa {
  position: relative; overflow: hidden;
}
.izgqu0un .wybtvh .ytssfa::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;
}
.grgknw0o .wybtvh .ytssfa {
  animation: hg-breathe 10s ease-in-out infinite;
}

.yq3ywpu8 .ytssfa {
  background: none;
}
.yq3ywpu8 .zpgt { color: #fff; }
.yq3ywpu8 .qvwg41l3 { color: rgba(255,255,255,0.85); }

/* ── Hero anim: split layouts ─────────────────────────────────────────────── */
.izgqu0un .ynp2a { position: relative; overflow: hidden; }
.izgqu0un .ynp2a::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;
}
.grgknw0o .ynp2a {
  animation: hg-breathe 7s ease-in-out infinite;
}
.vvq9p .ynp2a { position: relative; overflow: hidden; }
.vvq9p .ynp2a::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;
}
.elkuxu .ynp2a { position: relative; overflow: hidden; }
.elkuxu .ynp2a::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;
}
.ajrsf02 .ynp2a {
  animation: hg-fadein 1.2s ease-out both;
}


/* ── Hero: Split layout (текст + картинка поряд) ─────────────────────────────*/
.ynp2a {
  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%);
}
.mpq22jr {
  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);
}
.t7ugblq {
  grid-area: media;
  position: relative; overflow: hidden; min-height: 320px;
}
/* img абсолютний щоб заповнити комірку grid повністю */
.tmb5irm {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gre94ef {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
}
.ynp2a .zpgt { text-shadow: none; color: var(--accent-pale); }
.ynp2a .qvwg41l3 { color: var(--text-muted); }

/* Split alignment — всередині text-колонки */
.ynp2a.grghxyg .mpq22jr { align-items: center; text-align: center; }
.ynp2a.lmr9y4a2   .mpq22jr { align-items: flex-start; text-align: left; }

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


/* split-rounded: картинка з rounded corners + тінь, не на весь блок */
.a90p .t7ugblq {
  display: flex; align-items: center; justify-content: center;
  padding: 32px 32px 32px 0; overflow: visible;
}
.a90p .tmb5irm {
  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);
}
.a90p .gre94ef {
  position: static; width: 100%; aspect-ratio: 4/3; border-radius: 16px;
}
.a90p.sus4z95h .t7ugblq { padding: 32px 0 32px 32px; }

/* split-inset: картинка з відступами і тінню, не на весь блок */
.gkvs6ar .t7ugblq {
  display: flex; align-items: center; justify-content: center;
  padding: 40px 48px 40px 16px;
  overflow: visible;
}
.gkvs6ar .tmb5irm {
  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);
}
.gkvs6ar .gre94ef {
  position: static;
  width: 100%; aspect-ratio: 4/3;
  border-radius: 16px;
}

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

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

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

/* ── Hero: split-cards ────────────────────────────────────────────────────── */
.r9toz3 .ywtw {
  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);
}
.hsmhyk4 {
  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;
}
.hsmhyk4:last-child { border-bottom: none; }
.hsmhyk4:hover { background: rgba(255,255,255,0.14); }
.x376pm4 { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.cyyz { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.fen06 { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.u9n730t { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rryzc3r { font-size: 0.82rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ot42wr { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.wa7s { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); }
.wa7s small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }
.qssp { font-size: 0.8rem; padding: 6px 14px; white-space: nowrap; }

/* ── Hero: cards-top ─────────────────────────────────────────────────────── */
.u9tdb7r { padding-bottom: 0; }
.u9tdb7r .k57z9w { padding-bottom: 24px; }
.xn19 {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  padding: 0 24px 32px; max-width: 960px; margin: 0 auto; width: 100%;
}
.fnehucn {
  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;
}
.fnehucn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
.yfjhi3jd { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.soe3 { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.wi8rh { font-weight: 700; font-size: 0.9rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.yhjbfj9 { font-size: 0.8rem; color: rgba(255,255,255,0.75); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lqj0w { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); flex-shrink: 0; }
.lqj0w small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }

/* ── Hero: offer-cards ──────────────────────────────────────────────────── */
.f9cz7 .my1ym {
  display: flex !important; flex-direction: column; justify-content: center;
  gap: 6px; padding: 28px 24px;
}
.nyep6uoz {
  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;
}
.nyep6uoz:hover { background: var(--bg-hover); }

/* ── Hero: floating-cards ────────────────────────────────────────────────── */
.k46dx1 .t7ugblq { display: flex !important; align-items: center; justify-content: center; position: relative; }
.w2lau {
  display: flex; flex-direction: column; gap: 12px;
  padding: 32px 24px; width: 100%; max-width: 420px;
}
.pl7lm {
  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;
}
.pl7lm:hover { transform: translateX(calc(var(--fi) * 12px)) translateY(-2px); }
.n38tjw { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.kfd9e5n { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.wvjrm { font-weight: 700; font-size: 0.85rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nfzhi { font-size: 0.78rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.q3k78pfk { font-weight: 800; font-size: 1.2rem; color: var(--accent-pale); flex-shrink: 0; }

/* ── Hero: numbered-top ──────────────────────────────────────────────────── */
.hd7le9v .k57z9w { max-width: 960px; }
.mazhputu {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin: 28px 0 32px;
}
.jkj78lu {
  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;
}
.jkj78lu:hover { transform: translateY(-2px); background: rgba(0,0,0,0.55); }
.tvmy9wk { font-weight: 900; font-size: 1.5rem; color: var(--accent-pale); flex-shrink: 0; line-height: 1; }
.fwjjz { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.h602yqrz { font-weight: 700; font-size: 0.85rem; white-space: nowrap; }
.spxsrsot { font-size: 0.78rem; color: rgba(255,255,255,0.7); white-space: nowrap; }


@media (max-width: 700px) {
  .ynp2a { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .ynp2a .t7ugblq { display: none !important; }
  .k46dx1 .t7ugblq { display: none !important; }
  .r9toz3 .ywtw { display: none !important; }
  .f9cz7 .my1ym { display: none !important; }
  .mpq22jr  { padding: 36px 24px; }
  .ynp2a~.he1b,.sus4z95h~.he1b{max-width:100%;left:0;right:0;transform:none;padding:0 24px}
  /* cap hero height variants on mobile */
  .hw6g3sod, .ynp2a { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .zpgt { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  /* cards-top: hide on mobile */
  .xn19 { display: none !important; }
  /* numbered: stack */
  .mazhputu { flex-direction: column; align-items: center; }
  .jkj78lu { width: 100%; max-width: 340px; }
}

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

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

/* rounded */
.maf3zx3n .vvjos3ms        { border-radius: 16px; }
.maf3zx3n .wi2hbsf  { border-radius: 16px; }

/* shadow */
.vnupsn6 .vvjos3ms         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.vnupsn6 .wi2hbsf   { border-radius: 8px; }


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

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

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

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

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

.hvrokly .pw0i6p:nth-child(even) .o9tnylj .ituekah:nth-child(odd),
.qhv1as1m .pw0i6p:nth-child(even) .o9tnylj .ituekah:nth-child(odd)  { background: var(--bg-card); }
.hvrokly .pw0i6p:nth-child(even) .o9tnylj .ituekah:nth-child(even),
.qhv1as1m .pw0i6p:nth-child(even) .o9tnylj .ituekah:nth-child(even) { background: var(--bg-card-inner); }

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

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

/* bar: ліва кольорова смуга */
.ucx5xn9t h2.p6v88xaz {
  border-left: 4px solid var(--accent); padding-left: 14px;
}
/* underline: підкреслення знизу */
.c6tv8c41 h2.p6v88xaz {
  border-bottom: 2px solid var(--accent); padding-bottom: 10px;
  display: inline-block;
}
/* overline: тонка лінія зверху */
.bpnxkgrf h2.p6v88xaz {
  border-top: 3px solid var(--accent); padding-top: 12px;
  color: var(--text-primary);
}
/* dot: маленька кольорова крапка перед заголовком */
.fo1ltr4w h2.p6v88xaz::before {
  content: ""; display: inline-block; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  margin-right: 12px; vertical-align: middle;
}
/* plain: просто жирний текст, без декорацій */
.n6wnjm4j h2.p6v88xaz {
  color: var(--text-primary); font-size: 1.7rem;
}
/* slash: коса риска акцентного кольору перед текстом */
.srylgl h2.p6v88xaz::before {
  content: "/"; color: var(--accent); font-weight: 800;
  margin-right: 10px;
}
/* caps: великі літери, розріджений трекінг, тонка нижня лінія */
.l82sps82 h2.p6v88xaz {
  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) ───────────────*/
.ba7wx2 { font-size: 1.35rem; font-weight: 700; color: var(--accent-light); margin-bottom: 12px; }

/* ── Lead & intro/outro ──────────────────────────────────────────────────────*/
.sl7d { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 16px; }
@media (max-width: 640px) { .sl7d { display: none; } }
.guftqdb {
  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;
}
.woou { margin-right: 8px; color: var(--c-arrow); }
/* intro/outro — blended with body text (classes kept for easy re-styling) */
.myhkcg { font-size: inherit; color: var(--text-body); margin: 8px 0 16px; }
.bfjs9j3q { font-size: inherit; color: var(--text-body); margin: 16px 0 0; }

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

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

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

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

/* pills: горизонтальні pill-бейджі, без заголовка, без рамки контейнера */
.nmavr1 .unj0 { background: none; border: none; box-shadow: none !important; padding: 12px 0; }
.nmavr1 .koj0xmrf { display: none; }
.nmavr1 .u2q2w { padding-left: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.nmavr1 .u2q2w li { margin-bottom: 0; }
.nmavr1 .u2q2w 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;
}
.nmavr1 .u2q2w a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* cards: сітка карток з номером-кружечком, з заголовком */
.udhu40oj .unj0 { padding: 20px 20px 16px; }
.udhu40oj .u2q2w {
  padding-left: 0; list-style: none;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px;
  counter-reset: toc-c;
}
.udhu40oj .u2q2w li { counter-increment: toc-c; margin-bottom: 0; }
.udhu40oj .u2q2w 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);
}
.udhu40oj .u2q2w 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;
}
.udhu40oj .u2q2w a:hover { color: var(--accent-light); border-color: var(--accent); }

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

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

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

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

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

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

/* subs-flat: мінімальний, без фону */
.zm3e .ituekah { background: none; border-radius: 0; padding: 12px 0; }
.zm3e .ituekah + .ituekah { border-top: 1px solid var(--border-section); }
.nme8f6 { color: var(--text-body); margin-bottom: 12px; font-size: inherit; }
.naexfgi { 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.

.rjj4w .myhkcg,
.rjj4w .bfjs9j3q,
.rjj4w .nme8f6,
.rjj4w .naexfgi { font-style: normal; color: var(--text-body); }

.isnjot5 .myhkcg,
.isnjot5 .bfjs9j3q {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.isnjot5 .nme8f6,
.isnjot5 .naexfgi {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

.bmhzh1i .myhkcg,
.bmhzh1i .bfjs9j3q,
.bmhzh1i .nme8f6,
.bmhzh1i .naexfgi {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}
────────────────────────────────────────────────────────────────────────────── */

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

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

.yvxnhzy     .cir7 { list-style-type: "● "; }
.jdrho8d  .cir7 { list-style-type: "■ "; }
.ye3e4bb8 .cir7 { list-style-type: "◆ "; }
.y5w83f    .cir7 { list-style-type: "★ "; }

.yvxnhzy     .dtl04y { list-style-type: "● "; }
.jdrho8d  .dtl04y { list-style-type: "■ "; }
.ye3e4bb8 .dtl04y { list-style-type: "◆ "; }
.y5w83f    .dtl04y { list-style-type: "★ "; }

.yvxnhzy    .cir7 li::marker, .yvxnhzy    .dtl04y li::marker,
.jdrho8d .cir7 li::marker, .jdrho8d .dtl04y li::marker,
.ye3e4bb8 .cir7 li::marker, .ye3e4bb8 .dtl04y li::marker,
.y5w83f   .cir7 li::marker, .y5w83f   .dtl04y li::marker {
  color: var(--accent); font-size: 0.8em;
}

/* ol: CSS-лічильник з кольоровим маркером */
.yvxnhzy .jpbbh,
.jdrho8d .jpbbh,
.ye3e4bb8 .jpbbh,
.y5w83f .jpbbh {
  list-style: none;
  counter-reset: el-step;
  padding-left: 2.2em;
}
.yvxnhzy .jpbbh li,
.jdrho8d .jpbbh li,
.ye3e4bb8 .jpbbh li,
.y5w83f .jpbbh li {
  list-style: none;
  counter-increment: el-step;
  position: relative;
}
.yvxnhzy .jpbbh li::before,
.jdrho8d .jpbbh li::before,
.ye3e4bb8 .jpbbh li::before,
.y5w83f .jpbbh 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 — залежно від варіанту */
.yvxnhzy     .jpbbh li::before { border-radius: 50%; }
.jdrho8d  .jpbbh li::before { border-radius: 3px; }
.ye3e4bb8 .jpbbh li::before { border-radius: 3px; }
.y5w83f    .jpbbh li::before { border-radius: 50%; }

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

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

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

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

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

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

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

.eneer7d { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin: 12px 0; }
.fxf3l { background: var(--bg-card-inner); border-radius: 8px; overflow: hidden; }
.s8i2z { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.q2pl6lfc { background: var(--accent-bg-light); color: var(--accent); font-weight: 700; padding: 10px 14px; font-size: 0.9rem; }
.a0g4k { padding: 10px 14px 4px; font-size: 0.88rem; color: var(--text-sub); }
.dtl04y { padding: 4px 14px 12px 28px; font-size: 0.82rem; color: var(--text-muted); }
.dtl04y li { margin-bottom: 3px; }
.avdzt0 {
  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%;
}
.avdzt0::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%}
.a1ql .avdzt0 { margin-left: auto; margin-right: auto; }
.a1ql .q2pl6lfc { background: transparent; text-align: center; }

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

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

/* top-circle: маленький кружечок по центру зверху */
.bgzazto2 .s8i2z {
  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 — повна ширина */
.vp155 .fxf3l { display: grid; grid-template-columns: auto 1fr; }
.vp155 .s8i2z {
  grid-column: 1; grid-row: 1;
  width: 88px; height: 88px; aspect-ratio: 1/1; object-fit: cover; align-self: center;
}
.vp155 .q2pl6lfc { grid-column: 2; }
.vp155 .a0g4k,
.vp155 .dtl04y { grid-column: 1 / -1; }

/* side-circle: кружечок зліва лише в першому рядку; body/list — повна ширина */
.kuztgvly .fxf3l { display: grid; grid-template-columns: auto 1fr; align-items: start; }
.kuztgvly .s8i2z {
  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);
}
.kuztgvly .q2pl6lfc { grid-column: 2; }
.kuztgvly .a0g4k,
.kuztgvly .dtl04y { grid-column: 1 / -1; }


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

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

/* glass: напівпрозорий фон з blur, без рамок */
.zlqa .fxf3l { 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); }
.zlqa .q2pl6lfc { background: none; color: var(--accent-light); font-weight: 700; }

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

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

/* numbered: CSS-лічильник у вигляді кружечка перед заголовком */
.js11k .eneer7d { counter-reset: card-n; }
.js11k .fxf3l  { counter-increment: card-n; }
.js11k .q2pl6lfc { display: flex; align-items: center; gap: 10px; }
.js11k .q2pl6lfc::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: мінімальний, нейтральний заголовок, тонка рамка */
.tk48plxl .fxf3l { background: var(--bg-surface); border: 1px solid var(--border); }
.tk48plxl .q2pl6lfc { background: none; color: var(--text-main); font-weight: 700; border-bottom: 1px solid var(--border); }

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

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

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

/* ── CTA button ──────────────────────────────────────────────────────────────*/
.dy5ad {
  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;
}
.dy5ad:hover { opacity: 0.85; }

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

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

/* pill = solid but very rounded */
.qnyneie .jl1pgq4k { border-radius: 50px; }
.qnyneie .dy5ad  { border-radius: 50px; }
/* btn_pad */
.y7hhz .jl1pgq4k { padding-left: 22px; padding-right: 22px; }
.y7hhz .dy5ad  { padding-left: 12px; padding-right: 12px; }
.bia6m2a5 .jl1pgq4k { padding-left: 44px; padding-right: 44px; }
.bia6m2a5 .dy5ad  { padding-left: 24px; padding-right: 24px; }
.jgzb .jl1pgq4k { padding-left: 56px; padding-right: 56px; }
.jgzb .dy5ad  { padding-left: 32px; padding-right: 32px; }

/* ── btn_icon: SVG-іконки на .jl1pgq4k і .dy5ad (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.k4zdrip   .jl1pgq4k::after, .k4zdrip   .dy5ad::after,
.fakjc .jl1pgq4k::after, .fakjc .dy5ad::after,
.mhtlt2b    .jl1pgq4k::after, .mhtlt2b    .dy5ad::after,
.ioi9    .jl1pgq4k::after, .ioi9    .dy5ad::after,
.a841    .jl1pgq4k::after, .a841    .dy5ad::after,
.i5fh     .jl1pgq4k::after, .i5fh     .dy5ad::after,
.tg9do    .jl1pgq4k::after, .tg9do    .dy5ad::after,
.zozhf9xr   .jl1pgq4k::after, .zozhf9xr   .dy5ad::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 — кожна іконка */
.k4zdrip .jl1pgq4k::after, .k4zdrip .dy5ad::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");
}
.fakjc .jl1pgq4k::after, .fakjc .dy5ad::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");
}
.mhtlt2b .jl1pgq4k::after, .mhtlt2b .dy5ad::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");
}
.ioi9 .jl1pgq4k::after, .ioi9 .dy5ad::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");
}
.a841 .jl1pgq4k::after, .a841 .dy5ad::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");
}
.i5fh .jl1pgq4k::after, .i5fh .dy5ad::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");
}
.tg9do .jl1pgq4k::after, .tg9do .dy5ad::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");
}
.zozhf9xr .jl1pgq4k::after, .zozhf9xr .dy5ad::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 ────────*/
.mls4h   .pr7flpk::after, .mls4h   .dovkkv::after,
.pkc2 .pr7flpk::after, .pkc2 .dovkkv::after,
.nabc9e    .pr7flpk::after, .nabc9e    .dovkkv::after,
.ccg427    .pr7flpk::after, .ccg427    .dovkkv::after,
.g00voc    .pr7flpk::after, .g00voc    .dovkkv::after,
.vzjw4yj1     .pr7flpk::after, .vzjw4yj1     .dovkkv::after,
.yjc0    .pr7flpk::after, .yjc0    .dovkkv::after,
.on2vys15   .pr7flpk::after, .on2vys15   .dovkkv::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;
}
.mls4h .pr7flpk::after, .mls4h .dovkkv::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");
}
.pkc2 .pr7flpk::after, .pkc2 .dovkkv::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");
}
.nabc9e .pr7flpk::after, .nabc9e .dovkkv::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");
}
.ccg427 .pr7flpk::after, .ccg427 .dovkkv::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");
}
.g00voc .pr7flpk::after, .g00voc .dovkkv::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");
}
.vzjw4yj1 .pr7flpk::after, .vzjw4yj1 .dovkkv::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");
}
.yjc0 .pr7flpk::after, .yjc0 .dovkkv::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");
}
.on2vys15 .pr7flpk::after, .on2vys15 .dovkkv::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 ─────────────────────────────────────────────────────────*/
.tee3wmz { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


.r0zzw3ec {
  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 */
.r0zzw3ec > [itemprop="item"] { display: contents; }
.r0zzw3ec:hover { background: var(--bg-hover); }
.wrtef {
  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 */
.ika8 .wrtef { background: #1a1a1a; }
.jjav .wrtef { background: rgba(128,128,128,.12); }
.lg26 .wrtef { background: var(--bg-raised); }
.czi2wb .wrtef { background: transparent; padding: 0; }
.l9blbqiq { max-height: 34px; max-width: 80px; object-fit: contain; }
.i7ru7 { font-weight: 700; font-size: .85rem; color: var(--accent-light); }
.awppx32o { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; }
.f8k39f2q { font-weight: 700; font-size: .88rem; color: var(--text-primary); flex-shrink: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.g79u3 { color: var(--accent); font-size: .8rem; letter-spacing: 1px; flex-shrink: 1; min-width: 0; }
.r8uwm { display: flex; flex-direction: column; align-items: center; font-size: .78rem; flex: 1 1 0; min-width: 0; }
.y4vw { color: var(--text-label); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.f4z5 { color: var(--text-value); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.l3la { margin-left: auto; flex-shrink: 0; white-space: nowrap; }
.l3la.dy5ad { padding-left: 16px !important; padding-right: 16px !important; }
/* планшет / мобіль: 2-колонкова сітка вертикальних карток */
@media (max-width: 720px) {
  .tee3wmz { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .tee3wmz .r0zzw3ec { flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px; }
  .tee3wmz .awppx32o { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
  .tee3wmz .wrtef { width: 100%; min-width: unset; height: 52px; }
  .tee3wmz .l9blbqiq { max-height: 40px; max-width: 110px; }
  .tee3wmz .f8k39f2q { min-width: unset; text-align: center; white-space: normal; }
  .tee3wmz .r8uwm { flex-direction: row; justify-content: space-between; width: 100%; border-top: 1px solid var(--border); padding-top: 5px; }
  .tee3wmz .l3la { width: 100%; text-align: center; margin-left: 0; }
  .ds39dn6 .r0zzw3ec { row-gap: 8px !important; gap: 8px !important; }
}

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.qxkhbtb {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.lgn53 {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.q5hofy {
  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;
}
.q5hofy img { max-width: 80px; max-height: 50px; object-fit: contain; }
.gnjf { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.g6481 { flex: 1; }
.g6481 h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.ml8ww3f { color: var(--c-stars); font-size: 1.1rem; }
.mz1ax4 { margin-bottom: 8px; }
.k290 { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.wcgys::before   { content: "★ "; color: var(--accent); }
.p80g::before { content: "↓ "; color: var(--accent); }
.yk99::before { content: "✦ "; color: var(--accent); }
.tb5d4i { flex-shrink: 0; }
.ifmsun4 img.mip3e21 { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.gmp0 { padding: 20px 24px; }
.w8k11 { color: var(--text-muted); margin-bottom: 16px; }
.s0lim { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.du905, .hsz7oa9w { list-style: none; font-size: 0.9rem; }
.du905 li { color: var(--c-pros); margin-bottom: 4px; }
.hsz7oa9w li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.du905 li::before { content: "✓"; margin-right: 5px; }
.hsz7oa9w li::before { content: "✗"; margin-right: 5px; }
.q4prw3ia .du905 li::before { content: "→"; }
.q4prw3ia .hsz7oa9w li::before { content: "–"; }
.gqosjk  .du905 li::before { content: "★"; }
.gqosjk  .hsz7oa9w li::before { content: "✕"; }
.g8arj    .du905 li::before { content: "◆"; }
.g8arj    .hsz7oa9w li::before { content: "▲"; }
.x2bhml  .du905 li::before { content: "▶"; }
.x2bhml  .hsz7oa9w li::before { content: "■"; }
.zf3ss4zo { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.n13ykqva { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.gvbgp6bl { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

/* ── Brand card (single brand, two-column hero) ─────────────────────────────*/
/* ═══════════════════════════════════════════════════════════════════════════
   BRAND CARD — shared tokens
   ═══════════════════════════════════════════════════════════════════════════ */
.asj6o36 {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.xgcq5 {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.xgcq5 img { max-width: 100%; max-height: 100%; object-fit: contain; }
.d19e { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.qnpez6sd { display: flex; align-items: center; gap: 8px; }
.qnpez6sd .ml8ww3f { font-size: .95rem; }
.qnpez6sd strong { font-size: 1.1rem; color: var(--text); }
.qnxpe0ts { border-radius: 8px; overflow: hidden; }
.qnxpe0ts img { width: 100%; display: block; border-radius: 8px; }
.b47abur { text-align: center; flex-shrink: 0; }
.mul18 { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.zj3nhnx { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.nu0tqp { font-size: .88rem; font-weight: 600; color: var(--text); }
.uu4u4bw .nu0tqp { font-size: 1.02rem; font-weight: 700; color: var(--accent); }
.asj6o36 .cfn2epc1 { gap: 10px; }
.asj6o36 .nhpche, .asj6o36 .fpk15t { padding: 12px; }
.asj6o36 .nhpche ul, .asj6o36 .fpk15t ul { margin: 4px 0 0; padding-left: 18px; }
.asj6o36 .nhpche li, .asj6o36 .fpk15t li { font-size: .85rem; margin-bottom: 3px; }
.zejn { font-size: .8rem; color: var(--text-muted); margin-top: 10px; }
.zejn strong { color: var(--text-secondary); }
.zejn .n13ykqva { margin: 2px 4px 2px 0; }

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

/* ── LAYOUT 2: hero — full-width screenshot header ────────────────────────── */
.hzamxuxf {
  position: relative; max-height: 240px; overflow: hidden;
}
.hzamxuxf > img { width: 100%; display: block; object-fit: cover; min-height: 160px; }
.jbm4dq {
  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;
}
.jbm4dq .xgcq5 { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.jbm4dq .d19e { color: #fff; font-size: 1.25rem; }
.jbm4dq .qnpez6sd strong { color: #fff; }
.jbm4dq .qnpez6sd .ml8ww3f { filter: brightness(1.2); }
.jbm4dq .b47abur { margin-left: auto; white-space: nowrap; }
.qeth3 { flex: 1; }
.s4y3 {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-alt);
}
.s4y3 .b47abur { margin-left: auto; }
.xkctl { display: flex; flex-direction: column; gap: 16px; padding: 20px 24px; }
.c5h7xba1 .q1zmdep {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.c5h7xba1 .mul18 {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.c5h7xba1 .uu4u4bw { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .jbm4dq { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .xkctl { padding: 16px; }
  .c5h7xba1 .mul18 { min-width: 50%; }
}

/* ── LAYOUT 3: magazine — editorial 3-column ──────────────────────────────── */
.klmfdea3 {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.dlg7otv7 { flex: 1; }
.dlg7otv7 .d19e { font-size: 1.3rem; }
.e0rtosv {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.kkxwomlu { padding: 16px; border-right: 1px solid var(--border-alt); }
.kkxwomlu .qnxpe0ts { height: 100%; }
.kkxwomlu .qnxpe0ts img { height: 100%; object-fit: cover; }
.qvkd { padding: 0; border-right: 1px solid var(--border-alt); }
.qvkd .q1zmdep { display: flex; flex-direction: column; }
.qvkd .mul18 { border-bottom: 1px solid var(--border-alt); }
.qvkd .uu4u4bw { background: var(--accent-bg); }
.v4dy { padding: 16px; }
.v4dy .cfn2epc1 { grid-template-columns: 1fr; }
.cmx8qqvg {
  padding: 12px 24px; border-top: 1px solid var(--border-alt);
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .e0rtosv { grid-template-columns: 1fr; }
  .kkxwomlu { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .qvkd { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .klmfdea3 { flex-wrap: wrap; padding: 16px; }
}

/* ── LAYOUT 4: compact — header bar → screenshot → data ──────────────────── */
.c8s9o1mm {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border-alt);
}
.x3gm {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.x3gm .xgcq5 { width: 72px; height: 50px; }
.x3gm .d19e { font-size: 1rem; white-space: nowrap; }
.rjhhquxt { border-bottom: 1px solid var(--border-alt); max-height: 280px; overflow: hidden; }
.rjhhquxt img { width: 100%; display: block; object-fit: cover; }
.gnyjbub0 {
  display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; overflow: hidden;
}
.jyf54y .q1zmdep { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.jyf54y .mul18 { padding: 0; flex: 0 0 auto; gap: 6px; }
.jyf54y .uu4u4bw { display: none; }
.jyf54y .cfn2epc1 { gap: 8px; }
.jyf54y .nhpche, .jyf54y .fpk15t { padding: 8px; }
@media (max-width: 480px) {
  .c8s9o1mm { flex-direction: column; align-items: stretch; }
}

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

/* ── LAYOUT 6: scorecard — big score centerpiece ──────────────────────────── */
.ji6k {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
  border-bottom: 1px solid var(--border-alt);
}
.g5660r {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; text-align: center;
}
.ytsbbdl4 {
  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;
}
.t4df { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.t4df .yj2mogf { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.ytsbbdl4 .ml8ww3f { font-size: .75rem; margin-top: 2px; }
.qvob4lwu { padding: 12px; display: flex; align-items: center; flex: 1; }
.qvob4lwu .qnxpe0ts { width: 100%; }
.cyitv {
  padding: 0; border-bottom: 1px solid var(--border-alt);
}
.x9j4 .q1zmdep {
  display: flex; flex-wrap: wrap;
}
.x9j4 .mul18 {
  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;
}
.x9j4 .mul18:last-child { border-right: none; }
.x9j4 .zj3nhnx { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.x9j4 .uu4u4bw { background: var(--accent-bg); }
.ceh5y9 { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 720px) {
  .ji6k { grid-template-columns: 1fr; }
  .ytsbbdl4 { width: 100px; height: 100px; margin: 16px auto; }
  .t4df { font-size: 1.4rem; }
  .qvob4lwu { justify-content: center; }
  .x9j4 .mul18 { min-width: 50%; }
}

/* ── LAYOUT 7: stack — vertical full-width flow ──────────────────────────── */
.zrsvu {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.q3lt { max-height: 240px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.q3lt img { width: 100%; display: block; object-fit: cover; }
.l1ni9d7 { padding: 16px 24px; border-bottom: 1px solid var(--border-alt); }
.yhei13la .q1zmdep {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.yhei13la .mul18 {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.yhei13la .uu4u4bw {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.yhei13la .cfn2epc1 { margin: 0 24px; padding-top: 16px; }
.yhei13la .zejn { padding: 0 24px; }
.tb7dx7d { padding: 16px 24px; border-top: 1px solid var(--border-alt); text-align: center; }
.tb7dx7d .b47abur { display: inline-block; }
@media (max-width: 540px) {
  .zrsvu { flex-wrap: wrap; padding: 14px 16px; }
  .l1ni9d7 { padding: 12px 16px; }
  .yhei13la .cfn2epc1 { margin: 0 16px; }
  .yhei13la .zejn { padding: 0 16px; }
  .tb7dx7d { padding: 12px 16px; }
}


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

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

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.g0ig7d8 .y4vw {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.g0ig7d8 .f4z5 {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.g0ig7d8 .g79u3 { color: var(--accent); }
.g0ig7d8 .lgn53 { background: var(--accent-bg); }
.g0ig7d8 .wcgys, .g0ig7d8 .p80g, .g0ig7d8 .yk99 {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

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

/* compact: менші відступи всюди */
.sptw8kj .r0zzw3ec { padding: 8px 14px; gap: 12px; }
.sptw8kj .wrtef { height: 32px; min-width: 52px; }
.sptw8kj .l9blbqiq { max-height: 24px; }
.sptw8kj .f8k39f2q { font-size: 0.82rem; }
.sptw8kj .lgn53 { padding: 14px 18px; gap: 14px; }
.sptw8kj .gmp0 { padding: 14px 18px; }
.sptw8kj .q5hofy { width: 70px; }
.sptw8kj .g6481 h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.ds39dn6 .tee3wmz {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.ds39dn6 .r0zzw3ec {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); row-gap: 0; column-gap: 12px;
}
.ds39dn6 .r0zzw3ec:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.ds39dn6 .g79u3,
.ds39dn6 .rs4xg5,
.ds39dn6 .hnmow { border-left: 1px solid var(--border); padding-left: 10px; }
.ds39dn6 .f8k39f2q { padding: 0 10px; }

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

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

/* ── casino-wide: високі горизонтальні картки з великим лого ───────────────*/
.zlp7o .tee3wmz { gap: 12px; }
.zlp7o .r0zzw3ec {
  padding: 18px 24px; gap: 20px; border-radius: 12px;
  min-height: 80px;
}
.zlp7o .wrtef {
  min-width: 90px; height: 64px; padding: 6px 12px; border-radius: 10px;
}
.zlp7o .l9blbqiq { max-height: 52px; max-width: 120px; }
.zlp7o .f8k39f2q { font-size: 1rem; }
.zlp7o .r8uwm { font-size: .85rem; }
.zlp7o .f4z5 { font-size: .9rem; }
.zlp7o .l3la.dy5ad { padding: 10px 24px !important; font-size: .9rem; }

/* ── casino-jumbo: дуже великі картки, лого + інтерфейс скриншот ──────────*/
.k0sgq .tee3wmz { gap: 16px; }
.k0sgq .r0zzw3ec {
  padding: 24px 28px; gap: 24px; border-radius: 14px;
  min-height: 100px; border-width: 2px;
}
.k0sgq .wrtef {
  min-width: 110px; height: 80px; padding: 8px 14px; border-radius: 12px;
  background: var(--bg-raised);
}
.k0sgq .l9blbqiq { max-height: 64px; max-width: 140px; }
.k0sgq .f8k39f2q { font-size: 1.1rem; font-weight: 800; }
.k0sgq .g79u3 { font-size: .95rem; letter-spacing: 2px; }
.k0sgq .r8uwm { font-size: .9rem; }
.k0sgq .f4z5 { font-size: .95rem; font-weight: 700; }
.k0sgq .y4vw { font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; }
.k0sgq .l3la.dy5ad { padding: 12px 32px !important; font-size: .95rem; font-weight: 700; }

/* ── fullrow: мобіль — 1 картка в ряд, ширша ─────────────────────────────*/
@media (max-width: 720px) {
  .f960w5u .tee3wmz {
    grid-template-columns: 1fr;
  }
}

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.kthv4 .rs4xg5 { flex: 1.8; }
.kthv4 .rs4xg5 .f4z5 {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}
.kthv4 .rs4xg5 .y4vw { font-weight: 700; color: var(--text-primary); }
.kthv4 .irtcs,
.kthv4 .j59nf4,
.kthv4 .iap7syid { flex: 0.75; opacity: 0.65; }

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

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

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

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

/* score в оглядах — ховаємо зірки */
.ysf31ag .mz1ax4 .ml8ww3f,
.s5gd .mz1ax4 .ml8ww3f,
.c5yi .mz1ax4 .ml8ww3f { display: none; }

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

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

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

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.pw0i6p { margin-bottom: 0; }
.svyt1zq3 h2.p6v88xaz { color: var(--accent-light); border-color: var(--accent); }
.j66oc h2.p6v88xaz { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.ksfmeh6 .w8x65wj     { background: #052e16; border-color: #10b981; }
.ksfmeh6 .i8qs7 { background: #2d0a1e; border-color: #f43f5e; }
.ksfmeh6 .acaq    { background: #1e1036; border-color: #a855f7; }
.ksfmeh6 .qq04 strong  { color: #f1f5f9; }
.ksfmeh6 .qq04 p       { color: #cbd5e1; }
.ksfmeh6 .dgo4dzw    .w8x65wj     .vroty::before,
.ksfmeh6 .qiu0t0r  .w8x65wj     .vroty::before,
.ksfmeh6 .olzfgm  .w8x65wj     .vroty::before,
.ksfmeh6 .niss0n .w8x65wj     .vroty::before { color: #10b981; }
.ksfmeh6 .dgo4dzw    .i8qs7 .vroty::before,
.ksfmeh6 .qiu0t0r  .i8qs7 .vroty::before,
.ksfmeh6 .olzfgm  .i8qs7 .vroty::before,
.ksfmeh6 .niss0n .i8qs7 .vroty::before { color: #f43f5e; }
.ksfmeh6 .dgo4dzw    .acaq    .vroty::before,
.ksfmeh6 .qiu0t0r  .acaq    .vroty::before,
.ksfmeh6 .olzfgm  .acaq    .vroty::before,
.ksfmeh6 .niss0n .acaq    .vroty::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.ffu0r .w8x65wj     { background: #2d2000; border-color: #eab308; }
.ffu0r .i8qs7 { background: #2d0b0b; border-color: #ef4444; }
.ffu0r .acaq    { background: #2d1600; border-color: #f97316; }
.ffu0r .qq04 strong  { color: #f1f5f9; }
.ffu0r .qq04 p       { color: #cbd5e1; }
.ffu0r .dgo4dzw    .w8x65wj     .vroty::before,
.ffu0r .qiu0t0r  .w8x65wj     .vroty::before,
.ffu0r .olzfgm  .w8x65wj     .vroty::before,
.ffu0r .niss0n .w8x65wj     .vroty::before { color: #eab308; }
.ffu0r .dgo4dzw    .i8qs7 .vroty::before,
.ffu0r .qiu0t0r  .i8qs7 .vroty::before,
.ffu0r .olzfgm  .i8qs7 .vroty::before,
.ffu0r .niss0n .i8qs7 .vroty::before { color: #ef4444; }
.ffu0r .dgo4dzw    .acaq    .vroty::before,
.ffu0r .qiu0t0r  .acaq    .vroty::before,
.ffu0r .olzfgm  .acaq    .vroty::before,
.ffu0r .niss0n .acaq    .vroty::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.bp0i00c .w8x65wj     { background: #0c1a2e; border-color: #38bdf8; }
.bp0i00c .i8qs7 { background: #12103a; border-color: #818cf8; }
.bp0i00c .acaq    { background: #0a2020; border-color: #2dd4bf; }
.bp0i00c .qq04 strong  { color: #f1f5f9; }
.bp0i00c .qq04 p       { color: #cbd5e1; }
.bp0i00c .dgo4dzw    .w8x65wj     .vroty::before,
.bp0i00c .qiu0t0r  .w8x65wj     .vroty::before,
.bp0i00c .olzfgm  .w8x65wj     .vroty::before,
.bp0i00c .niss0n .w8x65wj     .vroty::before { color: #38bdf8; }
.bp0i00c .dgo4dzw    .i8qs7 .vroty::before,
.bp0i00c .qiu0t0r  .i8qs7 .vroty::before,
.bp0i00c .olzfgm  .i8qs7 .vroty::before,
.bp0i00c .niss0n .i8qs7 .vroty::before { color: #818cf8; }
.bp0i00c .dgo4dzw    .acaq    .vroty::before,
.bp0i00c .qiu0t0r  .acaq    .vroty::before,
.bp0i00c .olzfgm  .acaq    .vroty::before,
.bp0i00c .niss0n .acaq    .vroty::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.rjocidy .w8x65wj     { background: var(--accent-bg); border-color: var(--accent); }
.rjocidy .i8qs7 { background: var(--accent-bg-light); border-color: var(--accent-light); }
.rjocidy .acaq    { background: var(--accent-bg); border-color: var(--accent-pale); }
.rjocidy .dgo4dzw    .vroty::before,
.rjocidy .qiu0t0r  .vroty::before,
.rjocidy .olzfgm  .vroty::before,
.rjocidy .niss0n .vroty::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.ylp7 .nhpche ul li,
.ylp7 .du905 li         { color: #4ade80; }
.ylp7 .nhpche .q1wfyz { color: #22c55e; }
.ylp7 .fpk15t ul li,
.ylp7 .hsz7oa9w li         { color: #f87171; }
.ylp7 .fpk15t .ea1a3fm { color: #ef4444; }

/* blue: синій pros / amber cons */
.wu6god4x .nhpche { background: #0c1a2e; }
.wu6god4x .fpk15t { background: #2d1f00; }
.wu6god4x .nhpche .q1wfyz { color: #93c5fd; }
.wu6god4x .fpk15t .ea1a3fm { color: #fcd34d; }
.wu6god4x .nhpche ul li,
.wu6god4x .du905 li            { color: #bfdbfe; }
.wu6god4x .fpk15t ul li,
.wu6god4x .hsz7oa9w li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.i5fc7 .nhpche { background: var(--accent-bg); }
.i5fc7 .fpk15t { background: var(--accent-bg-light); }
.i5fc7 .nhpche .q1wfyz { color: var(--accent-pale); }
.i5fc7 .fpk15t .ea1a3fm { color: var(--accent-light); }
.i5fc7 .nhpche ul li,
.i5fc7 .du905 li          { color: var(--text-body); }
.i5fc7 .fpk15t ul li,
.i5fc7 .hsz7oa9w li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.hhi8 .q1wfyz::before { content: "✓ "; }
.hhi8 .ea1a3fm::before { content: "✗ "; }

/* arrows: → / ← */
.q4prw3ia .q1wfyz::before { content: "→ "; }
.q4prw3ia .ea1a3fm::before { content: "← "; }

/* marks: ★ / ✕ */
.gqosjk .q1wfyz::before { content: "★ "; }
.gqosjk .ea1a3fm::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.g8arj .q1wfyz::before { content: "◆ "; }
.g8arj .ea1a3fm::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.fei1lgf .qq04 { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.fei1lgf .w8x65wj     { border-top-color: var(--c-tip-border); }
.fei1lgf .i8qs7 { border-top-color: var(--c-warn-border); }
.fei1lgf .acaq    { border-top-color: #60a5fa; }

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

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

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

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

.dgo4dzw .vroty,
.qiu0t0r .vroty,
.olzfgm .vroty,
.niss0n .vroty { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.dgo4dzw .vroty::before,
.qiu0t0r .vroty::before,
.olzfgm .vroty::before,
.niss0n .vroty::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.dgo4dzw .w8x65wj     .vroty::before { content: "✦"; color: var(--c-tip-border); }
.dgo4dzw .i8qs7 .vroty::before { content: "▲"; color: var(--c-warn-border); }
.dgo4dzw .acaq    .vroty::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.qiu0t0r .w8x65wj     .vroty::before { content: "★"; color: var(--c-tip-border); }
.qiu0t0r .i8qs7 .vroty::before { content: "◆"; color: var(--c-warn-border); }
.qiu0t0r .acaq    .vroty::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.olzfgm .w8x65wj     .vroty::before { content: "▶"; color: var(--c-tip-border); }
.olzfgm .i8qs7 .vroty::before { content: "■"; color: var(--c-warn-border); }
.olzfgm .acaq    .vroty::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.niss0n .w8x65wj     .vroty::before { content: "→"; color: var(--c-tip-border); }
.niss0n .i8qs7 .vroty::before { content: "⬥"; color: var(--c-warn-border); }
.niss0n .acaq    .vroty::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.jney5 .ct98yg6u .ituekah,
.jney5 .o9tnylj .ituekah  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.jney5 .fxf3l                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.jney5 .r0zzw3ec                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.jney5 .qxkhbtb            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.jney5 .xsll          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.jney5 .unj0                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.iovd4 .ct98yg6u .ituekah,
.iovd4 .o9tnylj .ituekah,
.iovd4 .fxf3l,
.iovd4 .r0zzw3ec,
.iovd4 .qxkhbtb,
.iovd4 .xsll,
.iovd4 .unj0,
.iovd4 .z09i3n .qq04 { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.oibg2   body, .oibg2   { font-size: 0.9rem; }
.oibg2   .gaeu2vs6, .oibg2 .nme8f6, .oibg2 .naexfgi,
.oibg2   .myhkcg, .oibg2 .bfjs9j3q { font-size: 0.9rem; }
.oibg2   .cir7, .oibg2 .jpbbh { font-size: 0.9rem; }

.asa93t2   .gaeu2vs6, .asa93t2 .nme8f6, .asa93t2 .naexfgi,
.asa93t2   .myhkcg, .asa93t2 .bfjs9j3q { font-size: 0.9rem; }
.asa93t2   .cir7, .asa93t2 .jpbbh { font-size: 0.9rem; }

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

.bnhsjew   .gaeu2vs6, .bnhsjew .nme8f6, .bnhsjew .naexfgi,
.bnhsjew   .myhkcg, .bnhsjew .bfjs9j3q { font-size: 1.08rem; }
.bnhsjew   .cir7, .bnhsjew .jpbbh { font-size: 1.05rem; }
.bnhsjew   .d3bpkp { font-size: 0.97rem; }

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

/* large */
.p8jxc8 .zpgt      { font-size: 3.2rem; }
.p8jxc8 h2.p6v88xaz { font-size: 1.9rem; }
.p8jxc8 h3.f9nea     { font-size: 1.4rem; }

/* display */
.c5r266ef .zpgt      { font-size: 3.8rem; }
.c5r266ef h2.p6v88xaz { font-size: 2.2rem; }
.c5r266ef h3.f9nea     { font-size: 1.6rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.sqvkytm   .pw0i6p + .pw0i6p::before,
.ez848nm  .pw0i6p + .pw0i6p::before,
.mvpe   .pw0i6p + .pw0i6p::before,
.h8q3hc5j   .pw0i6p + .pw0i6p::before,
.qz5r   .pw0i6p + .pw0i6p::before,
.xqy1mks3 .pw0i6p + .pw0i6p::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}

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

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

/* dots: три крапки по центру */
.mvpe .pw0i6p + .pw0i6p::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: лінія що розчиняється по краях */
.h8q3hc5j .pw0i6p + .pw0i6p::before {
  content: ""; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 25%, var(--accent) 75%, transparent 100%);
  opacity: 0.6;
}

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

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

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

/* wave: заповнена хвиля hero-style — ::before виступає вгору з нової секції */
.upv4bi .pw0i6p + .pw0i6p::before,
.mfmo63 .pw0i6p + .pw0i6p::before,
.bunq .pw0i6p + .pw0i6p::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 */
.hvrokly .upv4bi .pw0i6p:nth-child(even)::before,
.hvrokly .mfmo63 .pw0i6p:nth-child(even)::before,
.hvrokly .bunq .pw0i6p:nth-child(even)::before { background: var(--bg-surface); }

/* section_bg=stripe: парні секції мають bg-card */
.qhv1as1m .upv4bi .pw0i6p:nth-child(even)::before,
.qhv1as1m .mfmo63 .pw0i6p:nth-child(even)::before,
.qhv1as1m .bunq .pw0i6p:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.upv4bi .pw0i6p + .pw0i6p::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 гребені */
.mfmo63 .pw0i6p + .pw0i6p::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: глибока дуга */
.bunq .pw0i6p + .pw0i6p::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 у формі хвилі */
.dct5 .wybtvh,
.uqenci26 .wybtvh,
.zjlhd .wybtvh { overflow: hidden; }

/* wave: додатковий простір щоб хвиля не закривала CTA */
.dct5 .k57z9w,
.uqenci26 .k57z9w { margin-bottom: 60px; }
.zjlhd .k57z9w { margin-bottom: 70px; }
.dct5 .mpq22jr,
.uqenci26 .mpq22jr { padding-bottom: 60px; }
.zjlhd .mpq22jr { padding-bottom: 70px; }

.dct5 .wybtvh::before,
.uqenci26 .wybtvh::before,
.zjlhd .wybtvh::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 гребінь) */
.dct5 .wybtvh::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 гребені */
.uqenci26 .wybtvh::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: глибока дуга */
.zjlhd .wybtvh::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 */
.saoj .ytssfa { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.ah6pn347 .ytssfa { background: linear-gradient(45deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%); }
.m7g5  .ytssfa { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.jqvvm7zc  .ytssfa { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }

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

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

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

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

/* hg-solid: суцільний колір без градієнту */
.fmbjym3 .yq3ywpu8 { background: var(--accent); }
.fmbjym3 .yq3ywpu8 .ytssfa { background: none; }
.fmbjym3 .gre94ef { background: var(--accent); }
.fmbjym3 .ynp2a { background: var(--accent-bg); }
.fmbjym3 .ytssfa { 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%, текст обтікає справа */
.cxjibp .vvjos3ms { float: left; width: 38%; margin: 0 28px 16px 0; }
.cxjibp .vvjos3ms .wi2hbsf { width: 100%; height: auto; max-height: 280px; object-fit: cover; border-radius: 10px; }
.cxjibp .zxtk::after { content: ''; display: block; clear: both; }

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

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

/* Великі блочні елементи — clear float щоб не стискались */
.cxjibp .eneer7d,
.cxjibp .tee3wmz,
.bvtb .eneer7d,
.bvtb .tee3wmz,
.t88d .eneer7d,
.t88d .tee3wmz { clear: both; }

/* Маркери списків не мають налазити на float-картинку */
.cxjibp .cir7,
.cxjibp .jpbbh,
.bvtb .cir7,
.bvtb .jpbbh,
.t88d .cir7,
.t88d .jpbbh { overflow: hidden; }


@media (max-width: 640px) {
  .cxjibp .vvjos3ms,
  .bvtb .vvjos3ms,
  .t88d .vvjos3ms { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1100px (задано в .y32m2pp3, .zxtk, .gkzapka) */
.tr4t6y38 .y32m2pp3,
.tr4t6y38 .zxtk,
.tr4t6y38 .gkzapka  { max-width: 1100px; }
.tr4t6y38 { --content-mw: 1100px; }
.pur1a .y32m2pp3,
.pur1a .zxtk,
.pur1a .gkzapka  { max-width: 1200px; }
.pur1a { --content-mw: 1200px; }
.l8mgoi9c .y32m2pp3,
.l8mgoi9c .zxtk,
.l8mgoi9c .gkzapka  { max-width: 1320px; }
.l8mgoi9c { --content-mw: 1320px; }

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

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

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

/* float: bc-float-wrap — зовнішній контейнер; bc-inner тільки внутрішній padding картки */
.cecha {
  max-width: 1100px; margin: -38px auto 0;
  padding: 0 24px; position: relative; z-index: 5;
}
.obtstr .ue4v { padding: 0 16px; }
.obtstr .nc759b11 {
  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);
}
.obtstr .y32m2pp3 { padding-top: 28px; }

/* content-width: above — обидва класи на <body>, тому без пробілу */
.tr4t6y38.s62zdr .ue4v { max-width: 1100px; }
.pur1a.s62zdr .ue4v { max-width: 1200px; }
.l8mgoi9c.s62zdr .ue4v { max-width: 1320px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.tr4t6y38 .cecha { max-width: 1100px; }
.pur1a .cecha { max-width: 1200px; }
.l8mgoi9c .cecha { max-width: 1320px; }

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

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.bpu7o2 { font-weight: 300; }
.bpu7o2 h2.p6v88xaz { font-weight: 600; }
.bpu7o2 h3.f9nea     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.njb7l { font-weight: 500; }
.njb7l h2.p6v88xaz { font-weight: 800; }
.njb7l h3.f9nea     { font-weight: 700; }
/* fw-600: semibold */
.hp71fm9 { font-weight: 600; }
.hp71fm9 h2.p6v88xaz { font-weight: 900; }
.hp71fm9 h3.f9nea     { font-weight: 800; }
.hp71fm9 .qq04 strong,
.hp71fm9 .qq04 strong { font-weight: 600; }
/* .hp71fm9 .nme8f6, .hp71fm9 .myhkcg { font-weight: 600; } */

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

/* ── Sticky corner CTA button ────────────────────────────────────────────────*/
.dovkkv {
  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;
}
.dovkkv:hover { transform: translateY(-2px); opacity: 0.92; }
/* always solid background regardless of btn_style variant */
.dovkkv { background: var(--accent) !important; color: #fff !important; border: none !important; }
/* position by variant */
.g2c28j7b .dovkkv { display: none; }
.i5zxu .dovkkv { right: 32px; }
.yierq  .dovkkv { left: 32px; }
@media (max-width: 480px) {
  .i5zxu .dovkkv { right: 20px; bottom: 20px; }
  .yierq  .dovkkv { left: 20px; bottom: 20px; }
}

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

/* minimal */
.d4tfclo .gkzapka { text-align: center; }
.d4tfclo .h261 { justify-content: center; margin-bottom: 16px; }
.d4tfclo .qmvbr { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .gkzapka { padding-left: 16px; padding-right: 16px; }
  .rlcssi .gkzapka { padding: 20px 16px; }
  .h261 { gap: 4px 12px; }
  .qmvbr { font-size: 0.78rem; }
}


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


/* ribbon — компактний 1 рядок, service + disclaimer дрібно знизу */
.diplv4v .ouxbw { display: flex; align-items: center; gap: 0; flex-wrap: wrap; padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 12px; }
.diplv4v .s6kcfo { 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; }
.diplv4v .yhc1 { display: flex; flex-wrap: wrap; gap: 4px 16px; margin-right: 24px; }
.diplv4v .yhc1 a { font-size: 0.87rem; color: var(--text-muted); text-decoration: none; }
.diplv4v .yhc1 a:hover { color: var(--accent); }
.auh65ed { font-size: 0.8rem; color: var(--text-faint); margin: 0; white-space: nowrap; }
.diplv4v .rgncwhda { display: flex; align-items: baseline; gap: 1.5rem; flex-wrap: wrap; }
.diplv4v .ohhnif { display: flex; flex-wrap: wrap; gap: 4px 14px; }
.diplv4v .ohhnif a { font-size: 0.78rem; color: var(--text-faint); text-decoration: none; }
.diplv4v .ohhnif a:hover { color: var(--accent); }
.diplv4v .qmvbr { font-size: 0.78rem; color: var(--text-faint); margin: 0; }
@media (max-width: 640px) { .diplv4v .ouxbw { gap: 12px; } .diplv4v .s6kcfo { margin-right: 0; width: 100%; } }

/* mega — верхня зона лого+2 колонки лінків, нижня legal-смуга */
.bpk2 .yfw0js5 { 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; }
.bpk2 .psdg .s6kcfo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; text-decoration: none; color: var(--text); margin-bottom: 10px; }
.bpk2 .v5u4q4sx { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
.bpk2 .rqxg43 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin: 0 0 12px; }
.bpk2 .wb12b6nn { display: flex; flex-direction: column; gap: 9px; }
.bpk2 .wb12b6nn a { font-size: 0.88rem; color: var(--text-muted); text-decoration: none; }
.bpk2 .wb12b6nn a:hover { color: var(--accent); }
.bpk2 .ae8x2 { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.bpk2 .qmvbr { font-size: 0.78rem; color: var(--text-faint); margin: 0; flex: 1; }
.bpk2 .pp88pt { font-size: 0.78rem; color: var(--text-faint); margin: 0; white-space: nowrap; }
@media (max-width: 768px) { .bpk2 .yfw0js5 { grid-template-columns: 1fr 1fr; } .bpk2 .psdg { grid-column: 1 / -1; } }
@media (max-width: 480px) { .bpk2 .yfw0js5 { grid-template-columns: 1fr; } }

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

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

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

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

/* dark: завжди темний, незалежно від теми */
.kitcbg2s .jn9iixg9      { background: #0d1117; border-bottom-color: #21262d; }
.kitcbg2s .j3zu4b { color: var(--accent-light); }
.kitcbg2s .yabjy { --msep-color: #8b949e; }
.kitcbg2s .yabjy a { color: #8b949e; }
.kitcbg2s .yabjy a:hover { color: var(--accent-light); }
.kitcbg2s .et21aiyn { color: #8b949e; }
.kitcbg2s .leoyqeq { background: #0d1117; border-top-color: #21262d; }
.kitcbg2s .qmvbr,
.kitcbg2s .pp88pt { color: #6e7681; }
.kitcbg2s .o1t9 a, .kitcbg2s .h261 a,
.kitcbg2s .wb12b6nn a, .kitcbg2s .yhc1 a,
.kitcbg2s .ohhnif a, .kitcbg2s .s6kcfo { color: #8b949e; }
.kitcbg2s .o1t9 a:hover, .kitcbg2s .h261 a:hover,
.kitcbg2s .wb12b6nn a:hover, .kitcbg2s .yhc1 a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .kitcbg2s .yabjy { background: #0d1117; border-top-color: #21262d; }
  .kitcbg2s .yabjy li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.twcc .jn9iixg9      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.twcc .j3zu4b { color: var(--accent); }
.twcc .yabjy { --msep-color: #475569; }
.twcc .yabjy a { color: #475569; }
.twcc .yabjy a:hover { color: var(--accent); }
.twcc .et21aiyn { color: #64748b; }
.twcc .leoyqeq { background: #f0f4f8; border-top-color: #cbd5e1; }
.twcc .qmvbr,
.twcc .pp88pt { color: #64748b; }
.twcc .o1t9 a, .twcc .h261 a,
.twcc .wb12b6nn a, .twcc .yhc1 a,
.twcc .ohhnif a, .twcc .s6kcfo { color: #374151; }
.twcc .o1t9 a:hover, .twcc .h261 a:hover,
.twcc .wb12b6nn a:hover, .twcc .yhc1 a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .twcc .yabjy { background: #f0f4f8; border-top-color: #cbd5e1; }
  .twcc .yabjy li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.qoghlks .jn9iixg9      { background: var(--accent); border-bottom-color: var(--accent-light); }
.qoghlks .j3zu4b { color: #fff; }
.qoghlks .yabjy { --msep-color: rgba(255,255,255,0.82); }
.qoghlks .yabjy a { color: rgba(255,255,255,0.82); }
.qoghlks .yabjy a:hover { color: #fff; }
.qoghlks .et21aiyn { color: rgba(255,255,255,0.9); }
.qoghlks .leoyqeq { background: var(--accent); border-top-color: var(--accent-light); }
.qoghlks .qmvbr,
.qoghlks .pp88pt { color: rgba(255,255,255,0.72); }
.qoghlks .o1t9 a, .qoghlks .h261 a,
.qoghlks .wb12b6nn a, .qoghlks .yhc1 a,
.qoghlks .ohhnif a, .qoghlks .s6kcfo { color: rgba(255,255,255,0.82); }
.qoghlks .o1t9 a:hover, .qoghlks .h261 a:hover,
.qoghlks .wb12b6nn a:hover, .qoghlks .yhc1 a:hover { color: #fff; }
@media (max-width: 640px) {
  .qoghlks .yabjy { background: var(--accent); border-top-color: var(--accent-light); }
  .qoghlks .yabjy li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.fyi11ue3 .jn9iixg9 {
  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);
}
.fyi11ue3 .leoyqeq {
  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) {
  .fyi11ue3 .yabjy {
    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 */
.e2rokp .cga5 { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.cle9re .cga5 { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.n2pg .cga5 { min-height: 72px; height: auto; }
.a4o4q8cx .cga5 { min-height: 84px; height: auto; }

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

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


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

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.yh8rhmh, .cu5pcc6n {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wcodjw .yh8rhmh,
.wcodjw .cu5pcc6n { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.ppnvjp .yh8rhmh,
.ppnvjp .cu5pcc6n { 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; }
.qrlv0 .yh8rhmh,
.qrlv0 .cu5pcc6n { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.eibe .yh8rhmh,
.eibe .cu5pcc6n { 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 */
.tiamgr8   .yabjy a { font-weight: 500; }
.r9qsfqji .yabjy a { font-weight: 600; }
.iylcdjya     .yabjy a { font-weight: 700; }
.ffnpu    .yabjy a { font-weight: 800; letter-spacing: 0.01em; }

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

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .c6vy .et21aiyn,
  .yhted .et21aiyn,
  .im5op1y .et21aiyn,
  .tme1m .et21aiyn,
  .mfomw .et21aiyn {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .c6vy .et21aiyn::before,
  .yhted .et21aiyn::before,
  .im5op1y .et21aiyn::before,
  .tme1m .et21aiyn::before,
  .mfomw .et21aiyn::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .c6vy .et21aiyn::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 лінії рівні */
  .yhted .et21aiyn::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% */
  .im5op1y .et21aiyn::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% */
  .tme1m .et21aiyn::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% */
  .mfomw .et21aiyn::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) {
  .dk6gn .et21aiyn {
    padding: 5px 14px;
  }
  .dk6gn .yabjy {
    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;
  }
  .dk6gn .yabjy li a {
    border-bottom: none; padding: 10px 22px;
  }
  .dk6gn .yabjy li a:hover { background: var(--bg-raised); }
}

/* drawer: висувається з правого боку ───────────────────────────────────── */
@media (max-width: 640px) {
  .jcct .et21aiyn {
    padding: 5px 10px;
  }
  .jcct .yabjy {
    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);
  }
  .jcct .yabjy.gyb78b { transform: translateX(0); }
  .jcct .yabjy li a {
    padding: 14px 28px; font-size: 1rem; border-bottom: 1px solid var(--border);
  }
  .jcct .yabjy li:last-child a { border-bottom: none; }
}

/* sheet: з'їжджає знизу ────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .yyy1ooyv .et21aiyn {
    padding: 5px 10px;
  }
  .yyy1ooyv .yabjy {
    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);
  }
  .yyy1ooyv .yabjy::before {
    content: ""; display: block;
    width: 40px; height: 4px;
    background: var(--border); border-radius: 2px;
    margin: 0 auto 14px;
  }
  .yyy1ooyv .yabjy.gyb78b { transform: translateY(0); }
  .yyy1ooyv .yabjy li a {
    text-align: center; border-bottom: none; padding: 13px 28px; font-size: 1rem;
  }
}

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .rlgzd .et21aiyn {
    padding: 5px 10px;
  }
  .rlgzd .yabjy {
    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;
  }
  .rlgzd .yabjy.gyb78b { opacity: 1; pointer-events: auto; }
  .rlgzd .yabjy 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) {
  .p79m     .et21aiyn { border-radius: 0 !important; }
  .ecnw6qu   .et21aiyn { border-radius: 8px !important; }
  .ymxzuml .et21aiyn { border-radius: 50% !important; }
  .j0jid   .et21aiyn { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .g79u3 / .ml8ww3f) */
.kws8j7z    .g79u3, .kws8j7z    .ml8ww3f { color: #f59e0b; }
.iqh4c1      .g79u3 { font-size: 1rem; letter-spacing: 1.5px; }
.iqh4c1      .ml8ww3f   { font-size: 1.35rem; }
.rch35    .g79u3, .rch35    .ml8ww3f { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.v8dc5ca     .g79u3, .v8dc5ca     .ml8ww3f { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.kpuyi8 .g79u3, .kpuyi8 .ml8ww3f { color: var(--accent); letter-spacing: 2px; }
.id4v   .g79u3, .id4v   .ml8ww3f { color: #e91e63; letter-spacing: 2px; }
.aid7u  .g79u3, .aid7u  .ml8ww3f { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.eagbl     .g79u3, .eagbl     .ml8ww3f { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

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

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

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

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

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

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

/* corner: маленький #1/#2 у правому верхньому куті */
.xw43 .tee3wmz { counter-reset: cs-rank; }
.xw43 .r0zzw3ec { position: relative; counter-increment: cs-rank; }
.xw43 .r0zzw3ec::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-колонка рядка */
.orqp .tee3wmz { counter-reset: cs-rank; }
.orqp .r0zzw3ec::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 + +/− тогл (базові стилі .l0c0pgv вже задано) */

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

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

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

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

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

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

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

.lwcos {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 14px; padding: 32px;
}
.mgrz { margin-bottom: 20px; }
.esorw0 {
  display: block; color: var(--text-muted); font-size: 0.78rem;
  font-weight: 600; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.fokvu3m8 {
  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;
}
.fokvu3m8:focus { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-bg); }
.m0cs20s { resize: vertical; min-height: 130px; }
.aclmzx { width: 100%; margin-top: 8px; }

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

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

/* contact FAQ */
.snb8mfqr { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.yqpsvj {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 10px; overflow: hidden;
}
.byksjw3 {
  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;
}
.byksjw3::after { content: "+"; color: var(--accent); font-size: 1.2rem; flex-shrink: 0; }
.yqpsvj[open] .byksjw3::after { content: "−"; }
.wp88 { padding: 0 18px 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

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

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

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

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

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

/* ── Privacy timeline layout ─────────────────────────────────────────────────*/
.kl0b { max-width: 760px; margin: 0 auto; }
.arkq { position: relative; padding-left: 28px; }
.arkq::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.btv37q6 { position: relative; display: flex; gap: 20px; padding-bottom: 32px; }
.btv37q6:last-child { padding-bottom: 0; }
.vkpt { 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; }
.cg0nqw h2 { font-size: 1.05rem; font-weight: 700; color: var(--accent-light); margin: 0 0 8px; }
.cg0nqw p { color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ── Static hero variants ────────────────────────────────────────────────────*/
.mjqkna {
  background: var(--accent-bg); border-radius: 14px;
  border-bottom: none; padding: 44px 36px; margin-bottom: 44px;
}
.mjqkna .f4qx { color: var(--accent-light); }
.k7ys4wc {
  text-align: left; border-bottom: none;
  border-left: 4px solid var(--accent); padding: 28px 0 28px 28px;
  margin-bottom: 44px;
}
.k7ys4wc .f4qx { font-size: 2rem; }
.k7ys4wc .ipof { max-width: 680px; }
.xt0ax {
  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;
}
.xt0ax .f4qx { margin: 0; font-size: 1.8rem; flex-shrink: 0; max-width: 45%; }
.xt0ax .ipof  { margin: 0; }
@media (max-width: 640px) { .xt0ax { flex-direction: column; } }

.rjy13 {
  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;
}
.rjy13 .f4qx { color: var(--accent-light); }
.sjpm {
  background: var(--accent); border-bottom: none;
  padding: 40px 32px 36px; margin-bottom: 32px;
}
.sjpm .f4qx { color: #fff; }
.sjpm .ipof  { color: rgba(255,255,255,0.85); }

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

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

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

/* ── Privacy: accordion layout ───────────────────────────────────────────────*/
.eii6tvt {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 10px; overflow: hidden; margin-bottom: 10px;
}
.eii6tvt 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;
}
.eii6tvt summary::-webkit-details-marker { display: none; }
.eii6tvt summary::after { content: "+"; color: var(--accent); font-size: 1.2rem; flex-shrink: 0; }
.eii6tvt[open] summary::after { content: "−"; }
.ktmbt {
  padding: 4px 20px 16px; color: var(--text-muted); line-height: 1.75;
  border-top: 1px solid var(--border);
}

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

/* ── Privacy: numbered layout ────────────────────────────────────────────────*/
.h0oxpw7 { counter-reset: priv-count; }
.lrpkr {
  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);
}
.lrpkr:last-child { border-bottom: none; }
.abge4jxm {
  font-size: 2.4rem; font-weight: 800; color: var(--accent);
  opacity: 0.3; line-height: 1.1; font-variant-numeric: tabular-nums;
}
.lrpkr h2 {
  font-size: 1.1rem; font-weight: 700; color: var(--accent-light); margin-bottom: 10px;
}
.lrpkr p { color: var(--text-muted); line-height: 1.75; margin: 0; }

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

/* ── Byline slots — position control ── */
.mctvh{display:none}
.mctvh:empty,.cet5:empty{display:none}
.bk6bzy{position:relative;overflow:visible}

/* hero slot — shown for all hero positions */
.g08en .he1b,.bmvzdjcf .he1b,
.rv9xb87s .he1b,.x4gu1ug .he1b,
.c257c1 .he1b,.p3hs5 .he1b{display:block}
.j2pt2bf .lg1qvb{display:block}

/* shared overlay: centered container matching hero-content width (always 1100px) */
.g08en .he1b,.bmvzdjcf .he1b,
.rv9xb87s .he1b,.x4gu1ug .he1b,
.c257c1 .he1b{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 */
.g08en .he1b .cet5,.bmvzdjcf .he1b .cet5,
.rv9xb87s .he1b .cet5,.x4gu1ug .he1b .cet5,
.c257c1 .he1b .cet5{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 */
.g08en .io0l6ab,.bmvzdjcf .io0l6ab,
.rv9xb87s .io0l6ab,.x4gu1ug .io0l6ab,
.c257c1 .io0l6ab{background:transparent!important;border:none!important;padding:0;border-radius:0;color:inherit!important}
/* top positions */
.g08en .he1b,.bmvzdjcf .he1b{top:12px}
.g08en .he1b .cet5{margin-right:auto}
.bmvzdjcf .he1b .cet5{margin-left:auto}
.bmvzdjcf .he1b{text-align:right}
/* bottom positions */
.rv9xb87s .he1b,.x4gu1ug .he1b{bottom:12px}
.rv9xb87s .he1b .cet5{margin-right:auto}
.x4gu1ug .he1b .cet5{margin-left:auto}
.x4gu1ug .he1b{text-align:right}
/* center overlay at bottom of hero */
.c257c1 .he1b{bottom:16px}
.c257c1 .he1b .cet5{margin:0 auto}

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

/* split hero: overlay positions fall back to static below hero (too complex to overlay on split 50/50) */
.ynp2a~.he1b,.sus4z95h~.he1b{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}
.ynp2a~.he1b .cet5{justify-content:flex-start;margin-left:0;margin-right:auto;background:transparent;color:var(--text-body);backdrop-filter:none;-webkit-backdrop-filter:none}
.sus4z95h~.he1b .cet5{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 */
.lg1qvb .cet5{margin:0 0 12px}

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

/* byline author style: text — no avatar */
.lf88p .ubmoqi5s{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 */
.xnio .io0l6ab{background:var(--date-bg, var(--accent-bg));padding:3px 10px;border-radius:99px;font-size:.78rem}
.xnio .sv3thk::before{content:""}

/* cards: mini bordered cards */
.u918q3 .io0l6ab{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}
.u918q3 .sv3thk::before{content:""}

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

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

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

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

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

/* ── Date background variants ── */
.q6ccaa{--date-bg:var(--accent-bg)}
.pio0bf{--date-bg:var(--accent-bg-light)}
.obomb2{--date-bg:transparent}

/* ── Date separator variants ── */
.sx9e3l .sv3thk::before{content:""}
.nuvq2yw8 .sv3thk::before{content:"•";opacity:.4}
.nuvq2yw8 .io0l6ab + .io0l6ab::before{content:"•";margin-right:6px;opacity:.4}
.uvsxh .sv3thk::before{content:"/";opacity:.35}
.uvsxh .io0l6ab + .io0l6ab::before{content:"/";margin-right:6px;opacity:.35}
.holiqu .sv3thk::before{content:"|";opacity:.3}
.holiqu .io0l6ab + .io0l6ab::before{content:"|";margin-right:6px;opacity:.3}
.f77e .sv3thk::before{content:"—";opacity:.3}
.f77e .io0l6ab + .io0l6ab::before{content:"—";margin-right:6px;opacity:.3}
.l2jmcnzi .sv3thk::before{content:"◆";font-size:.5em;opacity:.35}
.l2jmcnzi .io0l6ab + .io0l6ab::before{content:"◆";font-size:.5em;margin-right:6px;opacity:.35}
.goqui .sv3thk::before{content:"·";opacity:.4}
.goqui .io0l6ab + .io0l6ab::before{content:"·";margin-right:6px;opacity:.4}
.i71h .sv3thk::before{content:"›";opacity:.4}
.i71h .io0l6ab + .io0l6ab::before{content:"›";margin-right:6px;opacity:.4}
.cveoays5 .sv3thk::before{content:"→";opacity:.35;font-size:.85em}
.cveoays5 .io0l6ab + .io0l6ab::before{content:"→";font-size:.85em;margin-right:6px;opacity:.35}


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

/* author box variants */
.olbmq .v7jp659n{background:var(--surface-alt);border-radius:var(--radius, 8px);border:1px solid var(--border)}
.e346fwm .v7jp659n{border-top:3px solid var(--accent);padding-top:18px}
.b9m5 .v7jp659n{border-left:3px solid var(--accent);border-radius:0}
.vjletj .v7jp659n{padding:20px 0}

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

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


/* ── color scheme ── */
:root {
  --accent:          #b293ba;
  --accent-light:    #e2c1ea;
  --accent-pale:     #f9d8ff;
  --grad-start:      #442c4c;
  --grad-end:        #85688c;
  --bg-page: #100d11;
  --bg-surface: #100d11;
  --bg-card: #161217;
  --bg-card-inner: #1d181e;
  --bg-raised: #231e24;
  --bg-hover: #2a242c;
  --border: #4d454e;
  --border-alt: #7c727c;
  --border-section: #4d454e;
  --text-primary: #eee2ed;
  --text-muted: #b3a8b2;
  --text-body: #ccc4ca;
  --text-sub: #a39ca1;
  --text-faint: #6f696e;
  --text-dim: #565156;
  --text-label: #888287;
  --text-value: #beb6bc;
  --accent-bg:       #3f2747;
  --accent-bg-light: #4b3253;
  --bg-tip:        #1a2e1a;
  --bg-warning:    #2d1f0e;
  --bg-info:       #1a1f2e;
  --bg-pros:       #1a2e1a;
  --bg-cons:       #2d1a1a;
  --c-pros:        #6ee7b7;
  --c-cons:        #fca5a5;
  --c-pros-label:  #34d399;
  --c-tip-border:  #34d399;
  --c-warn-border: #f59e0b;
  --c-stars:       #f59e0b;
  --c-arrow:       #f59e0b;
  --c-tag-pay:     #6ee7b7;
}
:root { --logo-bg-opacity: 59%; }

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

.en5x5q5 .du905 li::before, .en5x5q5 .hsz7oa9w 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; }.en5x5q5 .du905 li::before { content: ""; }.en5x5q5 .hsz7oa9w li::before { content: ""; }.en5x5q5 .q1wfyz::before, .en5x5q5 .ea1a3fm::before {  font-family: "Font Awesome 6 Free"; font-weight: 900;  font-size: 0.85em; margin-right: 5px; line-height: 1; }.en5x5q5 .q1wfyz::before { content: ""; }.en5x5q5 .ea1a3fm::before { content: ""; }

.jslty2 .hw6g3sod, .jslty2 .ynp2a { min-height: 320px; }

.cudqix65 .jl1pgq4k::after, .cudqix65 .dy5ad::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; }

.cf20 .pr7flpk::after,.cf20 .dovkkv::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; }

.qhoexz::before { content: '·'; font-size: 1.3em; line-height: 1; }