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

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

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

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

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

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

/* hero-flat: без фону, просто текст на page bg (WP-style) */
.jt99ash {
  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);
}
.jt99ash .p6614 {
  width: 100%; max-width: 1100px; padding: 24px 24px;
}
.jt99ash .lhm5lnu { color: var(--text-primary); text-shadow: none; }
.jt99ash .qc6m4rm { color: var(--text-muted); }
.jt99ash .vncy { margin-top: 16px; }
.jt99ash, .jt99ash.q0vzm { min-height: auto !important; }
.jt99ash.cml9iw4h .p6614 { text-align: center; }
.jt99ash.metdblfd   .p6614 { text-align: left; }
/* flat hero: byline як звичайний текст, не оверлей */
.jt99ash~.nfgpc{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}
.jt99ash~.nfgpc .gwsp299{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: градієнтний фон замість фото */
.dw2l3 {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}
/* hero_anim: shimmer — ледь помітний блиск по поверхні */
.foxl .dw2l3,
.foxl .udsm3d {
  position: relative; overflow: hidden;
}
.foxl .dw2l3::after,
.foxl .udsm3d::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 */
.ufmsbz .dw2l3,
.ufmsbz .udsm3d {
  animation: hg-breathe 10s ease-in-out infinite;
}
@keyframes hg-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
/* hero_anim: grain — ледь помітна зернистість поверх градієнту */
.paoup .dw2l3,
.paoup .udsm3d,
.paoup .drp0l .mtjn {
  overflow: hidden;
}
.paoup .dw2l3::after,
.paoup .udsm3d::after,
.paoup .drp0l .mtjn::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 */
.oakr9 .dw2l3,
.oakr9 .udsm3d {
  position: relative; overflow: hidden;
}
.oakr9 .dw2l3::after,
.oakr9 .udsm3d::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); }
}
.oakr9 .drp0l .mtjn {
  overflow: hidden;
}
.oakr9 .drp0l .mtjn::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 — градієнт з'являється при завантаженні */
.lfffn56 .dw2l3,
.lfffn56 .udsm3d,
.lfffn56 .drp0l .mtjn {
  animation: hg-fadein 1.2s ease-out both;
}
@keyframes hg-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* hero-bg з фото — overlay анімації */
.foxl .drp0l .mtjn {
  overflow: hidden;
}
.foxl .drp0l .mtjn::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;
}
.ufmsbz .drp0l .mtjn {
  animation: hg-breathe 10s ease-in-out infinite;
}

.dw2l3 .mtjn {
  background: none;
}
.dw2l3 .lhm5lnu { color: #fff; }
.dw2l3 .qc6m4rm { color: rgba(255,255,255,0.85); }
.dw2l3 .vncy { background: #fff; color: var(--accent); }
.dw2l3 .vncy:hover { opacity: 0.92; }

/* ── Hero anim: split layouts ─────────────────────────────────────────────── */
.foxl .qyt1vffl { position: relative; overflow: hidden; }
.foxl .qyt1vffl::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;
}
.ufmsbz .qyt1vffl {
  animation: hg-breathe 7s ease-in-out infinite;
}
.paoup .qyt1vffl { position: relative; overflow: hidden; }
.paoup .qyt1vffl::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;
}
.oakr9 .qyt1vffl { position: relative; overflow: hidden; }
.oakr9 .qyt1vffl::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;
}
.lfffn56 .qyt1vffl {
  animation: hg-fadein 1.2s ease-out both;
}


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

/* Split alignment — всередині text-колонки */
.qyt1vffl.cml9iw4h .li1y8 { align-items: center; text-align: center; }
.qyt1vffl.metdblfd   .li1y8 { align-items: flex-start; text-align: left; }

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


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

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

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

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

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

