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

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

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

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

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

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

/* hero-flat: без фону, просто текст на page bg (WP-style) */
.jm7du05 {
  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);
}
.jm7du05 .fkwh {
  width: 100%; max-width: 1100px; padding: 24px 24px;
}
.jm7du05 .uei9g { color: var(--text-primary); text-shadow: none; }
.jm7du05 .luvkkhw { color: var(--text-muted); }
.jm7du05 .trphg { margin-top: 16px; }
.jm7du05, .jm7du05.ltkovf88 { min-height: auto !important; }
.jm7du05.hqbs3ca .fkwh { text-align: center; }
.jm7du05.cdi2niq   .fkwh { text-align: left; }
/* flat hero: byline як звичайний текст, не оверлей */
.jm7du05~.s7lbl{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}
.jm7du05~.s7lbl .w69bbjj{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: градієнтний фон замість фото */
.lrh94u {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}
/* hero_anim: shimmer — ледь помітний блиск по поверхні */
.tjn82823 .lrh94u,
.tjn82823 .ukfrixf {
  position: relative; overflow: hidden;
}
.tjn82823 .lrh94u::after,
.tjn82823 .ukfrixf::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 */
.oe2io .lrh94u,
.oe2io .ukfrixf {
  animation: hg-breathe 10s ease-in-out infinite;
}
@keyframes hg-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
/* hero_anim: grain — ледь помітна зернистість поверх градієнту */
.nhti .lrh94u,
.nhti .ukfrixf,
.nhti .gx8g .va0m9scl {
  overflow: hidden;
}
.nhti .lrh94u::after,
.nhti .ukfrixf::after,
.nhti .gx8g .va0m9scl::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 */
.lg60qk1 .lrh94u,
.lg60qk1 .ukfrixf {
  position: relative; overflow: hidden;
}
.lg60qk1 .lrh94u::after,
.lg60qk1 .ukfrixf::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); }
}
.lg60qk1 .gx8g .va0m9scl {
  overflow: hidden;
}
.lg60qk1 .gx8g .va0m9scl::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 — градієнт з'являється при завантаженні */
.i5ku .lrh94u,
.i5ku .ukfrixf,
.i5ku .gx8g .va0m9scl {
  animation: hg-fadein 1.2s ease-out both;
}
@keyframes hg-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* hero-bg з фото — overlay анімації */
.tjn82823 .gx8g .va0m9scl {
  overflow: hidden;
}
.tjn82823 .gx8g .va0m9scl::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;
}
.oe2io .gx8g .va0m9scl {
  animation: hg-breathe 10s ease-in-out infinite;
}

.lrh94u .va0m9scl {
  background: none;
}
.lrh94u .uei9g { color: #fff; }
.lrh94u .luvkkhw { color: rgba(255,255,255,0.85); }
.lrh94u .trphg { background: #fff; color: var(--accent); }
.lrh94u .trphg:hover { opacity: 0.92; }

/* ── Hero anim: split layouts ─────────────────────────────────────────────── */
.tjn82823 .ui2icn2 { position: relative; overflow: hidden; }
.tjn82823 .ui2icn2::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;
}
.oe2io .ui2icn2 {
  animation: hg-breathe 7s ease-in-out infinite;
}
.nhti .ui2icn2 { position: relative; overflow: hidden; }
.nhti .ui2icn2::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;
}
.lg60qk1 .ui2icn2 { position: relative; overflow: hidden; }
.lg60qk1 .ui2icn2::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;
}
.i5ku .ui2icn2 {
  animation: hg-fadein 1.2s ease-out both;
}


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

/* Split alignment — всередині text-колонки */
.ui2icn2.hqbs3ca .xyy1z1 { align-items: center; text-align: center; }
.ui2icn2.cdi2niq   .xyy1z1 { align-items: flex-start; text-align: left; }

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


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

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

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

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

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

/* ── Hero: split-cards ────────────────────────────────────────────────────── */
.szspwi .atxt {
  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);
}
.qum90 {
  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;
}
.qum90:last-child { border-bottom: none; }
.qum90:hover { background: rgba(255,255,255,0.14); }
.vtlqh2 { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.j6vgjso { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.spprswd { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ukk1wln { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.p8vvkjsm { font-size: 0.82rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.c3hne065 { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.gwdk8idn { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); }
.gwdk8idn small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }
.bu99a79r { font-size: 0.8rem; padding: 6px 14px; white-space: nowrap; }

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

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

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

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


@media (max-width: 700px) {
  .ui2icn2 { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .ui2icn2 .vim6 { display: none !important; }
  .j6u89gfs .vim6 { display: none !important; }
  .szspwi .atxt { display: none !important; }
  .al55b7 .r3gy { display: none !important; }
  .xyy1z1  { padding: 36px 24px; }
  .ui2icn2~.s7lbl,.d9p07mu~.s7lbl{max-width:100%;left:0;right:0;transform:none;padding:0 24px}
  /* cap hero height variants on mobile */
  .ltkovf88, .ui2icn2 { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .uei9g { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  /* cards-top: hide on mobile */
  .eseu5oqo { display: none !important; }
  /* numbered: stack */
  .qr5wb { flex-direction: column; align-items: center; }
  .wt2ou { width: 100%; max-width: 340px; }
}

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

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

/* rounded */
.qjyz .ioxpbu        { border-radius: 16px; }
.qjyz .c24u  { border-radius: 16px; }

/* shadow */
.gnrvh .ioxpbu         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.gnrvh .c24u   { border-radius: 8px; }


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

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

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

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

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

.hege17f7 .r22d9mgg:nth-child(even) .hii5v .yzet9l:nth-child(odd),
.qmksa05 .r22d9mgg:nth-child(even) .hii5v .yzet9l:nth-child(odd)  { background: var(--bg-card); }
.hege17f7 .r22d9mgg:nth-child(even) .hii5v .yzet9l:nth-child(even),
.qmksa05 .r22d9mgg:nth-child(even) .hii5v .yzet9l:nth-child(even) { background: var(--bg-card-inner); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fvu8ux .omhl2xj,
.fvu8ux .d1tx,
.fvu8ux .a74ny,
.fvu8ux .aclcuei { font-style: normal; color: var(--text-body); }

.dww03 .omhl2xj,
.dww03 .d1tx {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.dww03 .a74ny,
.dww03 .aclcuei {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

.ifoz40r .omhl2xj,
.ifoz40r .d1tx,
.ifoz40r .a74ny,
.ifoz40r .aclcuei {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}
────────────────────────────────────────────────────────────────────────────── */

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

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

.cr4ir4     .ukc9 { list-style-type: "● "; }
.exgtbyt  .ukc9 { list-style-type: "■ "; }
.ykbram .ukc9 { list-style-type: "◆ "; }
.yl8x90u    .ukc9 { list-style-type: "★ "; }

.cr4ir4     .lmbl5 { list-style-type: "● "; }
.exgtbyt  .lmbl5 { list-style-type: "■ "; }
.ykbram .lmbl5 { list-style-type: "◆ "; }
.yl8x90u    .lmbl5 { list-style-type: "★ "; }

.cr4ir4    .ukc9 li::marker, .cr4ir4    .lmbl5 li::marker,
.exgtbyt .ukc9 li::marker, .exgtbyt .lmbl5 li::marker,
.ykbram .ukc9 li::marker, .ykbram .lmbl5 li::marker,
.yl8x90u   .ukc9 li::marker, .yl8x90u   .lmbl5 li::marker {
  color: var(--accent); font-size: 0.8em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

/* pill = solid but very rounded */
.c3sc6vk .trphg { border-radius: 50px; }
.c3sc6vk .stnb0j  { border-radius: 50px; }
/* btn_pad */
.lknh3c .trphg { padding-left: 22px; padding-right: 22px; }
.lknh3c .stnb0j  { padding-left: 12px; padding-right: 12px; }
.sn24e .trphg { padding-left: 44px; padding-right: 44px; }
.sn24e .stnb0j  { padding-left: 24px; padding-right: 24px; }
.t9tv .trphg { padding-left: 56px; padding-right: 56px; }
.t9tv .stnb0j  { padding-left: 32px; padding-right: 32px; }

/* ── btn_icon: SVG-іконки на .trphg і .stnb0j (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.w0y87   .trphg::after, .w0y87   .stnb0j::after,
.t62a3 .trphg::after, .t62a3 .stnb0j::after,
.hw1y6    .trphg::after, .hw1y6    .stnb0j::after,
.v27n    .trphg::after, .v27n    .stnb0j::after,
.g7w5    .trphg::after, .g7w5    .stnb0j::after,
.jaecqi8t     .trphg::after, .jaecqi8t     .stnb0j::after,
.lscp    .trphg::after, .lscp    .stnb0j::after,
.r8wnwq6r   .trphg::after, .r8wnwq6r   .stnb0j::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 — кожна іконка */
.w0y87 .trphg::after, .w0y87 .stnb0j::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");
}
.t62a3 .trphg::after, .t62a3 .stnb0j::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");
}
.hw1y6 .trphg::after, .hw1y6 .stnb0j::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");
}
.v27n .trphg::after, .v27n .stnb0j::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");
}
.g7w5 .trphg::after, .g7w5 .stnb0j::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");
}
.jaecqi8t .trphg::after, .jaecqi8t .stnb0j::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");
}
.lscp .trphg::after, .lscp .stnb0j::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");
}
.r8wnwq6r .trphg::after, .r8wnwq6r .stnb0j::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 ────────*/
.aajiie2o   .afupzn::after, .aajiie2o   .yj0f::after,
.x3bg2ne2 .afupzn::after, .x3bg2ne2 .yj0f::after,
.ny16g8    .afupzn::after, .ny16g8    .yj0f::after,
.fckm    .afupzn::after, .fckm    .yj0f::after,
.lygb    .afupzn::after, .lygb    .yj0f::after,
.dy1th1     .afupzn::after, .dy1th1     .yj0f::after,
.bg6lxjb    .afupzn::after, .bg6lxjb    .yj0f::after,
.hsozkyy   .afupzn::after, .hsozkyy   .yj0f::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;
}
.aajiie2o .afupzn::after, .aajiie2o .yj0f::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");
}
.x3bg2ne2 .afupzn::after, .x3bg2ne2 .yj0f::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");
}
.ny16g8 .afupzn::after, .ny16g8 .yj0f::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");
}
.fckm .afupzn::after, .fckm .yj0f::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");
}
.lygb .afupzn::after, .lygb .yj0f::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");
}
.dy1th1 .afupzn::after, .dy1th1 .yj0f::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");
}
.bg6lxjb .afupzn::after, .bg6lxjb .yj0f::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");
}
.hsozkyy .afupzn::after, .hsozkyy .yj0f::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 ─────────────────────────────────────────────────────────*/
.qp6dw31 { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


.gd2ejqj {
  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 */
.gd2ejqj > [itemprop="item"] { display: contents; }
.gd2ejqj:hover { background: var(--bg-hover); }
.qcsp {
  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 */
.byya2h .qcsp { background: #1a1a1a; }
.h63na .qcsp { background: rgba(128,128,128,.12); }
.plxyjhn .qcsp { background: var(--bg-raised); }
.te87wo .qcsp { background: transparent; padding: 0; }
.njd35 { max-height: 34px; max-width: 80px; object-fit: contain; }
.hsv7 { font-weight: 700; font-size: .85rem; color: var(--accent-light); }
.ky15xvn { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; }
.uzv9umbr { font-weight: 700; font-size: .88rem; color: var(--text-primary); flex-shrink: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dwfxg { color: var(--accent); font-size: .8rem; letter-spacing: 1px; flex-shrink: 1; min-width: 0; }
.z954 { display: flex; flex-direction: column; align-items: center; font-size: .78rem; flex: 1 1 0; min-width: 0; }
.kpj5 { color: var(--text-label); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.tx2u38t { color: var(--text-value); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.t23lh { margin-left: auto; flex-shrink: 0; white-space: nowrap; }
.t23lh.stnb0j { padding-left: 16px !important; padding-right: 16px !important; }
/* планшет / мобіль: 1 картка в ряд */
@media (max-width: 720px) {
  .qp6dw31 { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .qp6dw31 .gd2ejqj { flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px; }
  .qp6dw31 .ky15xvn { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
  .qp6dw31 .qcsp { width: 100%; min-width: unset; height: 52px; }
  .qp6dw31 .njd35 { max-height: 40px; max-width: 110px; }
  .qp6dw31 .uzv9umbr { min-width: unset; text-align: center; white-space: normal; }
  .qp6dw31 .z954 { flex-direction: row; justify-content: space-between; width: 100%; border-top: 1px solid var(--border); padding-top: 5px; }
  .qp6dw31 .t23lh { width: 100%; text-align: center; margin-left: 0; }
  .drjt .gd2ejqj { row-gap: 8px !important; gap: 8px !important; }
}

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.p8cts {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.na5a {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.fyf5jls5 {
  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;
}
.fyf5jls5 img { max-width: 80px; max-height: 50px; object-fit: contain; }
.velak0zs { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.beexj3 { flex: 1; }
.beexj3 h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.k9g236d3 { color: var(--c-stars); font-size: 1.1rem; }
.uy5yo { margin-bottom: 8px; }
.nuwmd0y { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.cb3745ux::before   { content: "★ "; color: var(--accent); }
.cjp8::before { content: "↓ "; color: var(--accent); }
.wkcpaa::before { content: "✦ "; color: var(--accent); }
.mjlf4t { flex-shrink: 0; }
.makkbgeq img.vk00p { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.exaf { padding: 20px 24px; }
.kqz3r6 { color: var(--text-muted); margin-bottom: 16px; }
.nlhkav01 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.jueidbn0, .tzmprzl { list-style: none; font-size: 0.9rem; }
.jueidbn0 li { color: var(--c-pros); margin-bottom: 4px; }
.tzmprzl li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.jueidbn0 li::before { content: "✓"; margin-right: 5px; }
.tzmprzl li::before { content: "✗"; margin-right: 5px; }
.qcw9 .jueidbn0 li::before { content: "→"; }
.qcw9 .tzmprzl li::before { content: "–"; }
.gjlwvog2  .jueidbn0 li::before { content: "★"; }
.gjlwvog2  .tzmprzl li::before { content: "✕"; }
.ili0zghn    .jueidbn0 li::before { content: "◆"; }
.ili0zghn    .tzmprzl li::before { content: "▲"; }
.cx0mh  .jueidbn0 li::before { content: "▶"; }
.cx0mh  .tzmprzl li::before { content: "■"; }
.ia4xw3 { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.gc2v { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.p3kc { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

/* ── Brand card (single brand, two-column hero) ─────────────────────────────*/
/* ═══════════════════════════════════════════════════════════════════════════
   BRAND CARD — shared tokens
   ═══════════════════════════════════════════════════════════════════════════ */
.q34sd {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.td4sdlyj {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.td4sdlyj img { max-width: 100%; max-height: 100%; object-fit: contain; }
.vypz { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.g6kbhz8 { display: flex; align-items: center; gap: 8px; }
.g6kbhz8 .k9g236d3 { font-size: .95rem; }
.g6kbhz8 strong { font-size: 1.1rem; color: var(--text); }
.x6v6t { border-radius: 8px; overflow: hidden; }
.x6v6t img { width: 100%; display: block; border-radius: 8px; }
.yrweql { text-align: center; flex-shrink: 0; }
.yolqiy { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.fp5zcih3 { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.skc1hr8 { font-size: .88rem; font-weight: 600; color: var(--text); }
.z452fb .skc1hr8 { font-size: 1.02rem; font-weight: 700; color: var(--accent); }
.q34sd .c83x23m { gap: 10px; }
.q34sd .upphd9, .q34sd .hagm0n { padding: 12px; }
.q34sd .upphd9 ul, .q34sd .hagm0n ul { margin: 4px 0 0; padding-left: 18px; }
.q34sd .upphd9 li, .q34sd .hagm0n li { font-size: .85rem; margin-bottom: 3px; }
.eet0 { font-size: .8rem; color: var(--text-muted); margin-top: 10px; }
.eet0 strong { color: var(--text-secondary); }
.eet0 .gc2v { margin: 2px 4px 2px 0; }

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

/* ── LAYOUT 2: hero — full-width screenshot header ────────────────────────── */
.cv9ux {
  position: relative; max-height: 240px; overflow: hidden;
}
.cv9ux > img { width: 100%; display: block; object-fit: cover; min-height: 160px; }
.vsyswj {
  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;
}
.vsyswj .td4sdlyj { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.vsyswj .vypz { color: #fff; font-size: 1.25rem; }
.vsyswj .g6kbhz8 strong { color: #fff; }
.vsyswj .g6kbhz8 .k9g236d3 { filter: brightness(1.2); }
.vsyswj .yrweql { margin-left: auto; white-space: nowrap; }
.x5ayw { flex: 1; }
.ko2j {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-alt);
}
.ko2j .yrweql { margin-left: auto; }
.r8jvy { display: flex; flex-direction: column; gap: 16px; padding: 20px 24px; }
.wasy43gy .zjtlkp {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.wasy43gy .yolqiy {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.wasy43gy .z452fb { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .vsyswj { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .r8jvy { padding: 16px; }
  .wasy43gy .yolqiy { min-width: 50%; }
}

/* ── LAYOUT 3: magazine — editorial 3-column ──────────────────────────────── */
.hd5mf8 {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.frg5ob3 { flex: 1; }
.frg5ob3 .vypz { font-size: 1.3rem; }
.au67j121 {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.zocf3s82 { padding: 16px; border-right: 1px solid var(--border-alt); }
.zocf3s82 .x6v6t { height: 100%; }
.zocf3s82 .x6v6t img { height: 100%; object-fit: cover; }
.o4b9if { padding: 0; border-right: 1px solid var(--border-alt); }
.o4b9if .zjtlkp { display: flex; flex-direction: column; }
.o4b9if .yolqiy { border-bottom: 1px solid var(--border-alt); }
.o4b9if .z452fb { background: var(--accent-bg); }
.k7eanx3n { padding: 16px; }
.k7eanx3n .c83x23m { grid-template-columns: 1fr; }
.yn4bch4 {
  padding: 12px 24px; border-top: 1px solid var(--border-alt);
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .au67j121 { grid-template-columns: 1fr; }
  .zocf3s82 { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .o4b9if { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .hd5mf8 { flex-wrap: wrap; padding: 16px; }
}

/* ── LAYOUT 4: compact — header bar → screenshot → data ──────────────────── */
.x6hx4z7y {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border-alt);
}
.jxcg2v {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.jxcg2v .td4sdlyj { width: 72px; height: 50px; }
.jxcg2v .vypz { font-size: 1rem; white-space: nowrap; }
.svptxj2o { border-bottom: 1px solid var(--border-alt); max-height: 280px; overflow: hidden; }
.svptxj2o img { width: 100%; display: block; object-fit: cover; }
.ejshvzz {
  display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; overflow: hidden;
}
.mrtu .zjtlkp { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.mrtu .yolqiy { padding: 0; flex: 0 0 auto; gap: 6px; }
.mrtu .z452fb { display: none; }
.mrtu .c83x23m { gap: 8px; }
.mrtu .upphd9, .mrtu .hagm0n { padding: 8px; }
@media (max-width: 480px) {
  .x6hx4z7y { flex-direction: column; align-items: stretch; }
}

/* ── LAYOUT 8: mini — compact single-row bar for topic pages ─────────────── */
.fs0a08o { padding: 0; }
.ghd4qzxp {
  display: flex; align-items: center; gap: 16px; padding: 12px 20px; flex-wrap: wrap;
}
.udgf0 {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.udgf0 .td4sdlyj { width: 48px; height: 48px; }
.udgf0 .vypz { font-size: 0.95rem; font-weight: 700; white-space: nowrap; }
.udgf0 .g6kbhz8 { font-size: 0.8rem; }
.udgf0 .g6kbhz8 strong { font-size: 0.85rem; }
.faeg3l { flex: 1; min-width: 0; overflow: hidden; }
.fs0a08o .zjtlkp {
  display: flex; flex-wrap: wrap; gap: 4px 14px;
}
.fs0a08o .yolqiy { padding: 0; flex: 0 0 auto; gap: 4px; }
.fs0a08o .fp5zcih3 { font-size: 0.7rem; }
.fs0a08o .skc1hr8 { font-size: 0.8rem; }
.fs0a08o .z452fb .skc1hr8 { font-size: 0.85rem; font-weight: 700; }
.fs0a08o .yrweql .stnb0j { padding: 8px 20px; font-size: 0.85rem; }
@media (max-width: 640px) {
  .ghd4qzxp { flex-direction: column; align-items: stretch; gap: 10px; }
  .fs0a08o .yrweql { text-align: center; }
}

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

/* ── LAYOUT 6: scorecard — big score centerpiece ──────────────────────────── */
.axgb {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
  border-bottom: 1px solid var(--border-alt);
}
.sdlf {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; text-align: center;
}
.b0r7f {
  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;
}
.mpxx9qu { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.mpxx9qu .sk6cb { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.b0r7f .k9g236d3 { font-size: .75rem; margin-top: 2px; }
.nk69ee { padding: 12px; display: flex; align-items: center; flex: 1; }
.nk69ee .x6v6t { width: 100%; }
.f30b {
  padding: 0; border-bottom: 1px solid var(--border-alt);
}
.ouggu .zjtlkp {
  display: flex; flex-wrap: wrap;
}
.ouggu .yolqiy {
  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;
}
.ouggu .yolqiy:last-child { border-right: none; }
.ouggu .fp5zcih3 { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.ouggu .z452fb { background: var(--accent-bg); }
.trgbonpw { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 720px) {
  .axgb { grid-template-columns: 1fr; }
  .b0r7f { width: 100px; height: 100px; margin: 16px auto; }
  .mpxx9qu { font-size: 1.4rem; }
  .nk69ee { justify-content: center; }
  .ouggu .yolqiy { min-width: 50%; }
}

/* ── LAYOUT 7: stack — vertical full-width flow ──────────────────────────── */
.ohi9 {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.t42xsr { max-height: 240px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.t42xsr img { width: 100%; display: block; object-fit: cover; }
.j64qzkq { padding: 16px 24px; border-bottom: 1px solid var(--border-alt); }
.i4pl .zjtlkp {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.i4pl .yolqiy {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.i4pl .z452fb {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.i4pl .c83x23m { margin: 0 24px; padding-top: 16px; }
.i4pl .eet0 { padding: 0 24px; }
.zg04o { padding: 16px 24px; border-top: 1px solid var(--border-alt); text-align: center; }
.zg04o .yrweql { display: inline-block; }
@media (max-width: 540px) {
  .ohi9 { flex-wrap: wrap; padding: 14px 16px; }
  .j64qzkq { padding: 12px 16px; }
  .i4pl .c83x23m { margin: 0 16px; }
  .i4pl .eet0 { padding: 0 16px; }
  .zg04o { padding: 12px 16px; }
}


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

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

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.mkxdo6x .kpj5 {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.mkxdo6x .tx2u38t {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.mkxdo6x .dwfxg { color: var(--accent); }
.mkxdo6x .na5a { background: var(--accent-bg); }
.mkxdo6x .cb3745ux, .mkxdo6x .cjp8, .mkxdo6x .wkcpaa {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

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

/* compact: менші відступи всюди */
.bvsjw .gd2ejqj { padding: 8px 14px; gap: 12px; }
.bvsjw .qcsp { height: 32px; min-width: 52px; }
.bvsjw .njd35 { max-height: 24px; }
.bvsjw .uzv9umbr { font-size: 0.82rem; }
.bvsjw .na5a { padding: 14px 18px; gap: 14px; }
.bvsjw .exaf { padding: 14px 18px; }
.bvsjw .fyf5jls5 { width: 70px; }
.bvsjw .beexj3 h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.drjt .qp6dw31 {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.drjt .gd2ejqj {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); row-gap: 0; column-gap: 12px;
}
.drjt .gd2ejqj:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.drjt .dwfxg,
.drjt .i6losrrw,
.drjt .t23lgbzo { border-left: 1px solid var(--border); padding-left: 10px; }
.drjt .uzv9umbr { padding: 0 10px; }

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

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

/* ── casino-wide: високі горизонтальні картки з великим лого ───────────────*/
.sf70ta .qp6dw31 { gap: 12px; }
.sf70ta .gd2ejqj {
  padding: 18px 24px; gap: 20px; border-radius: 12px;
  min-height: 80px;
}
.sf70ta .qcsp {
  min-width: 90px; height: 64px; padding: 6px 12px; border-radius: 10px;
}
.sf70ta .njd35 { max-height: 52px; max-width: 120px; }
.sf70ta .uzv9umbr { font-size: 1rem; }
.sf70ta .z954 { font-size: .85rem; }
.sf70ta .tx2u38t { font-size: .9rem; }
.sf70ta .t23lh.stnb0j { padding: 10px 24px !important; font-size: .9rem; }

/* ── casino-jumbo: дуже великі картки, лого + інтерфейс скриншот ──────────*/
.s1ejp .qp6dw31 { gap: 16px; }
.s1ejp .gd2ejqj {
  padding: 24px 28px; gap: 24px; border-radius: 14px;
  min-height: 100px; border-width: 2px;
}
.s1ejp .qcsp {
  min-width: 110px; height: 80px; padding: 8px 14px; border-radius: 12px;
  background: var(--bg-raised);
}
.s1ejp .njd35 { max-height: 64px; max-width: 140px; }
.s1ejp .uzv9umbr { font-size: 1.1rem; font-weight: 800; }
.s1ejp .dwfxg { font-size: .95rem; letter-spacing: 2px; }
.s1ejp .z954 { font-size: .9rem; }
.s1ejp .tx2u38t { font-size: .95rem; font-weight: 700; }
.s1ejp .kpj5 { font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; }
.s1ejp .t23lh.stnb0j { padding: 12px 32px !important; font-size: .95rem; font-weight: 700; }

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

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.tuhe .i6losrrw { flex: 1.8; }
.tuhe .i6losrrw .tx2u38t {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}
.tuhe .i6losrrw .kpj5 { font-weight: 700; color: var(--text-primary); }
.tuhe .so1403q4,
.tuhe .fwkl,
.tuhe .p290mvpy { flex: 0.75; opacity: 0.65; }

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

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

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

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

/* score в оглядах — ховаємо зірки */
.ru1wtb .uy5yo .k9g236d3,
.zeshh .uy5yo .k9g236d3,
.h98dttq .uy5yo .k9g236d3 { display: none; }

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

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

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

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.r22d9mgg { margin-bottom: 0; }
.cntrzsod h2.k5u5uano { color: var(--accent-light); border-color: var(--accent); }
.nb5in h2.k5u5uano { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.xraxo .mbm811i2     { background: #052e16; border-color: #10b981; }
.xraxo .w6vyrxcl { background: #2d0a1e; border-color: #f43f5e; }
.xraxo .t2637c    { background: #1e1036; border-color: #a855f7; }
.xraxo .gi4bct4c strong  { color: #f1f5f9; }
.xraxo .gi4bct4c p       { color: #cbd5e1; }
.xraxo .goio    .mbm811i2     .gz5btr::before,
.xraxo .bg0qh5  .mbm811i2     .gz5btr::before,
.xraxo .xhs5s  .mbm811i2     .gz5btr::before,
.xraxo .a10vts .mbm811i2     .gz5btr::before { color: #10b981; }
.xraxo .goio    .w6vyrxcl .gz5btr::before,
.xraxo .bg0qh5  .w6vyrxcl .gz5btr::before,
.xraxo .xhs5s  .w6vyrxcl .gz5btr::before,
.xraxo .a10vts .w6vyrxcl .gz5btr::before { color: #f43f5e; }
.xraxo .goio    .t2637c    .gz5btr::before,
.xraxo .bg0qh5  .t2637c    .gz5btr::before,
.xraxo .xhs5s  .t2637c    .gz5btr::before,
.xraxo .a10vts .t2637c    .gz5btr::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.r4ru .mbm811i2     { background: #2d2000; border-color: #eab308; }
.r4ru .w6vyrxcl { background: #2d0b0b; border-color: #ef4444; }
.r4ru .t2637c    { background: #2d1600; border-color: #f97316; }
.r4ru .gi4bct4c strong  { color: #f1f5f9; }
.r4ru .gi4bct4c p       { color: #cbd5e1; }
.r4ru .goio    .mbm811i2     .gz5btr::before,
.r4ru .bg0qh5  .mbm811i2     .gz5btr::before,
.r4ru .xhs5s  .mbm811i2     .gz5btr::before,
.r4ru .a10vts .mbm811i2     .gz5btr::before { color: #eab308; }
.r4ru .goio    .w6vyrxcl .gz5btr::before,
.r4ru .bg0qh5  .w6vyrxcl .gz5btr::before,
.r4ru .xhs5s  .w6vyrxcl .gz5btr::before,
.r4ru .a10vts .w6vyrxcl .gz5btr::before { color: #ef4444; }
.r4ru .goio    .t2637c    .gz5btr::before,
.r4ru .bg0qh5  .t2637c    .gz5btr::before,
.r4ru .xhs5s  .t2637c    .gz5btr::before,
.r4ru .a10vts .t2637c    .gz5btr::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.ow7csk .mbm811i2     { background: #0c1a2e; border-color: #38bdf8; }
.ow7csk .w6vyrxcl { background: #12103a; border-color: #818cf8; }
.ow7csk .t2637c    { background: #0a2020; border-color: #2dd4bf; }
.ow7csk .gi4bct4c strong  { color: #f1f5f9; }
.ow7csk .gi4bct4c p       { color: #cbd5e1; }
.ow7csk .goio    .mbm811i2     .gz5btr::before,
.ow7csk .bg0qh5  .mbm811i2     .gz5btr::before,
.ow7csk .xhs5s  .mbm811i2     .gz5btr::before,
.ow7csk .a10vts .mbm811i2     .gz5btr::before { color: #38bdf8; }
.ow7csk .goio    .w6vyrxcl .gz5btr::before,
.ow7csk .bg0qh5  .w6vyrxcl .gz5btr::before,
.ow7csk .xhs5s  .w6vyrxcl .gz5btr::before,
.ow7csk .a10vts .w6vyrxcl .gz5btr::before { color: #818cf8; }
.ow7csk .goio    .t2637c    .gz5btr::before,
.ow7csk .bg0qh5  .t2637c    .gz5btr::before,
.ow7csk .xhs5s  .t2637c    .gz5btr::before,
.ow7csk .a10vts .t2637c    .gz5btr::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.zehur3 .mbm811i2     { background: var(--accent-bg); border-color: var(--accent); }
.zehur3 .w6vyrxcl { background: var(--accent-bg-light); border-color: var(--accent-light); }
.zehur3 .t2637c    { background: var(--accent-bg); border-color: var(--accent-pale); }
.zehur3 .goio    .gz5btr::before,
.zehur3 .bg0qh5  .gz5btr::before,
.zehur3 .xhs5s  .gz5btr::before,
.zehur3 .a10vts .gz5btr::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.ydc3eb21 .upphd9 ul li,
.ydc3eb21 .jueidbn0 li         { color: #4ade80; }
.ydc3eb21 .upphd9 .odk3 { color: #22c55e; }
.ydc3eb21 .hagm0n ul li,
.ydc3eb21 .tzmprzl li         { color: #f87171; }
.ydc3eb21 .hagm0n .ibmfmu6 { color: #ef4444; }

/* blue: синій pros / amber cons */
.wqk0unl .upphd9 { background: #0c1a2e; }
.wqk0unl .hagm0n { background: #2d1f00; }
.wqk0unl .upphd9 .odk3 { color: #93c5fd; }
.wqk0unl .hagm0n .ibmfmu6 { color: #fcd34d; }
.wqk0unl .upphd9 ul li,
.wqk0unl .jueidbn0 li            { color: #bfdbfe; }
.wqk0unl .hagm0n ul li,
.wqk0unl .tzmprzl li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.tjh3bf .upphd9 { background: var(--accent-bg); }
.tjh3bf .hagm0n { background: var(--accent-bg-light); }
.tjh3bf .upphd9 .odk3 { color: var(--accent-pale); }
.tjh3bf .hagm0n .ibmfmu6 { color: var(--accent-light); }
.tjh3bf .upphd9 ul li,
.tjh3bf .jueidbn0 li          { color: var(--text-body); }
.tjh3bf .hagm0n ul li,
.tjh3bf .tzmprzl li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.tnin .odk3::before { content: "✓ "; }
.tnin .ibmfmu6::before { content: "✗ "; }

/* arrows: → / ← */
.qcw9 .odk3::before { content: "→ "; }
.qcw9 .ibmfmu6::before { content: "← "; }

/* marks: ★ / ✕ */
.gjlwvog2 .odk3::before { content: "★ "; }
.gjlwvog2 .ibmfmu6::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.ili0zghn .odk3::before { content: "◆ "; }
.ili0zghn .ibmfmu6::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.q4p7ev .gi4bct4c { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.q4p7ev .mbm811i2     { border-top-color: var(--c-tip-border); }
.q4p7ev .w6vyrxcl { border-top-color: var(--c-warn-border); }
.q4p7ev .t2637c    { border-top-color: #60a5fa; }

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

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

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

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

.goio .gz5btr,
.bg0qh5 .gz5btr,
.xhs5s .gz5btr,
.a10vts .gz5btr { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.goio .gz5btr::before,
.bg0qh5 .gz5btr::before,
.xhs5s .gz5btr::before,
.a10vts .gz5btr::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.goio .mbm811i2     .gz5btr::before { content: "✦"; color: var(--c-tip-border); }
.goio .w6vyrxcl .gz5btr::before { content: "▲"; color: var(--c-warn-border); }
.goio .t2637c    .gz5btr::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.bg0qh5 .mbm811i2     .gz5btr::before { content: "★"; color: var(--c-tip-border); }
.bg0qh5 .w6vyrxcl .gz5btr::before { content: "◆"; color: var(--c-warn-border); }
.bg0qh5 .t2637c    .gz5btr::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.xhs5s .mbm811i2     .gz5btr::before { content: "▶"; color: var(--c-tip-border); }
.xhs5s .w6vyrxcl .gz5btr::before { content: "■"; color: var(--c-warn-border); }
.xhs5s .t2637c    .gz5btr::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.a10vts .mbm811i2     .gz5btr::before { content: "→"; color: var(--c-tip-border); }
.a10vts .w6vyrxcl .gz5btr::before { content: "⬥"; color: var(--c-warn-border); }
.a10vts .t2637c    .gz5btr::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.qjluqw .rs0j27uu .yzet9l,
.qjluqw .hii5v .yzet9l  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.qjluqw .ojpn                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.qjluqw .gd2ejqj                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.qjluqw .p8cts            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.qjluqw .kpzurmf8          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.qjluqw .zuov0y9                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.fa613ogx .rs0j27uu .yzet9l,
.fa613ogx .hii5v .yzet9l,
.fa613ogx .ojpn,
.fa613ogx .gd2ejqj,
.fa613ogx .p8cts,
.fa613ogx .kpzurmf8,
.fa613ogx .zuov0y9,
.fa613ogx .oyej .gi4bct4c { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.souem   body, .souem   { font-size: 0.9rem; }
.souem   .az2mjf0k, .souem .a74ny, .souem .aclcuei,
.souem   .omhl2xj, .souem .d1tx { font-size: 0.9rem; }
.souem   .ukc9, .souem .i2h3u { font-size: 0.9rem; }

.j2lsmmfw   .az2mjf0k, .j2lsmmfw .a74ny, .j2lsmmfw .aclcuei,
.j2lsmmfw   .omhl2xj, .j2lsmmfw .d1tx { font-size: 0.9rem; }
.j2lsmmfw   .ukc9, .j2lsmmfw .i2h3u { font-size: 0.9rem; }

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

.n7cd   .az2mjf0k, .n7cd .a74ny, .n7cd .aclcuei,
.n7cd   .omhl2xj, .n7cd .d1tx { font-size: 1.08rem; }
.n7cd   .ukc9, .n7cd .i2h3u { font-size: 1.05rem; }
.n7cd   .ahxjae { font-size: 0.97rem; }

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

/* large */
.mejuj .uei9g      { font-size: 3.2rem; }
.mejuj h2.k5u5uano { font-size: 1.9rem; }
.mejuj h3.exaapanv     { font-size: 1.4rem; }

/* display */
.nzm93e4 .uei9g      { font-size: 3.8rem; }
.nzm93e4 h2.k5u5uano { font-size: 2.2rem; }
.nzm93e4 h3.exaapanv     { font-size: 1.6rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.vi0e3ajv   .r22d9mgg + .r22d9mgg::before,
.mcl7q2  .r22d9mgg + .r22d9mgg::before,
.wp70   .r22d9mgg + .r22d9mgg::before,
.putm   .r22d9mgg + .r22d9mgg::before,
.w20f   .r22d9mgg + .r22d9mgg::before,
.qe0r6o4s .r22d9mgg + .r22d9mgg::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}

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

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

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

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

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

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

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

/* section_bg=stripe: парні секції мають bg-card */
.qmksa05 .cumut .r22d9mgg:nth-child(even)::before,
.qmksa05 .gj2qehl .r22d9mgg:nth-child(even)::before,
.qmksa05 .lbm2 .r22d9mgg:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.cumut .r22d9mgg + .r22d9mgg::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 гребені */
.gj2qehl .r22d9mgg + .r22d9mgg::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: глибока дуга */
.lbm2 .r22d9mgg + .r22d9mgg::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 у формі хвилі */
.ixf2a8pc .gx8g,
.u3njb .gx8g,
.rq7x9 .gx8g { overflow: hidden; }

/* wave: додатковий простір щоб хвиля не закривала CTA */
.ixf2a8pc .fkwh,
.u3njb .fkwh { margin-bottom: 60px; }
.rq7x9 .fkwh { margin-bottom: 70px; }
.ixf2a8pc .xyy1z1,
.u3njb .xyy1z1 { padding-bottom: 60px; }
.rq7x9 .xyy1z1 { padding-bottom: 70px; }

.ixf2a8pc .gx8g::before,
.u3njb .gx8g::before,
.rq7x9 .gx8g::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 гребінь) */
.ixf2a8pc .gx8g::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 гребені */
.u3njb .gx8g::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: глибока дуга */
.rq7x9 .gx8g::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 */
.axxjpbo .gx8g:not(.lrh94u) .va0m9scl { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }
.xqkso7 .gx8g:not(.lrh94u) .va0m9scl { background: linear-gradient(45deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 100%); }
.egys1a  .gx8g:not(.lrh94u) .va0m9scl { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }
.u4lpp  .gx8g:not(.lrh94u) .va0m9scl { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }

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

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

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

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

/* hg-solid: суцільний колір без градієнту */
.b6pvl3us .lrh94u { background: var(--accent); }
.b6pvl3us .lrh94u .va0m9scl { background: none; }
.b6pvl3us .ukfrixf { background: var(--accent); }
.b6pvl3us .ui2icn2 { background: var(--accent-bg); }
.b6pvl3us .gx8g:not(.lrh94u) .va0m9scl { background: rgba(0,0,0,0.6); }


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

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

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

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

/* Великі блочні елементи — clear float щоб не стискались */
.hdeuagf .iw6m,
.hdeuagf .qp6dw31,
.wdck .iw6m,
.wdck .qp6dw31,
.os9g2rwm .iw6m,
.os9g2rwm .qp6dw31 { clear: both; }

/* Маркери списків не мають налазити на float-картинку */
.hdeuagf .ukc9,
.hdeuagf .i2h3u,
.wdck .ukc9,
.wdck .i2h3u,
.os9g2rwm .ukc9,
.os9g2rwm .i2h3u { overflow: hidden; }


@media (max-width: 640px) {
  .hdeuagf .ioxpbu,
  .wdck .ioxpbu,
  .os9g2rwm .ioxpbu { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1100px (задано в .gam219vp, .kkxdedu, .efm47rn3) */
.e1ks .gam219vp,
.e1ks .kkxdedu,
.e1ks .efm47rn3  { max-width: 1100px; }
.e1ks { --content-mw: 1100px; }
.oui7ccm .gam219vp,
.oui7ccm .kkxdedu,
.oui7ccm .efm47rn3  { max-width: 1200px; }
.oui7ccm { --content-mw: 1200px; }
.dv6a3e3n .gam219vp,
.dv6a3e3n .kkxdedu,
.dv6a3e3n .efm47rn3  { max-width: 1320px; }
.dv6a3e3n { --content-mw: 1320px; }

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

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

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

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

/* content-width: above — обидва класи на <body>, тому без пробілу */
.e1ks.ubei6 .we2m4vw5 { max-width: 1100px; }
.oui7ccm.ubei6 .we2m4vw5 { max-width: 1200px; }
.dv6a3e3n.ubei6 .we2m4vw5 { max-width: 1320px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.e1ks .myodgauv { max-width: 1100px; }
.oui7ccm .myodgauv { max-width: 1200px; }
.dv6a3e3n .myodgauv { max-width: 1320px; }

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

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.bot3dph { font-weight: 300; }
.bot3dph h2.k5u5uano { font-weight: 600; }
.bot3dph h3.exaapanv     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.wtrm7pee { font-weight: 500; }
.wtrm7pee h2.k5u5uano { font-weight: 800; }
.wtrm7pee h3.exaapanv     { font-weight: 700; }
/* fw-600: semibold */
.yd8p9x { font-weight: 600; }
.yd8p9x h2.k5u5uano { font-weight: 900; }
.yd8p9x h3.exaapanv     { font-weight: 800; }
.yd8p9x .gi4bct4c strong,
.yd8p9x .gi4bct4c strong { font-weight: 600; }
/* .yd8p9x .a74ny, .yd8p9x .omhl2xj { font-weight: 600; } */

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

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

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

/* minimal */
.h4dq .efm47rn3 { text-align: center; }
.h4dq .lx5v { justify-content: center; margin-bottom: 16px; }
.h4dq .a8pqva { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .efm47rn3 { padding-left: 16px; padding-right: 16px; }
  .f5vlvv2i .efm47rn3 { padding: 20px 16px; }
  .lx5v { gap: 4px 12px; }
  .a8pqva { font-size: 0.78rem; }
}


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


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

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

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

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

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

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

/* dark: завжди темний, незалежно від теми */
.wra5wptj .pi1y5a4      { background: #0d1117; border-bottom-color: #21262d; }
.wra5wptj .n9v0s84 { color: var(--accent-light); }
.wra5wptj .iqylqrr { --msep-color: #8b949e; }
.wra5wptj .iqylqrr a { color: #8b949e; }
.wra5wptj .iqylqrr a:hover { color: var(--accent-light); }
.wra5wptj .wtxo156 { color: #8b949e; }
.wra5wptj .r393 { background: #0d1117; border-top-color: #21262d; }
.wra5wptj .a8pqva,
.wra5wptj .rt9khk8 { color: #6e7681; }
.wra5wptj .v2r4w5up a, .wra5wptj .lx5v a,
.wra5wptj .wu3tq44 a, .wra5wptj .bn634j a,
.wra5wptj .uj0lsc a, .wra5wptj .bhl126 { color: #8b949e; }
.wra5wptj .v2r4w5up a:hover, .wra5wptj .lx5v a:hover,
.wra5wptj .wu3tq44 a:hover, .wra5wptj .bn634j a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .wra5wptj .iqylqrr { background: #0d1117; border-top-color: #21262d; }
  .wra5wptj .iqylqrr li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.lb3191 .pi1y5a4      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.lb3191 .n9v0s84 { color: var(--accent); }
.lb3191 .iqylqrr { --msep-color: #475569; }
.lb3191 .iqylqrr a { color: #475569; }
.lb3191 .iqylqrr a:hover { color: var(--accent); }
.lb3191 .wtxo156 { color: #64748b; }
.lb3191 .r393 { background: #f0f4f8; border-top-color: #cbd5e1; }
.lb3191 .a8pqva,
.lb3191 .rt9khk8 { color: #64748b; }
.lb3191 .v2r4w5up a, .lb3191 .lx5v a,
.lb3191 .wu3tq44 a, .lb3191 .bn634j a,
.lb3191 .uj0lsc a, .lb3191 .bhl126 { color: #374151; }
.lb3191 .v2r4w5up a:hover, .lb3191 .lx5v a:hover,
.lb3191 .wu3tq44 a:hover, .lb3191 .bn634j a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .lb3191 .iqylqrr { background: #f0f4f8; border-top-color: #cbd5e1; }
  .lb3191 .iqylqrr li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.w2hyugy .pi1y5a4      { background: var(--accent); border-bottom-color: var(--accent-light); }
.w2hyugy .n9v0s84 { color: #fff; }
.w2hyugy .iqylqrr { --msep-color: rgba(255,255,255,0.82); }
.w2hyugy .iqylqrr a { color: rgba(255,255,255,0.82); }
.w2hyugy .iqylqrr a:hover { color: #fff; }
.w2hyugy .wtxo156 { color: rgba(255,255,255,0.9); }
.w2hyugy .zoszyv a { color: var(--text-primary) !important; }
.w2hyugy .zoszyv a:hover { color: var(--accent) !important; }
.w2hyugy .r393 { background: var(--accent); border-top-color: var(--accent-light); }
.w2hyugy .a8pqva,
.w2hyugy .rt9khk8 { color: rgba(255,255,255,0.72); }
.w2hyugy .v2r4w5up a, .w2hyugy .lx5v a,
.w2hyugy .wu3tq44 a, .w2hyugy .bn634j a,
.w2hyugy .uj0lsc a, .w2hyugy .bhl126 { color: rgba(255,255,255,0.82); }
.w2hyugy .v2r4w5up a:hover, .w2hyugy .lx5v a:hover,
.w2hyugy .wu3tq44 a:hover, .w2hyugy .bn634j a:hover { color: #fff; }
@media (max-width: 640px) {
  .w2hyugy .iqylqrr { background: var(--accent); border-top-color: var(--accent-light); }
  .w2hyugy .iqylqrr li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.zcvla3gu .pi1y5a4 {
  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);
}
.zcvla3gu .r393 {
  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) {
  .zcvla3gu .iqylqrr {
    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 */
.dzly7za .jdtj7gww { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.w5xi5r8y .jdtj7gww { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.l8e5ec .jdtj7gww { min-height: 72px; height: auto; }
.p2flibx .jdtj7gww { min-height: 84px; height: auto; }

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

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


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

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.r3l8a, .zm3l1t {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fjepweni .r3l8a,
.fjepweni .zm3l1t { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.leu7 .r3l8a,
.leu7 .zm3l1t { 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; }
.iffp2 .r3l8a,
.iffp2 .zm3l1t { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.hufgnc .r3l8a,
.hufgnc .zm3l1t { 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 */
.m3qqkry   .iqylqrr a { font-weight: 500; }
.boj5z .iqylqrr a { font-weight: 600; }
.eht7     .iqylqrr a { font-weight: 700; }
.cj5ska    .iqylqrr a { font-weight: 800; letter-spacing: 0.01em; }

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

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .tkmz02c9 .wtxo156,
  .vlgo3pvg .wtxo156,
  .xfwad3 .wtxo156,
  .twvx7x .wtxo156,
  .t9bwxdtf .wtxo156 {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .tkmz02c9 .wtxo156::before,
  .vlgo3pvg .wtxo156::before,
  .xfwad3 .wtxo156::before,
  .twvx7x .wtxo156::before,
  .t9bwxdtf .wtxo156::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .tkmz02c9 .wtxo156::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 лінії рівні */
  .vlgo3pvg .wtxo156::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% */
  .xfwad3 .wtxo156::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% */
  .twvx7x .wtxo156::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% */
  .t9bwxdtf .wtxo156::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) {
  .psps .wtxo156 {
    padding: 5px 14px;
  }
  .psps .iqylqrr {
    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;
  }
  .psps .iqylqrr li a {
    border-bottom: none; padding: 10px 22px;
  }
  .psps .iqylqrr li a:hover { background: var(--bg-raised); }
}

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

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

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .e21ou5 .wtxo156 {
    padding: 5px 10px;
  }
  .e21ou5 .iqylqrr {
    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;
  }
  .e21ou5 .iqylqrr.u3pl { opacity: 1; pointer-events: auto; }
  .e21ou5 .iqylqrr 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) {
  .vf9dw     .wtxo156 { border-radius: 0 !important; }
  .rjnxdek5   .wtxo156 { border-radius: 8px !important; }
  .e7me44g .wtxo156 { border-radius: 50% !important; }
  .bm5hjcea   .wtxo156 { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .dwfxg / .k9g236d3) */
.j94ecvq    .dwfxg, .j94ecvq    .k9g236d3 { color: #f59e0b; }
.tu8tlkz4      .dwfxg { font-size: 1rem; letter-spacing: 1.5px; }
.tu8tlkz4      .k9g236d3   { font-size: 1.35rem; }
.x1ff    .dwfxg, .x1ff    .k9g236d3 { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.ff8c0uc     .dwfxg, .ff8c0uc     .k9g236d3 { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.gk8xz9wl .dwfxg, .gk8xz9wl .k9g236d3 { color: var(--accent); letter-spacing: 2px; }
.mdqawkyx   .dwfxg, .mdqawkyx   .k9g236d3 { color: #e91e63; letter-spacing: 2px; }
.ao3zu  .dwfxg, .ao3zu  .k9g236d3 { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.djmi0     .dwfxg, .djmi0     .k9g236d3 { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ── Byline slots — position control ── */
.w55c{display:none}
.w55c:empty,.w69bbjj:empty{display:none}
.j7r220f{position:relative;overflow:visible}

/* hero slot — shown for all hero positions */
.lk1f0 .s7lbl,.yf4qsnq .s7lbl,
.m6hl .s7lbl,.gukl8z .s7lbl,
.omm6639d .s7lbl,.d8rb .s7lbl{display:block}
.z9w6wk0s .qavxw7{display:block}

/* shared overlay: centered container matching hero-content width (always 1100px) */
.lk1f0 .s7lbl,.yf4qsnq .s7lbl,
.m6hl .s7lbl,.gukl8z .s7lbl,
.omm6639d .s7lbl{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 */
.lk1f0 .s7lbl .w69bbjj,.yf4qsnq .s7lbl .w69bbjj,
.m6hl .s7lbl .w69bbjj,.gukl8z .s7lbl .w69bbjj,
.omm6639d .s7lbl .w69bbjj{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 */
.lk1f0 .dzfk,.yf4qsnq .dzfk,
.m6hl .dzfk,.gukl8z .dzfk,
.omm6639d .dzfk{background:transparent!important;border:none!important;padding:0;border-radius:0;color:inherit!important}
/* top positions */
.lk1f0 .s7lbl,.yf4qsnq .s7lbl{top:12px}
.lk1f0 .s7lbl .w69bbjj{margin-right:auto}
.yf4qsnq .s7lbl .w69bbjj{margin-left:auto}
.yf4qsnq .s7lbl{text-align:right}
/* bottom positions */
.m6hl .s7lbl,.gukl8z .s7lbl{bottom:12px}
.m6hl .s7lbl .w69bbjj{margin-right:auto}
.gukl8z .s7lbl .w69bbjj{margin-left:auto}
.gukl8z .s7lbl{text-align:right}
/* center overlay at bottom of hero */
.omm6639d .s7lbl{bottom:16px}
.omm6639d .s7lbl .w69bbjj{margin:0 auto}

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

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

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

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

/* cards: mini bordered cards */
.wiky8nw6 .dzfk{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}
.wiky8nw6 .z47omcm::before{content:""}

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

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

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

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

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

/* ── Date background variants ── */
.mvqw{--date-bg:var(--accent-bg)}
.vbxr{--date-bg:var(--accent-bg-light)}
.p9396{--date-bg:transparent}

/* ── Date separator variants ── */
.wwe331 .z47omcm::before{content:""}
.m4qer .z47omcm::before{content:"•";opacity:.4}
.m4qer .dzfk + .dzfk::before{content:"•";margin-right:6px;opacity:.4}
.j1w0xm .z47omcm::before{content:"/";opacity:.35}
.j1w0xm .dzfk + .dzfk::before{content:"/";margin-right:6px;opacity:.35}
.f8pudbwt .z47omcm::before{content:"|";opacity:.3}
.f8pudbwt .dzfk + .dzfk::before{content:"|";margin-right:6px;opacity:.3}
.ngovpjh .z47omcm::before{content:"—";opacity:.3}
.ngovpjh .dzfk + .dzfk::before{content:"—";margin-right:6px;opacity:.3}
.c2lx23g .z47omcm::before{content:"◆";font-size:.5em;opacity:.35}
.c2lx23g .dzfk + .dzfk::before{content:"◆";font-size:.5em;margin-right:6px;opacity:.35}
.dhg4dxn .z47omcm::before{content:"·";opacity:.4}
.dhg4dxn .dzfk + .dzfk::before{content:"·";margin-right:6px;opacity:.4}
.bf8ru .z47omcm::before{content:"›";opacity:.4}
.bf8ru .dzfk + .dzfk::before{content:"›";margin-right:6px;opacity:.4}
.ponzm .z47omcm::before{content:"→";opacity:.35;font-size:.85em}
.ponzm .dzfk + .dzfk::before{content:"→";font-size:.85em;margin-right:6px;opacity:.35}


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

/* author box variants */
.vyc8i3 .n6f3c4vp{background:var(--surface-alt);border-radius:var(--radius, 8px);border:1px solid var(--border)}
.clgk .n6f3c4vp{border-top:3px solid var(--accent);padding-top:18px}
.rqb25xj .n6f3c4vp{border-left:3px solid var(--accent);border-radius:0}
.fliji8e .n6f3c4vp{padding:20px 0}

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

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


/* ── color scheme ── */
:root {
  --accent:          #c68fa1;
  --accent-light:    #f8bccf;
  --accent-pale:     #ffd9e3;
  --grad-start:      #502837;
  --grad-end:        #966475;
  --bg-page: #130d0e;
  --bg-surface: #130d0e;
  --bg-card: #191114;
  --bg-card-inner: #20171a;
  --bg-raised: #271d20;
  --bg-hover: #2f2226;
  --border: #534448;
  --border-alt: #827176;
  --border-section: #534448;
  --text-primary: #f6e0e5;
  --text-muted: #baa6ab;
  --text-body: #d0c3c6;
  --text-sub: #a79b9d;
  --text-faint: #72686a;
  --text-dim: #595052;
  --text-label: #8c8183;
  --text-value: #c2b6b8;
  --accent-bg:       #4b2433;
  --accent-bg-light: #582f3e;
  --bg-tip:        #1a2e1a;
  --bg-warning:    #2d1f0e;
  --bg-info:       #1a1f2e;
  --bg-pros:       #1a2e1a;
  --bg-cons:       #2d1a1a;
  --c-pros:        #6ee7b7;
  --c-cons:        #fca5a5;
  --c-pros-label:  #34d399;
  --c-tip-border:  #34d399;
  --c-warn-border: #f59e0b;
  --c-stars:       #f59e0b;
  --c-arrow:       #f59e0b;
  --c-tag-pay:     #6ee7b7;
}
:root { --logo-bg-opacity: 76%; }

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

.e3zfvj .gz5btr { font-size: 0; width: 1.2rem; flex-shrink: 0; }.e3zfvj .gz5btr::before {  content: ""; display: inline-block;  font-family: "Font Awesome 6 Free"; font-weight: 900;  font-size: 1.1rem; line-height: 1; }.e3zfvj .mbm811i2     .gz5btr::before { content: "";  color: var(--c-tip-border); }.e3zfvj .w6vyrxcl .gz5btr::before { content: ""; color: var(--c-warn-border); }.e3zfvj .t2637c    .gz5btr::before { content: ""; color: #60a5fa; }.xraxo .e3zfvj .mbm811i2     .gz5btr::before { color: #10b981; }.xraxo .e3zfvj .w6vyrxcl .gz5btr::before { color: #f43f5e; }.xraxo .e3zfvj .t2637c    .gz5btr::before { color: #a855f7; }.r4ru  .e3zfvj .mbm811i2     .gz5btr::before { color: #eab308; }.r4ru  .e3zfvj .w6vyrxcl .gz5btr::before { color: #ef4444; }.r4ru  .e3zfvj .t2637c    .gz5btr::before { color: #f97316; }.ow7csk  .e3zfvj .mbm811i2     .gz5btr::before { color: #38bdf8; }.ow7csk  .e3zfvj .w6vyrxcl .gz5btr::before { color: #818cf8; }.ow7csk  .e3zfvj .t2637c    .gz5btr::before { color: #2dd4bf; }.zehur3 .e3zfvj .gz5btr::before { color: var(--accent-light) !important; }

.wp0ccn .ltkovf88, .wp0ccn .ui2icn2 { min-height: 520px; }

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

.vjozllb .afupzn::after,.vjozllb .yj0f::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; }

.f4y3j::before { content: '|'; opacity: 0.3; }

.r90qz .dzfk::before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:5px;font-size:1em;opacity:.55}.r90qz .dzfk:first-of-type::before{content:"\f15b"}.r90qz .dzfk:last-of-type::before{content:"\f044"}