/* ── Hero: split-cards ────────────────────────────────────────────────────── */
.ifkx .upi7sc {
  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);
}
.bnsc34v {
  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;
}
.bnsc34v:last-child { border-bottom: none; }
.bnsc34v:hover { background: rgba(255,255,255,0.14); }
.tj452g { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.z9351f { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.gxcuw { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ubvuipp { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hps4dekq { font-size: 0.82rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gcakmu { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.of1fim { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); }
.of1fim small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }
.jtvljmi { font-size: 0.8rem; padding: 6px 14px; white-space: nowrap; }

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

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

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

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


@media (max-width: 700px) {
  .qyt1vffl { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .qyt1vffl .b37i { display: none !important; }
  .fobc3 .b37i { display: none !important; }
  .ifkx .upi7sc { display: none !important; }
  .rpk1g3 .w72znjnu { display: none !important; }
  .li1y8  { padding: 36px 24px; }
  .qyt1vffl~.nfgpc,.mt70zb~.nfgpc{max-width:100%;left:0;right:0;transform:none;padding:0 24px}
  /* cap hero height variants on mobile */
  .q0vzm, .qyt1vffl { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .lhm5lnu { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  /* cards-top: hide on mobile */
  .a9lbb4ly { display: none !important; }
  /* numbered: stack */
  .kw1m4 { flex-direction: column; align-items: center; }
  .m5sp589m { width: 100%; max-width: 340px; }
}

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

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

/* rounded */
.mgg9yg .e04k        { border-radius: 16px; }
.mgg9yg .r63lb80  { border-radius: 16px; }

/* shadow */
.ccdv .e04k         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.ccdv .r63lb80   { border-radius: 8px; }


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

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

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

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

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

.qj9lg .nywsmq:nth-child(even) .tp42 .yaygcy:nth-child(odd),
.awoqzne .nywsmq:nth-child(even) .tp42 .yaygcy:nth-child(odd)  { background: var(--bg-card); }
.qj9lg .nywsmq:nth-child(even) .tp42 .yaygcy:nth-child(even),
.awoqzne .nywsmq:nth-child(even) .tp42 .yaygcy:nth-child(even) { background: var(--bg-card-inner); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.l663egyw .pkv9,
.l663egyw .n9hk9,
.l663egyw .ycw11,
.l663egyw .bx6xh9 { font-style: normal; color: var(--text-body); }

.krvd5k6a .pkv9,
.krvd5k6a .n9hk9 {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.krvd5k6a .ycw11,
.krvd5k6a .bx6xh9 {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

.xn9r .pkv9,
.xn9r .n9hk9,
.xn9r .ycw11,
.xn9r .bx6xh9 {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}
────────────────────────────────────────────────────────────────────────────── */

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

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

.q8krw     .jn1l6 { list-style-type: "● "; }
.lki6  .jn1l6 { list-style-type: "■ "; }
.sc6gskdr .jn1l6 { list-style-type: "◆ "; }
.i1v8    .jn1l6 { list-style-type: "★ "; }

.q8krw     .zfyi597 { list-style-type: "● "; }
.lki6  .zfyi597 { list-style-type: "■ "; }
.sc6gskdr .zfyi597 { list-style-type: "◆ "; }
.i1v8    .zfyi597 { list-style-type: "★ "; }

.q8krw    .jn1l6 li::marker, .q8krw    .zfyi597 li::marker,
.lki6 .jn1l6 li::marker, .lki6 .zfyi597 li::marker,
.sc6gskdr .jn1l6 li::marker, .sc6gskdr .zfyi597 li::marker,
.i1v8   .jn1l6 li::marker, .i1v8   .zfyi597 li::marker {
  color: var(--accent); font-size: 0.8em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

/* pill = solid but very rounded */
.j718g .vncy { border-radius: 50px; }
.j718g .wycesl  { border-radius: 50px; }
/* btn_pad */
.plrdvp4 .vncy { padding-left: 22px; padding-right: 22px; }
.plrdvp4 .wycesl  { padding-left: 12px; padding-right: 12px; }
.li12y .vncy { padding-left: 44px; padding-right: 44px; }
.li12y .wycesl  { padding-left: 24px; padding-right: 24px; }
.q3d8 .vncy { padding-left: 56px; padding-right: 56px; }
.q3d8 .wycesl  { padding-left: 32px; padding-right: 32px; }

/* ── btn_icon: SVG-іконки на .vncy і .wycesl (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.ujrzr2   .vncy::after, .ujrzr2   .wycesl::after,
.ubo4m .vncy::after, .ubo4m .wycesl::after,
.yhji71    .vncy::after, .yhji71    .wycesl::after,
.xlwdv7    .vncy::after, .xlwdv7    .wycesl::after,
.h5iq    .vncy::after, .h5iq    .wycesl::after,
.fcf7cq     .vncy::after, .fcf7cq     .wycesl::after,
.qwovff    .vncy::after, .qwovff    .wycesl::after,
.zhyibz   .vncy::after, .zhyibz   .wycesl::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 — кожна іконка */
.ujrzr2 .vncy::after, .ujrzr2 .wycesl::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");
}
.ubo4m .vncy::after, .ubo4m .wycesl::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");
}
.yhji71 .vncy::after, .yhji71 .wycesl::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");
}
.xlwdv7 .vncy::after, .xlwdv7 .wycesl::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");
}
.h5iq .vncy::after, .h5iq .wycesl::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");
}
.fcf7cq .vncy::after, .fcf7cq .wycesl::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");
}
.qwovff .vncy::after, .qwovff .wycesl::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");
}
.zhyibz .vncy::after, .zhyibz .wycesl::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 ────────*/
.uakjy   .dc1lusp::after, .uakjy   .lkiqd3zm::after,
.bw2y7 .dc1lusp::after, .bw2y7 .lkiqd3zm::after,
.nlpc    .dc1lusp::after, .nlpc    .lkiqd3zm::after,
.pvyf    .dc1lusp::after, .pvyf    .lkiqd3zm::after,
.ek1r    .dc1lusp::after, .ek1r    .lkiqd3zm::after,
.lc2wcwq     .dc1lusp::after, .lc2wcwq     .lkiqd3zm::after,
.o3b010h    .dc1lusp::after, .o3b010h    .lkiqd3zm::after,
.rsxbfaq   .dc1lusp::after, .rsxbfaq   .lkiqd3zm::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;
}
.uakjy .dc1lusp::after, .uakjy .lkiqd3zm::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");
}
.bw2y7 .dc1lusp::after, .bw2y7 .lkiqd3zm::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");
}
.nlpc .dc1lusp::after, .nlpc .lkiqd3zm::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");
}
.pvyf .dc1lusp::after, .pvyf .lkiqd3zm::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");
}
.ek1r .dc1lusp::after, .ek1r .lkiqd3zm::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");
}
.lc2wcwq .dc1lusp::after, .lc2wcwq .lkiqd3zm::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");
}
.o3b010h .dc1lusp::after, .o3b010h .lkiqd3zm::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");
}
.rsxbfaq .dc1lusp::after, .rsxbfaq .lkiqd3zm::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 ─────────────────────────────────────────────────────────*/
.h2zkp08s { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


.dfimbv {
  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 */
.dfimbv > [itemprop="item"] { display: contents; }
.dfimbv:hover { background: var(--bg-hover); }
.syqpaim6 {
  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 */
.bnc2 .syqpaim6 { background: #1a1a1a; }
.amfk70y .syqpaim6 { background: rgba(128,128,128,.12); }
.lr0u6as1 .syqpaim6 { background: var(--bg-raised); }
.gwhk5 .syqpaim6 { background: transparent; padding: 0; }
.tf5nmpfc { max-height: 34px; max-width: 80px; object-fit: contain; }
.anfwv8 { font-weight: 700; font-size: .85rem; color: var(--accent-light); }
.gxl385 { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; }
.xdjy4y21 { font-weight: 700; font-size: .88rem; color: var(--text-primary); flex-shrink: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.uu1y6 { color: var(--accent); font-size: .8rem; letter-spacing: 1px; flex-shrink: 1; min-width: 0; }
.nba4pvbb { display: flex; flex-direction: column; align-items: center; font-size: .78rem; flex: 1 1 0; min-width: 0; }
.q91uvo { color: var(--text-label); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.t9usb7so { color: var(--text-value); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.uiy3vccf { margin-left: auto; flex-shrink: 0; white-space: nowrap; }
.uiy3vccf.wycesl { padding-left: 16px !important; padding-right: 16px !important; }
/* планшет / мобіль: 1 картка в ряд */
@media (max-width: 720px) {
  .h2zkp08s { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .h2zkp08s .dfimbv { flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px; }
  .h2zkp08s .gxl385 { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
  .h2zkp08s .syqpaim6 { width: 100%; min-width: unset; height: 52px; }
  .h2zkp08s .tf5nmpfc { max-height: 40px; max-width: 110px; }
  .h2zkp08s .xdjy4y21 { min-width: unset; text-align: center; white-space: normal; }
  .h2zkp08s .nba4pvbb { flex-direction: row; justify-content: space-between; width: 100%; border-top: 1px solid var(--border); padding-top: 5px; }
  .h2zkp08s .uiy3vccf { width: 100%; text-align: center; margin-left: 0; }
  .gaegkw .dfimbv { row-gap: 8px !important; gap: 8px !important; }
}

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.z1d7kz {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.ga21 {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.abi0h7a {
  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;
}
.abi0h7a img { max-width: 80px; max-height: 50px; object-fit: contain; }
.r0b7 { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.izuioc0 { flex: 1; }
.izuioc0 h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.l7xnoxtq { color: var(--c-stars); font-size: 1.1rem; }
.yfjnif4k { margin-bottom: 8px; }
.pyh0d { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.jcfsfg4::before   { content: "★ "; color: var(--accent); }
.uu0r4s98::before { content: "↓ "; color: var(--accent); }
.vk4g8i5d::before { content: "✦ "; color: var(--accent); }
.ixc2ht { flex-shrink: 0; }
.w1c83 img.v6y3t5v { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.j34b55dm { padding: 20px 24px; }
.hnh3 { color: var(--text-muted); margin-bottom: 16px; }
.kgmihq { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.mlr5, .ys9p4x { list-style: none; font-size: 0.9rem; }
.mlr5 li { color: var(--c-pros); margin-bottom: 4px; }
.ys9p4x li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.mlr5 li::before { content: "✓"; margin-right: 5px; }
.ys9p4x li::before { content: "✗"; margin-right: 5px; }
.kge60i1 .mlr5 li::before { content: "→"; }
.kge60i1 .ys9p4x li::before { content: "–"; }
.h2xwdu9a  .mlr5 li::before { content: "★"; }
.h2xwdu9a  .ys9p4x li::before { content: "✕"; }
.qp02m    .mlr5 li::before { content: "◆"; }
.qp02m    .ys9p4x li::before { content: "▲"; }
.ychl3  .mlr5 li::before { content: "▶"; }
.ychl3  .ys9p4x li::before { content: "■"; }
.zdxgmk { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.labihi56 { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.gbvijs { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

/* ── Brand card (single brand, two-column hero) ─────────────────────────────*/
/* ═══════════════════════════════════════════════════════════════════════════
   BRAND CARD — shared tokens
   ═══════════════════════════════════════════════════════════════════════════ */
.odt0l2dz {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.tp7dtbb {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.tp7dtbb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.ime4fk { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.sspmn { display: flex; align-items: center; gap: 8px; }
.sspmn .l7xnoxtq { font-size: .95rem; }
.sspmn strong { font-size: 1.1rem; color: var(--text); }
.dhu6o { border-radius: 8px; overflow: hidden; }
.dhu6o img { width: 100%; display: block; border-radius: 8px; }
.ve46com { text-align: center; flex-shrink: 0; }
.ixs9 { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.whqdt { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.ubsw3m6p { font-size: .88rem; font-weight: 600; color: var(--text); }
.ap4qc53l .ubsw3m6p { font-size: 1.02rem; font-weight: 700; color: var(--accent); }
.odt0l2dz .tl4x { gap: 10px; }
.odt0l2dz .pxqq, .odt0l2dz .ikhj { padding: 12px; }
.odt0l2dz .pxqq ul, .odt0l2dz .ikhj ul { margin: 4px 0 0; padding-left: 18px; }
.odt0l2dz .pxqq li, .odt0l2dz .ikhj li { font-size: .85rem; margin-bottom: 3px; }
.kg9w { font-size: .8rem; color: var(--text-muted); margin-top: 10px; }
.kg9w strong { color: var(--text-secondary); }
.kg9w .labihi56 { margin: 2px 4px 2px 0; }

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

/* ── LAYOUT 2: hero — full-width screenshot header ────────────────────────── */
.zf20oj8x {
  position: relative; max-height: 240px; overflow: hidden;
}
.zf20oj8x > img { width: 100%; display: block; object-fit: cover; min-height: 160px; }
.hx9t {
  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;
}
.hx9t .tp7dtbb { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.hx9t .ime4fk { color: #fff; font-size: 1.25rem; }
.hx9t .sspmn strong { color: #fff; }
.hx9t .sspmn .l7xnoxtq { filter: brightness(1.2); }
.hx9t .ve46com { margin-left: auto; white-space: nowrap; }
.fcxx { flex: 1; }
.uv0y9yx {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-alt);
}
.uv0y9yx .ve46com { margin-left: auto; }
.jtv0ary { display: flex; flex-direction: column; gap: 16px; padding: 20px 24px; }
.h5d0eh8 .ks6v1c {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.h5d0eh8 .ixs9 {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.h5d0eh8 .ap4qc53l { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .hx9t { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .jtv0ary { padding: 16px; }
  .h5d0eh8 .ixs9 { min-width: 50%; }
}

/* ── LAYOUT 3: magazine — editorial 3-column ──────────────────────────────── */
.uwyz0 {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.y8w1t { flex: 1; }
.y8w1t .ime4fk { font-size: 1.3rem; }
.i8fv {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.ljnb { padding: 16px; border-right: 1px solid var(--border-alt); }
.ljnb .dhu6o { height: 100%; }
.ljnb .dhu6o img { height: 100%; object-fit: cover; }
.gorw0u { padding: 0; border-right: 1px solid var(--border-alt); }
.gorw0u .ks6v1c { display: flex; flex-direction: column; }
.gorw0u .ixs9 { border-bottom: 1px solid var(--border-alt); }
.gorw0u .ap4qc53l { background: var(--accent-bg); }
.kvhh { padding: 16px; }
.kvhh .tl4x { grid-template-columns: 1fr; }
.jrg4s {
  padding: 12px 24px; border-top: 1px solid var(--border-alt);
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .i8fv { grid-template-columns: 1fr; }
  .ljnb { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .gorw0u { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .uwyz0 { flex-wrap: wrap; padding: 16px; }
}

/* ── LAYOUT 4: compact — header bar → screenshot → data ──────────────────── */
.lzqrl4c {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border-alt);
}
.l2z8 {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.l2z8 .tp7dtbb { width: 72px; height: 50px; }
.l2z8 .ime4fk { font-size: 1rem; white-space: nowrap; }
.f9g5mk { border-bottom: 1px solid var(--border-alt); max-height: 280px; overflow: hidden; }
.f9g5mk img { width: 100%; display: block; object-fit: cover; }
.ej4u6c9b {
  display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; overflow: hidden;
}
.wdi1q3j .ks6v1c { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.wdi1q3j .ixs9 { padding: 0; flex: 0 0 auto; gap: 6px; }
.wdi1q3j .ap4qc53l { display: none; }
.wdi1q3j .tl4x { gap: 8px; }
.wdi1q3j .pxqq, .wdi1q3j .ikhj { padding: 8px; }
@media (max-width: 480px) {
  .lzqrl4c { flex-direction: column; align-items: stretch; }
}

/* ── LAYOUT 8: mini — compact single-row bar for topic pages ─────────────── */
.prjyfa { padding: 0; }
.lbuy2 {
  display: flex; align-items: center; gap: 16px; padding: 12px 20px; flex-wrap: wrap;
}
.vejr8d6 {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.vejr8d6 .tp7dtbb { width: 48px; height: 48px; }
.vejr8d6 .ime4fk { font-size: 0.95rem; font-weight: 700; white-space: nowrap; }
.vejr8d6 .sspmn { font-size: 0.8rem; }
.vejr8d6 .sspmn strong { font-size: 0.85rem; }
.t2foc { flex: 1; min-width: 0; overflow: hidden; }
.prjyfa .ks6v1c {
  display: flex; flex-wrap: wrap; gap: 4px 14px;
}
.prjyfa .ixs9 { padding: 0; flex: 0 0 auto; gap: 4px; }
.prjyfa .whqdt { font-size: 0.7rem; }
.prjyfa .ubsw3m6p { font-size: 0.8rem; }
.prjyfa .ap4qc53l .ubsw3m6p { font-size: 0.85rem; font-weight: 700; }
.prjyfa .ve46com .wycesl { padding: 8px 20px; font-size: 0.85rem; }
@media (max-width: 640px) {
  .lbuy2 { flex-direction: column; align-items: stretch; gap: 10px; }
  .prjyfa .ve46com { text-align: center; }
}

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

/* ── LAYOUT 6: scorecard — big score centerpiece ──────────────────────────── */
.la84hu1 {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
  border-bottom: 1px solid var(--border-alt);
}
.caq5hgli {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; text-align: center;
}
.r5mbiktv {
  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;
}
.rgdbs { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.rgdbs .ld4a7 { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.r5mbiktv .l7xnoxtq { font-size: .75rem; margin-top: 2px; }
.sq1zg { padding: 12px; display: flex; align-items: center; flex: 1; }
.sq1zg .dhu6o { width: 100%; }
.wbq08y {
  padding: 0; border-bottom: 1px solid var(--border-alt);
}
.e2vze .ks6v1c {
  display: flex; flex-wrap: wrap;
}
.e2vze .ixs9 {
  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;
}
.e2vze .ixs9:last-child { border-right: none; }
.e2vze .whqdt { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.e2vze .ap4qc53l { background: var(--accent-bg); }
.tl6om { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 720px) {
  .la84hu1 { grid-template-columns: 1fr; }
  .r5mbiktv { width: 100px; height: 100px; margin: 16px auto; }
  .rgdbs { font-size: 1.4rem; }
  .sq1zg { justify-content: center; }
  .e2vze .ixs9 { min-width: 50%; }
}

/* ── LAYOUT 7: stack — vertical full-width flow ──────────────────────────── */
.v2biosi9 {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.f0rrwe { max-height: 240px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.f0rrwe img { width: 100%; display: block; object-fit: cover; }
.hf2bb { padding: 16px 24px; border-bottom: 1px solid var(--border-alt); }
.xbz8uq .ks6v1c {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.xbz8uq .ixs9 {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.xbz8uq .ap4qc53l {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.xbz8uq .tl4x { margin: 0 24px; padding-top: 16px; }
.xbz8uq .kg9w { padding: 0 24px; }
.gcyxkw6 { padding: 16px 24px; border-top: 1px solid var(--border-alt); text-align: center; }
.gcyxkw6 .ve46com { display: inline-block; }
@media (max-width: 540px) {
  .v2biosi9 { flex-wrap: wrap; padding: 14px 16px; }
  .hf2bb { padding: 12px 16px; }
  .xbz8uq .tl4x { margin: 0 16px; }
  .xbz8uq .kg9w { padding: 0 16px; }
  .gcyxkw6 { padding: 12px 16px; }
}


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

/* grid: showcase в 2-col grid, review компактніший */
.zqibgcbm .h2zkp08s {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px;
}
.zqibgcbm .h2zkp08s .dfimbv:only-child {
  grid-column: 1 / -1; flex-direction: row; align-items: center; padding: 18px 24px; gap: 16px;
}
.zqibgcbm .h2zkp08s .dfimbv:only-child .gxl385 { flex-direction: row; width: auto; }
.zqibgcbm .h2zkp08s .dfimbv:only-child .syqpaim6 { width: 72px; height: 52px; min-width: 72px; }
.zqibgcbm .h2zkp08s .dfimbv:only-child .xdjy4y21 { text-align: left; }
.zqibgcbm .h2zkp08s .dfimbv:only-child .nba4pvbb { flex-direction: row; width: auto; border-top: none; padding-top: 0; }
.zqibgcbm .h2zkp08s .dfimbv:only-child .uiy3vccf { width: auto; }
.zqibgcbm .h2zkp08s .dfimbv {
  flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px;
}
.zqibgcbm .h2zkp08s .gxl385 { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
.zqibgcbm .h2zkp08s .syqpaim6 { width: 100%; min-width: unset; height: 52px; }
.zqibgcbm .h2zkp08s .xdjy4y21 { min-width: unset; text-align: center; white-space: normal; }
.zqibgcbm .h2zkp08s .nba4pvbb {
  flex-direction: row; justify-content: space-between;
  width: 100%; border-top: 1px solid var(--border); padding-top: 5px;
}
.zqibgcbm .h2zkp08s .uiy3vccf { width: 100%; text-align: center; margin-left: 0; }
.zqibgcbm .ga21 { gap: 14px; }

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.uta1 .q91uvo {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.uta1 .t9usb7so {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.uta1 .uu1y6 { color: var(--accent); }
.uta1 .ga21 { background: var(--accent-bg); }
.uta1 .jcfsfg4, .uta1 .uu0r4s98, .uta1 .vk4g8i5d {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

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

/* compact: менші відступи всюди */
.nkl594m3 .dfimbv { padding: 8px 14px; gap: 12px; }
.nkl594m3 .syqpaim6 { height: 32px; min-width: 52px; }
.nkl594m3 .tf5nmpfc { max-height: 24px; }
.nkl594m3 .xdjy4y21 { font-size: 0.82rem; }
.nkl594m3 .ga21 { padding: 14px 18px; gap: 14px; }
.nkl594m3 .j34b55dm { padding: 14px 18px; }
.nkl594m3 .abi0h7a { width: 70px; }
.nkl594m3 .izuioc0 h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.gaegkw .h2zkp08s {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.gaegkw .dfimbv {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); row-gap: 0; column-gap: 12px;
}
.gaegkw .dfimbv:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.gaegkw .uu1y6,
.gaegkw .phqh4c,
.gaegkw .tyes2c { border-left: 1px solid var(--border); padding-left: 10px; }
.gaegkw .xdjy4y21 { padding: 0 10px; }

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

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

/* ── casino-wide: високі горизонтальні картки з великим лого ───────────────*/
.jycsvrum .h2zkp08s { gap: 12px; }
.jycsvrum .dfimbv {
  padding: 18px 24px; gap: 20px; border-radius: 12px;
  min-height: 80px;
}
.jycsvrum .syqpaim6 {
  min-width: 90px; height: 64px; padding: 6px 12px; border-radius: 10px;
}
.jycsvrum .tf5nmpfc { max-height: 52px; max-width: 120px; }
.jycsvrum .xdjy4y21 { font-size: 1rem; }
.jycsvrum .nba4pvbb { font-size: .85rem; }
.jycsvrum .t9usb7so { font-size: .9rem; }
.jycsvrum .uiy3vccf.wycesl { padding: 10px 24px !important; font-size: .9rem; }

/* ── casino-jumbo: дуже великі картки, лого + інтерфейс скриншот ──────────*/
.m6rbu7 .h2zkp08s { gap: 16px; }
.m6rbu7 .dfimbv {
  padding: 24px 28px; gap: 24px; border-radius: 14px;
  min-height: 100px; border-width: 2px;
}
.m6rbu7 .syqpaim6 {
  min-width: 110px; height: 80px; padding: 8px 14px; border-radius: 12px;
  background: var(--bg-raised);
}
.m6rbu7 .tf5nmpfc { max-height: 64px; max-width: 140px; }
.m6rbu7 .xdjy4y21 { font-size: 1.1rem; font-weight: 800; }
.m6rbu7 .uu1y6 { font-size: .95rem; letter-spacing: 2px; }
.m6rbu7 .nba4pvbb { font-size: .9rem; }
.m6rbu7 .t9usb7so { font-size: .95rem; font-weight: 700; }
.m6rbu7 .q91uvo { font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; }
.m6rbu7 .uiy3vccf.wycesl { padding: 12px 32px !important; font-size: .95rem; font-weight: 700; }

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

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.ppqq .phqh4c { flex: 1.8; }
.ppqq .phqh4c .t9usb7so {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}
.ppqq .phqh4c .q91uvo { font-weight: 700; color: var(--text-primary); }
.ppqq .o65fg,
.ppqq .faopo4b8,
.ppqq .ngeg { flex: 0.75; opacity: 0.65; }

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

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

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

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

/* score в оглядах — ховаємо зірки */
.zdcjy .yfjnif4k .l7xnoxtq,
.hpos5w .yfjnif4k .l7xnoxtq,
.zza5o75 .yfjnif4k .l7xnoxtq { display: none; }

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

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

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

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.nywsmq { margin-bottom: 0; }
.iabga11 h2.aeh9 { color: var(--accent-light); border-color: var(--accent); }
.sutor h2.aeh9 { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.g9aobmv .g0r5dk     { background: #052e16; border-color: #10b981; }
.g9aobmv .qsp1hxk { background: #2d0a1e; border-color: #f43f5e; }
.g9aobmv .rgjuf    { background: #1e1036; border-color: #a855f7; }
.g9aobmv .ruou strong  { color: #f1f5f9; }
.g9aobmv .ruou p       { color: #cbd5e1; }
.g9aobmv .cvlku    .g0r5dk     .y2f2ky3::before,
.g9aobmv .m8sais  .g0r5dk     .y2f2ky3::before,
.g9aobmv .bfutg738  .g0r5dk     .y2f2ky3::before,
.g9aobmv .w6347o .g0r5dk     .y2f2ky3::before { color: #10b981; }
.g9aobmv .cvlku    .qsp1hxk .y2f2ky3::before,
.g9aobmv .m8sais  .qsp1hxk .y2f2ky3::before,
.g9aobmv .bfutg738  .qsp1hxk .y2f2ky3::before,
.g9aobmv .w6347o .qsp1hxk .y2f2ky3::before { color: #f43f5e; }
.g9aobmv .cvlku    .rgjuf    .y2f2ky3::before,
.g9aobmv .m8sais  .rgjuf    .y2f2ky3::before,
.g9aobmv .bfutg738  .rgjuf    .y2f2ky3::before,
.g9aobmv .w6347o .rgjuf    .y2f2ky3::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.bwas .g0r5dk     { background: #2d2000; border-color: #eab308; }
.bwas .qsp1hxk { background: #2d0b0b; border-color: #ef4444; }
.bwas .rgjuf    { background: #2d1600; border-color: #f97316; }
.bwas .ruou strong  { color: #f1f5f9; }
.bwas .ruou p       { color: #cbd5e1; }
.bwas .cvlku    .g0r5dk     .y2f2ky3::before,
.bwas .m8sais  .g0r5dk     .y2f2ky3::before,
.bwas .bfutg738  .g0r5dk     .y2f2ky3::before,
.bwas .w6347o .g0r5dk     .y2f2ky3::before { color: #eab308; }
.bwas .cvlku    .qsp1hxk .y2f2ky3::before,
.bwas .m8sais  .qsp1hxk .y2f2ky3::before,
.bwas .bfutg738  .qsp1hxk .y2f2ky3::before,
.bwas .w6347o .qsp1hxk .y2f2ky3::before { color: #ef4444; }
.bwas .cvlku    .rgjuf    .y2f2ky3::before,
.bwas .m8sais  .rgjuf    .y2f2ky3::before,
.bwas .bfutg738  .rgjuf    .y2f2ky3::before,
.bwas .w6347o .rgjuf    .y2f2ky3::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.iadqmoik .g0r5dk     { background: #0c1a2e; border-color: #38bdf8; }
.iadqmoik .qsp1hxk { background: #12103a; border-color: #818cf8; }
.iadqmoik .rgjuf    { background: #0a2020; border-color: #2dd4bf; }
.iadqmoik .ruou strong  { color: #f1f5f9; }
.iadqmoik .ruou p       { color: #cbd5e1; }
.iadqmoik .cvlku    .g0r5dk     .y2f2ky3::before,
.iadqmoik .m8sais  .g0r5dk     .y2f2ky3::before,
.iadqmoik .bfutg738  .g0r5dk     .y2f2ky3::before,
.iadqmoik .w6347o .g0r5dk     .y2f2ky3::before { color: #38bdf8; }
.iadqmoik .cvlku    .qsp1hxk .y2f2ky3::before,
.iadqmoik .m8sais  .qsp1hxk .y2f2ky3::before,
.iadqmoik .bfutg738  .qsp1hxk .y2f2ky3::before,
.iadqmoik .w6347o .qsp1hxk .y2f2ky3::before { color: #818cf8; }
.iadqmoik .cvlku    .rgjuf    .y2f2ky3::before,
.iadqmoik .m8sais  .rgjuf    .y2f2ky3::before,
.iadqmoik .bfutg738  .rgjuf    .y2f2ky3::before,
.iadqmoik .w6347o .rgjuf    .y2f2ky3::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.t3nj .g0r5dk     { background: var(--accent-bg); border-color: var(--accent); }
.t3nj .qsp1hxk { background: var(--accent-bg-light); border-color: var(--accent-light); }
.t3nj .rgjuf    { background: var(--accent-bg); border-color: var(--accent-pale); }
.t3nj .cvlku    .y2f2ky3::before,
.t3nj .m8sais  .y2f2ky3::before,
.t3nj .bfutg738  .y2f2ky3::before,
.t3nj .w6347o .y2f2ky3::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.vc6a6qc .pxqq ul li,
.vc6a6qc .mlr5 li         { color: #4ade80; }
.vc6a6qc .pxqq .lw43 { color: #22c55e; }
.vc6a6qc .ikhj ul li,
.vc6a6qc .ys9p4x li         { color: #f87171; }
.vc6a6qc .ikhj .pzpfbg { color: #ef4444; }

/* blue: синій pros / amber cons */
.wx36dv .pxqq { background: #0c1a2e; }
.wx36dv .ikhj { background: #2d1f00; }
.wx36dv .pxqq .lw43 { color: #93c5fd; }
.wx36dv .ikhj .pzpfbg { color: #fcd34d; }
.wx36dv .pxqq ul li,
.wx36dv .mlr5 li            { color: #bfdbfe; }
.wx36dv .ikhj ul li,
.wx36dv .ys9p4x li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.vlqwb71m .pxqq { background: var(--accent-bg); }
.vlqwb71m .ikhj { background: var(--accent-bg-light); }
.vlqwb71m .pxqq .lw43 { color: var(--accent-pale); }
.vlqwb71m .ikhj .pzpfbg { color: var(--accent-light); }
.vlqwb71m .pxqq ul li,
.vlqwb71m .mlr5 li          { color: var(--text-body); }
.vlqwb71m .ikhj ul li,
.vlqwb71m .ys9p4x li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.le4s .lw43::before { content: "✓ "; }
.le4s .pzpfbg::before { content: "✗ "; }

/* arrows: → / ← */
.kge60i1 .lw43::before { content: "→ "; }
.kge60i1 .pzpfbg::before { content: "← "; }

/* marks: ★ / ✕ */
.h2xwdu9a .lw43::before { content: "★ "; }
.h2xwdu9a .pzpfbg::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.qp02m .lw43::before { content: "◆ "; }
.qp02m .pzpfbg::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.oxxwl .ruou { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.oxxwl .g0r5dk     { border-top-color: var(--c-tip-border); }
.oxxwl .qsp1hxk { border-top-color: var(--c-warn-border); }
.oxxwl .rgjuf    { border-top-color: #60a5fa; }

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

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

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

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

.cvlku .y2f2ky3,
.m8sais .y2f2ky3,
.bfutg738 .y2f2ky3,
.w6347o .y2f2ky3 { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.cvlku .y2f2ky3::before,
.m8sais .y2f2ky3::before,
.bfutg738 .y2f2ky3::before,
.w6347o .y2f2ky3::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.cvlku .g0r5dk     .y2f2ky3::before { content: "✦"; color: var(--c-tip-border); }
.cvlku .qsp1hxk .y2f2ky3::before { content: "▲"; color: var(--c-warn-border); }
.cvlku .rgjuf    .y2f2ky3::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.m8sais .g0r5dk     .y2f2ky3::before { content: "★"; color: var(--c-tip-border); }
.m8sais .qsp1hxk .y2f2ky3::before { content: "◆"; color: var(--c-warn-border); }
.m8sais .rgjuf    .y2f2ky3::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.bfutg738 .g0r5dk     .y2f2ky3::before { content: "▶"; color: var(--c-tip-border); }
.bfutg738 .qsp1hxk .y2f2ky3::before { content: "■"; color: var(--c-warn-border); }
.bfutg738 .rgjuf    .y2f2ky3::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.w6347o .g0r5dk     .y2f2ky3::before { content: "→"; color: var(--c-tip-border); }
.w6347o .qsp1hxk .y2f2ky3::before { content: "⬥"; color: var(--c-warn-border); }
.w6347o .rgjuf    .y2f2ky3::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.wnw1ghm5 .k2lgjy2o .yaygcy,
.wnw1ghm5 .tp42 .yaygcy  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.wnw1ghm5 .pv146qq                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.wnw1ghm5 .dfimbv                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.wnw1ghm5 .z1d7kz            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.wnw1ghm5 .y5wrt          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.wnw1ghm5 .toumvj                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.lv4j .k2lgjy2o .yaygcy,
.lv4j .tp42 .yaygcy,
.lv4j .pv146qq,
.lv4j .dfimbv,
.lv4j .z1d7kz,
.lv4j .y5wrt,
.lv4j .toumvj,
.lv4j .jwje2vv2 .ruou { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.g3s1xqqr   body, .g3s1xqqr   { font-size: 0.9rem; }
.g3s1xqqr   .g7lh88im, .g3s1xqqr .ycw11, .g3s1xqqr .bx6xh9,
.g3s1xqqr   .pkv9, .g3s1xqqr .n9hk9 { font-size: 0.9rem; }
.g3s1xqqr   .jn1l6, .g3s1xqqr .jvj40 { font-size: 0.9rem; }

.sz6lc   .g7lh88im, .sz6lc .ycw11, .sz6lc .bx6xh9,
.sz6lc   .pkv9, .sz6lc .n9hk9 { font-size: 0.9rem; }
.sz6lc   .jn1l6, .sz6lc .jvj40 { font-size: 0.9rem; }

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

.wuxd7sd   .g7lh88im, .wuxd7sd .ycw11, .wuxd7sd .bx6xh9,
.wuxd7sd   .pkv9, .wuxd7sd .n9hk9 { font-size: 1.08rem; }
.wuxd7sd   .jn1l6, .wuxd7sd .jvj40 { font-size: 1.05rem; }
.wuxd7sd   .fdi4tf { font-size: 0.97rem; }

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

/* large */
.qamms .lhm5lnu      { font-size: 3.2rem; }
.qamms h2.aeh9 { font-size: 1.9rem; }
.qamms h3.dzpe5     { font-size: 1.4rem; }

/* display */
.nvbuqt1f .lhm5lnu      { font-size: 3.8rem; }
.nvbuqt1f h2.aeh9 { font-size: 2.2rem; }
.nvbuqt1f h3.dzpe5     { font-size: 1.6rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.r0xgn21u   .nywsmq + .nywsmq::before,
.e2jz  .nywsmq + .nywsmq::before,
.d4qv   .nywsmq + .nywsmq::before,
.pynrym   .nywsmq + .nywsmq::before,
.a3u5l7   .nywsmq + .nywsmq::before,
.pwznck .nywsmq + .nywsmq::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}

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

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

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

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

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

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

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

/* section_bg=stripe: парні секції мають bg-card */
.awoqzne .y9ygztj .nywsmq:nth-child(even)::before,
.awoqzne .hjixw0 .nywsmq:nth-child(even)::before,
.awoqzne .ujxmmuv .nywsmq:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.y9ygztj .nywsmq + .nywsmq::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 гребені */
.hjixw0 .nywsmq + .nywsmq::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: глибока дуга */
.ujxmmuv .nywsmq + .nywsmq::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 у формі хвилі */
.ilyrdel .drp0l,
.tahh .drp0l,
.dn3n .drp0l { overflow: hidden; }

/* wave: додатковий простір щоб хвиля не закривала CTA */
.ilyrdel .p6614,
.tahh .p6614 { margin-bottom: 60px; }
.dn3n .p6614 { margin-bottom: 70px; }
.ilyrdel .li1y8,
.tahh .li1y8 { padding-bottom: 60px; }
.dn3n .li1y8 { padding-bottom: 70px; }

.ilyrdel .drp0l::before,
.tahh .drp0l::before,
.dn3n .drp0l::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 гребінь) */
.ilyrdel .drp0l::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 гребені */
.tahh .drp0l::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: глибока дуга */
.dn3n .drp0l::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 */
.kq28jj .drp0l:not(.dw2l3) .mtjn { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }
.k9si88 .drp0l:not(.dw2l3) .mtjn { background: linear-gradient(45deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 100%); }
.wb7l1l  .drp0l:not(.dw2l3) .mtjn { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }
.g8bbkej  .drp0l:not(.dw2l3) .mtjn { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }

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

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

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

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

/* hg-solid: суцільний колір без градієнту */
.tp7r .dw2l3 { background: var(--accent); }
.tp7r .dw2l3 .mtjn { background: none; }
.tp7r .udsm3d { background: var(--accent); }
.tp7r .qyt1vffl { background: var(--accent-bg); }
.tp7r .drp0l:not(.dw2l3) .mtjn { background: rgba(0,0,0,0.6); }


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

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

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

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

/* Великі блочні елементи — clear float щоб не стискались */
.pb0cj .lbkq7,
.pb0cj .h2zkp08s,
.z1i4jhy2 .lbkq7,
.z1i4jhy2 .h2zkp08s,
.bb6co .lbkq7,
.bb6co .h2zkp08s { clear: both; }

/* Маркери списків не мають налазити на float-картинку */
.pb0cj .jn1l6,
.pb0cj .jvj40,
.z1i4jhy2 .jn1l6,
.z1i4jhy2 .jvj40,
.bb6co .jn1l6,
.bb6co .jvj40 { overflow: hidden; }


@media (max-width: 640px) {
  .pb0cj .e04k,
  .z1i4jhy2 .e04k,
  .bb6co .e04k { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1100px (задано в .y1w6gt, .ekk4b, .b2vjltnh) */
.tm9j .y1w6gt,
.tm9j .ekk4b,
.tm9j .b2vjltnh  { max-width: 1100px; }
.tm9j { --content-mw: 1100px; }
.s5ed4la .y1w6gt,
.s5ed4la .ekk4b,
.s5ed4la .b2vjltnh  { max-width: 1200px; }
.s5ed4la { --content-mw: 1200px; }
.aqvchc5 .y1w6gt,
.aqvchc5 .ekk4b,
.aqvchc5 .b2vjltnh  { max-width: 1320px; }
.aqvchc5 { --content-mw: 1320px; }

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

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

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

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

/* content-width: above — обидва класи на <body>, тому без пробілу */
.tm9j.ex8h0 .y5u2ba2 { max-width: 1100px; }
.s5ed4la.ex8h0 .y5u2ba2 { max-width: 1200px; }
.aqvchc5.ex8h0 .y5u2ba2 { max-width: 1320px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.tm9j .j14zdm8s { max-width: 1100px; }
.s5ed4la .j14zdm8s { max-width: 1200px; }
.aqvchc5 .j14zdm8s { max-width: 1320px; }

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

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.hm1x { font-weight: 300; }
.hm1x h2.aeh9 { font-weight: 600; }
.hm1x h3.dzpe5     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.hbxpj7 { font-weight: 500; }
.hbxpj7 h2.aeh9 { font-weight: 800; }
.hbxpj7 h3.dzpe5     { font-weight: 700; }
/* fw-600: semibold */
.h41k0c { font-weight: 600; }
.h41k0c h2.aeh9 { font-weight: 900; }
.h41k0c h3.dzpe5     { font-weight: 800; }
.h41k0c .ruou strong,
.h41k0c .ruou strong { font-weight: 600; }
/* .h41k0c .ycw11, .h41k0c .pkv9 { font-weight: 600; } */

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

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

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

/* minimal */
.f8aufb .b2vjltnh { text-align: center; }
.f8aufb .fx0co { justify-content: center; margin-bottom: 16px; }
.f8aufb .mh70q { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .b2vjltnh { padding-left: 16px; padding-right: 16px; }
  .snkn7 .b2vjltnh { padding: 20px 16px; }
  .fx0co { gap: 4px 12px; }
  .mh70q { font-size: 0.78rem; }
}


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


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

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

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

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

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

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

/* dark: завжди темний, незалежно від теми */
.u993 .rn8addc      { background: #0d1117; border-bottom-color: #21262d; }
.u993 .q8552jp { color: var(--accent-light); }
.u993 .btxs90f { --msep-color: #8b949e; }
.u993 .btxs90f a { color: #8b949e; }
.u993 .btxs90f a:hover { color: var(--accent-light); }
.u993 .cjupmc1w { color: #8b949e; }
.u993 .v5dv53 { background: #0d1117; border-top-color: #21262d; }
.u993 .mh70q,
.u993 .ggua { color: #6e7681; }
.u993 .oplh a, .u993 .fx0co a,
.u993 .y898 a, .u993 .eigruw4 a,
.u993 .ek98 a, .u993 .uj8nlk { color: #8b949e; }
.u993 .oplh a:hover, .u993 .fx0co a:hover,
.u993 .y898 a:hover, .u993 .eigruw4 a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .u993 .btxs90f { background: #0d1117; border-top-color: #21262d; }
  .u993 .btxs90f li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.x8b8 .rn8addc      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.x8b8 .q8552jp { color: var(--accent); }
.x8b8 .btxs90f { --msep-color: #475569; }
.x8b8 .btxs90f a { color: #475569; }
.x8b8 .btxs90f a:hover { color: var(--accent); }
.x8b8 .cjupmc1w { color: #64748b; }
.x8b8 .v5dv53 { background: #f0f4f8; border-top-color: #cbd5e1; }
.x8b8 .mh70q,
.x8b8 .ggua { color: #64748b; }
.x8b8 .oplh a, .x8b8 .fx0co a,
.x8b8 .y898 a, .x8b8 .eigruw4 a,
.x8b8 .ek98 a, .x8b8 .uj8nlk { color: #374151; }
.x8b8 .oplh a:hover, .x8b8 .fx0co a:hover,
.x8b8 .y898 a:hover, .x8b8 .eigruw4 a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .x8b8 .btxs90f { background: #f0f4f8; border-top-color: #cbd5e1; }
  .x8b8 .btxs90f li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.c7ppdl3s .rn8addc      { background: var(--accent); border-bottom-color: var(--accent-light); }
.c7ppdl3s .q8552jp { color: #fff; }
.c7ppdl3s .btxs90f { --msep-color: rgba(255,255,255,0.82); }
.c7ppdl3s .btxs90f a { color: rgba(255,255,255,0.82); }
.c7ppdl3s .btxs90f a:hover { color: #fff; }
.c7ppdl3s .cjupmc1w { color: rgba(255,255,255,0.9); }
.c7ppdl3s .wc4g a { color: var(--text-primary) !important; }
.c7ppdl3s .wc4g a:hover { color: var(--accent) !important; }
.c7ppdl3s .v5dv53 { background: var(--accent); border-top-color: var(--accent-light); }
.c7ppdl3s .mh70q,
.c7ppdl3s .ggua { color: rgba(255,255,255,0.72); }
.c7ppdl3s .oplh a, .c7ppdl3s .fx0co a,
.c7ppdl3s .y898 a, .c7ppdl3s .eigruw4 a,
.c7ppdl3s .ek98 a, .c7ppdl3s .uj8nlk { color: rgba(255,255,255,0.82); }
.c7ppdl3s .oplh a:hover, .c7ppdl3s .fx0co a:hover,
.c7ppdl3s .y898 a:hover, .c7ppdl3s .eigruw4 a:hover { color: #fff; }
@media (max-width: 640px) {
  .c7ppdl3s .btxs90f { background: var(--accent); border-top-color: var(--accent-light); }
  .c7ppdl3s .btxs90f li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.bcwz .rn8addc {
  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);
}
.bcwz .v5dv53 {
  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) {
  .bcwz .btxs90f {
    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 */
.x9iwza5 .uasth2 { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.omvk .uasth2 { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.fgme .uasth2 { min-height: 72px; height: auto; }
.b6zzp5 .uasth2 { min-height: 84px; height: auto; }

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

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


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

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.b4l0jzcd, .ix2nroo {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.y8e1xs2 .b4l0jzcd,
.y8e1xs2 .ix2nroo { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.nbo4t .b4l0jzcd,
.nbo4t .ix2nroo { 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; }
.r9gtus .b4l0jzcd,
.r9gtus .ix2nroo { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.ho9bf .b4l0jzcd,
.ho9bf .ix2nroo { 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 */
.gtn3my   .btxs90f a { font-weight: 500; }
.bel5v7xc .btxs90f a { font-weight: 600; }
.d45k     .btxs90f a { font-weight: 700; }
.ww7plw8h    .btxs90f a { font-weight: 800; letter-spacing: 0.01em; }

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

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .szap .cjupmc1w,
  .vmb7 .cjupmc1w,
  .b7w27u .cjupmc1w,
  .icpf2 .cjupmc1w,
  .zyir .cjupmc1w {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .szap .cjupmc1w::before,
  .vmb7 .cjupmc1w::before,
  .b7w27u .cjupmc1w::before,
  .icpf2 .cjupmc1w::before,
  .zyir .cjupmc1w::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .szap .cjupmc1w::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 лінії рівні */
  .vmb7 .cjupmc1w::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% */
  .b7w27u .cjupmc1w::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% */
  .icpf2 .cjupmc1w::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% */
  .zyir .cjupmc1w::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) {
  .jvy176a .cjupmc1w {
    padding: 5px 14px;
  }
  .jvy176a .btxs90f {
    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;
  }
  .jvy176a .btxs90f li a {
    border-bottom: none; padding: 10px 22px;
  }
  .jvy176a .btxs90f li a:hover { background: var(--bg-raised); }
}

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

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

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .eup08v7r .cjupmc1w {
    padding: 5px 10px;
  }
  .eup08v7r .btxs90f {
    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;
  }
  .eup08v7r .btxs90f.o774i { opacity: 1; pointer-events: auto; }
  .eup08v7r .btxs90f 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) {
  .kb07     .cjupmc1w { border-radius: 0 !important; }
  .hyzsx   .cjupmc1w { border-radius: 8px !important; }
  .k4mh2g .cjupmc1w { border-radius: 50% !important; }
  .d2tl1   .cjupmc1w { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .uu1y6 / .l7xnoxtq) */
.a9yx    .uu1y6, .a9yx    .l7xnoxtq { color: #f59e0b; }
.e2a0zb      .uu1y6 { font-size: 1rem; letter-spacing: 1.5px; }
.e2a0zb      .l7xnoxtq   { font-size: 1.35rem; }
.kzfn5o6z    .uu1y6, .kzfn5o6z    .l7xnoxtq { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.ag3dgb     .uu1y6, .ag3dgb     .l7xnoxtq { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.zf9tli6h .uu1y6, .zf9tli6h .l7xnoxtq { color: var(--accent); letter-spacing: 2px; }
.hbqisn0   .uu1y6, .hbqisn0   .l7xnoxtq { color: #e91e63; letter-spacing: 2px; }
.edisgs  .uu1y6, .edisgs  .l7xnoxtq { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.ly6gpi4n     .uu1y6, .ly6gpi4n     .l7xnoxtq { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ── Byline slots — position control ── */
.kv5k{display:none}
.kv5k:empty,.gwsp299:empty{display:none}
.b0f7y{position:relative;overflow:visible}

/* hero slot — shown for all hero positions */
.v8wat .nfgpc,.y2m0 .nfgpc,
.gfkpnz9 .nfgpc,.y59a .nfgpc,
.doux5yh .nfgpc,.mmem9u .nfgpc{display:block}
.i04oy .wwjycs3{display:block}

/* shared overlay: centered container matching hero-content width (always 1100px) */
.v8wat .nfgpc,.y2m0 .nfgpc,
.gfkpnz9 .nfgpc,.y59a .nfgpc,
.doux5yh .nfgpc{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 */
.v8wat .nfgpc .gwsp299,.y2m0 .nfgpc .gwsp299,
.gfkpnz9 .nfgpc .gwsp299,.y59a .nfgpc .gwsp299,
.doux5yh .nfgpc .gwsp299{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 */
.v8wat .b6epoyge,.y2m0 .b6epoyge,
.gfkpnz9 .b6epoyge,.y59a .b6epoyge,
.doux5yh .b6epoyge{background:transparent!important;border:none!important;padding:0;border-radius:0;color:inherit!important}
/* top positions */
.v8wat .nfgpc,.y2m0 .nfgpc{top:12px}
.v8wat .nfgpc .gwsp299{margin-right:auto}
.y2m0 .nfgpc .gwsp299{margin-left:auto}
.y2m0 .nfgpc{text-align:right}
/* bottom positions */
.gfkpnz9 .nfgpc,.y59a .nfgpc{bottom:12px}
.gfkpnz9 .nfgpc .gwsp299{margin-right:auto}
.y59a .nfgpc .gwsp299{margin-left:auto}
.y59a .nfgpc{text-align:right}
/* center overlay at bottom of hero */
.doux5yh .nfgpc{bottom:16px}
.doux5yh .nfgpc .gwsp299{margin:0 auto}

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

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

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

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

/* cards: mini bordered cards */
.re7u .b6epoyge{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}
.re7u .mma5q41::before{content:""}

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

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

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

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

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

/* ── Date background variants ── */
.coyt{--date-bg:var(--accent-bg)}
.cqi5{--date-bg:var(--accent-bg-light)}
.ahen9{--date-bg:transparent}

/* ── Date separator variants ── */
.dt7lp .mma5q41::before{content:""}
.s5aw .mma5q41::before{content:"•";opacity:.4}
.s5aw .b6epoyge + .b6epoyge::before{content:"•";margin-right:6px;opacity:.4}
.x8o5s .mma5q41::before{content:"/";opacity:.35}
.x8o5s .b6epoyge + .b6epoyge::before{content:"/";margin-right:6px;opacity:.35}
.q03be3 .mma5q41::before{content:"|";opacity:.3}
.q03be3 .b6epoyge + .b6epoyge::before{content:"|";margin-right:6px;opacity:.3}
.ifoh .mma5q41::before{content:"—";opacity:.3}
.ifoh .b6epoyge + .b6epoyge::before{content:"—";margin-right:6px;opacity:.3}
.tx4gz .mma5q41::before{content:"◆";font-size:.5em;opacity:.35}
.tx4gz .b6epoyge + .b6epoyge::before{content:"◆";font-size:.5em;margin-right:6px;opacity:.35}
.h7pmm1 .mma5q41::before{content:"·";opacity:.4}
.h7pmm1 .b6epoyge + .b6epoyge::before{content:"·";margin-right:6px;opacity:.4}
.yc54b .mma5q41::before{content:"›";opacity:.4}
.yc54b .b6epoyge + .b6epoyge::before{content:"›";margin-right:6px;opacity:.4}
.x99ybe .mma5q41::before{content:"→";opacity:.35;font-size:.85em}
.x99ybe .b6epoyge + .b6epoyge::before{content:"→";font-size:.85em;margin-right:6px;opacity:.35}


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

/* author box variants */
.cim5 .u56d7v7c{background:var(--surface-alt);border-radius:var(--radius, 8px);border:1px solid var(--border)}
.kb5zt .u56d7v7c{border-top:3px solid var(--accent);padding-top:18px}
.ig0k00dt .u56d7v7c{border-left:3px solid var(--accent);border-radius:0}
.aqyf4 .u56d7v7c{padding:20px 0}

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

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


/* ── color scheme ── */
:root {
  --accent:          #37633d;
  --accent-light:    #69966c;
  --accent-pale:     #9dcd9f;
  --grad-start:      #8dbc8f;
  --grad-end:        #bdefbe;
  --bg-page: #d4dcd1;
  --bg-surface: #f8faf3;
  --bg-card: #f1f5ec;
  --bg-card-inner: #eaf0e6;
  --bg-raised: #e4eadf;
  --bg-hover: #dde5d9;
  --border: #acb4a9;
  --border-alt: #757d73;
  --border-section: #acb4a9;
  --text-primary: #2d342c;
  --text-muted: #596158;
  --bg-page:        #f8f9fa;
  --bg-surface:     #ffffff;
  --bg-card:        #ffffff;
  --bg-card-inner:  #f3f4f6;
  --bg-raised:      #eef0f2;
  --bg-hover:       #f3f4f6;
  --border:         #e5e7eb;
  --border-alt:     #d1d5db;
  --border-section: #e5e7eb;
  --text-body: #2e312d;
  --text-sub: #444843;
  --text-faint: #686c66;
  --text-dim: #8e928c;
  --text-label: #5c5f5a;
  --text-value: #393c38;
  --accent-bg:       #bdefbe;
  --accent-bg-light: #b0e1b1;
  --bg-tip:        #f0fdf4;
  --bg-warning:    #fffbeb;
  --bg-info:       #eff6ff;
  --bg-pros:       #f0fdf4;
  --bg-cons:       #fef2f2;
  --c-pros:        #15803d;
  --c-cons:        #b91c1c;
  --c-pros-label:  #16a34a;
  --c-tip-border:  #059669;
  --c-warn-border: #d97706;
  --c-stars:       #b45309;
  --c-arrow:       #d97706;
  --c-tag-pay:     #15803d;
}
:root { --logo-bg-opacity: 31%; }

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

.g9ripaw .q0vzm, .g9ripaw .qyt1vffl { min-height: 520px; }

.p7ie .dc1lusp::after,.p7ie .lkiqd3zm::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; }

.dx2hn::before { content: '◆'; font-size: 0.5em; }

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