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

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

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

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

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

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

/* hero-flat: без фону, просто текст на page bg (WP-style) */
.p0knifo8 {
  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);
}
.p0knifo8 .krwn6w {
  width: 100%; max-width: 1100px; padding: 24px 24px;
}
.p0knifo8 .c6xmjt99 { color: var(--text-primary); text-shadow: none; }
.p0knifo8 .cadh { color: var(--text-muted); }
.p0knifo8 .huenlg { margin-top: 16px; }
.p0knifo8, .p0knifo8.ydddl8ka { min-height: auto !important; }
.p0knifo8.wh6yqn1p .krwn6w { text-align: center; }
.p0knifo8.df4pq61t   .krwn6w { text-align: left; }
/* flat hero: byline як звичайний текст, не оверлей */
.p0knifo8~.hzdwn{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}
.p0knifo8~.hzdwn .ywraml{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: градієнтний фон замість фото */
.q0fw6 {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}
/* hero_anim: shimmer — ледь помітний блиск по поверхні */
.v1tuiva .q0fw6,
.v1tuiva .qefekw {
  position: relative; overflow: hidden;
}
.v1tuiva .q0fw6::after,
.v1tuiva .qefekw::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 */
.a9zf .q0fw6,
.a9zf .qefekw {
  animation: hg-breathe 10s ease-in-out infinite;
}
@keyframes hg-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
/* hero_anim: grain — ледь помітна зернистість поверх градієнту */
.l9k1aq .q0fw6,
.l9k1aq .qefekw,
.l9k1aq .a68in5x4 .j9t858f {
  overflow: hidden;
}
.l9k1aq .q0fw6::after,
.l9k1aq .qefekw::after,
.l9k1aq .a68in5x4 .j9t858f::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 */
.cbw4ej .q0fw6,
.cbw4ej .qefekw {
  position: relative; overflow: hidden;
}
.cbw4ej .q0fw6::after,
.cbw4ej .qefekw::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); }
}
.cbw4ej .a68in5x4 .j9t858f {
  overflow: hidden;
}
.cbw4ej .a68in5x4 .j9t858f::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 — градієнт з'являється при завантаженні */
.tjcl .q0fw6,
.tjcl .qefekw,
.tjcl .a68in5x4 .j9t858f {
  animation: hg-fadein 1.2s ease-out both;
}
@keyframes hg-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* hero-bg з фото — overlay анімації */
.v1tuiva .a68in5x4 .j9t858f {
  overflow: hidden;
}
.v1tuiva .a68in5x4 .j9t858f::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;
}
.a9zf .a68in5x4 .j9t858f {
  animation: hg-breathe 10s ease-in-out infinite;
}

.q0fw6 .j9t858f {
  background: none;
}
.q0fw6 .c6xmjt99 { color: #fff; }
.q0fw6 .cadh { color: rgba(255,255,255,0.85); }
.q0fw6 .huenlg { background: #fff; color: var(--accent); }
.q0fw6 .huenlg:hover { opacity: 0.92; }

/* ── Hero anim: split layouts ─────────────────────────────────────────────── */
.v1tuiva .cq50qcqb { position: relative; overflow: hidden; }
.v1tuiva .cq50qcqb::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;
}
.a9zf .cq50qcqb {
  animation: hg-breathe 7s ease-in-out infinite;
}
.l9k1aq .cq50qcqb { position: relative; overflow: hidden; }
.l9k1aq .cq50qcqb::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;
}
.cbw4ej .cq50qcqb { position: relative; overflow: hidden; }
.cbw4ej .cq50qcqb::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;
}
.tjcl .cq50qcqb {
  animation: hg-fadein 1.2s ease-out both;
}


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

/* Split alignment — всередині text-колонки */
.cq50qcqb.wh6yqn1p .hd6085ll { align-items: center; text-align: center; }
.cq50qcqb.df4pq61t   .hd6085ll { align-items: flex-start; text-align: left; }

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


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

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

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

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

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

/* ── Hero: split-cards ────────────────────────────────────────────────────── */
.crip .p3wu {
  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);
}
.fnalmgn {
  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;
}
.fnalmgn:last-child { border-bottom: none; }
.fnalmgn:hover { background: rgba(255,255,255,0.14); }
.y2lnx { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.txzi { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.i1nxryq9 { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.up2n { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.f7fxox3 { font-size: 0.82rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gvjun { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lloufq { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); }
.lloufq small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }
.m6vg { font-size: 0.8rem; padding: 6px 14px; white-space: nowrap; }

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

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

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

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


@media (max-width: 700px) {
  .cq50qcqb { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .cq50qcqb .n54rsc6 { display: none !important; }
  .kfs7j .n54rsc6 { display: none !important; }
  .crip .p3wu { display: none !important; }
  .grjqjaqu .g6ti { display: none !important; }
  .hd6085ll  { padding: 36px 24px; }
  .cq50qcqb~.hzdwn,.czxtf~.hzdwn{max-width:100%;left:0;right:0;transform:none;padding:0 24px}
  /* cap hero height variants on mobile */
  .ydddl8ka, .cq50qcqb { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .c6xmjt99 { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  /* cards-top: hide on mobile */
  .rt7lc { display: none !important; }
  /* numbered: stack */
  .ouah0jz { flex-direction: column; align-items: center; }
  .neyd { width: 100%; max-width: 340px; }
}

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

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

/* rounded */
.vubh .q4k9        { border-radius: 16px; }
.vubh .a1quvfb  { border-radius: 16px; }

/* shadow */
.dtm60w3 .q4k9         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.dtm60w3 .a1quvfb   { border-radius: 8px; }


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

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

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

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

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

.fixxxqt .w5s29t9x:nth-child(even) .c08qfp8i .oj6lkqiv:nth-child(odd),
.np6q5e .w5s29t9x:nth-child(even) .c08qfp8i .oj6lkqiv:nth-child(odd)  { background: var(--bg-card); }
.fixxxqt .w5s29t9x:nth-child(even) .c08qfp8i .oj6lkqiv:nth-child(even),
.np6q5e .w5s29t9x:nth-child(even) .c08qfp8i .oj6lkqiv:nth-child(even) { background: var(--bg-card-inner); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.psapd47n .n083ug,
.psapd47n .o7bt9o21,
.psapd47n .dwfbg,
.psapd47n .lw5ug6ts { font-style: normal; color: var(--text-body); }

.gyg9t .n083ug,
.gyg9t .o7bt9o21 {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.gyg9t .dwfbg,
.gyg9t .lw5ug6ts {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

.wdqhv .n083ug,
.wdqhv .o7bt9o21,
.wdqhv .dwfbg,
.wdqhv .lw5ug6ts {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}
────────────────────────────────────────────────────────────────────────────── */

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

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

.eitqhm     .vlza { list-style-type: "● "; }
.f282h  .vlza { list-style-type: "■ "; }
.lz14 .vlza { list-style-type: "◆ "; }
.xubvvi    .vlza { list-style-type: "★ "; }

.eitqhm     .s5tt { list-style-type: "● "; }
.f282h  .s5tt { list-style-type: "■ "; }
.lz14 .s5tt { list-style-type: "◆ "; }
.xubvvi    .s5tt { list-style-type: "★ "; }

.eitqhm    .vlza li::marker, .eitqhm    .s5tt li::marker,
.f282h .vlza li::marker, .f282h .s5tt li::marker,
.lz14 .vlza li::marker, .lz14 .s5tt li::marker,
.xubvvi   .vlza li::marker, .xubvvi   .s5tt li::marker {
  color: var(--accent); font-size: 0.8em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

/* pill = solid but very rounded */
.wcpg1 .huenlg { border-radius: 50px; }
.wcpg1 .jwo6vr7  { border-radius: 50px; }
/* btn_pad */
.nx868n .huenlg { padding-left: 22px; padding-right: 22px; }
.nx868n .jwo6vr7  { padding-left: 12px; padding-right: 12px; }
.ijbt2 .huenlg { padding-left: 44px; padding-right: 44px; }
.ijbt2 .jwo6vr7  { padding-left: 24px; padding-right: 24px; }
.kyum .huenlg { padding-left: 56px; padding-right: 56px; }
.kyum .jwo6vr7  { padding-left: 32px; padding-right: 32px; }

/* ── btn_icon: SVG-іконки на .huenlg і .jwo6vr7 (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.v68kex6f   .huenlg::after, .v68kex6f   .jwo6vr7::after,
.xp5ft .huenlg::after, .xp5ft .jwo6vr7::after,
.htjsi    .huenlg::after, .htjsi    .jwo6vr7::after,
.ximgtk6    .huenlg::after, .ximgtk6    .jwo6vr7::after,
.k2ezw    .huenlg::after, .k2ezw    .jwo6vr7::after,
.d1rbfuh     .huenlg::after, .d1rbfuh     .jwo6vr7::after,
.r14aw39    .huenlg::after, .r14aw39    .jwo6vr7::after,
.vw07u1   .huenlg::after, .vw07u1   .jwo6vr7::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 — кожна іконка */
.v68kex6f .huenlg::after, .v68kex6f .jwo6vr7::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");
}
.xp5ft .huenlg::after, .xp5ft .jwo6vr7::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");
}
.htjsi .huenlg::after, .htjsi .jwo6vr7::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");
}
.ximgtk6 .huenlg::after, .ximgtk6 .jwo6vr7::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");
}
.k2ezw .huenlg::after, .k2ezw .jwo6vr7::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");
}
.d1rbfuh .huenlg::after, .d1rbfuh .jwo6vr7::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");
}
.r14aw39 .huenlg::after, .r14aw39 .jwo6vr7::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");
}
.vw07u1 .huenlg::after, .vw07u1 .jwo6vr7::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 ────────*/
.ffzktc7   .l0as6::after, .ffzktc7   .codm::after,
.g3h7kb .l0as6::after, .g3h7kb .codm::after,
.le0g    .l0as6::after, .le0g    .codm::after,
.s161qm9    .l0as6::after, .s161qm9    .codm::after,
.akt9kg2h    .l0as6::after, .akt9kg2h    .codm::after,
.f6hd     .l0as6::after, .f6hd     .codm::after,
.w61n5q    .l0as6::after, .w61n5q    .codm::after,
.gh8800   .l0as6::after, .gh8800   .codm::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;
}
.ffzktc7 .l0as6::after, .ffzktc7 .codm::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");
}
.g3h7kb .l0as6::after, .g3h7kb .codm::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");
}
.le0g .l0as6::after, .le0g .codm::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");
}
.s161qm9 .l0as6::after, .s161qm9 .codm::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");
}
.akt9kg2h .l0as6::after, .akt9kg2h .codm::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");
}
.f6hd .l0as6::after, .f6hd .codm::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");
}
.w61n5q .l0as6::after, .w61n5q .codm::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");
}
.gh8800 .l0as6::after, .gh8800 .codm::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 ─────────────────────────────────────────────────────────*/
.lo11y { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


.rdypixu {
  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 */
.rdypixu > [itemprop="item"] { display: contents; }
.rdypixu:hover { background: var(--bg-hover); }
.mcmbu7 {
  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 */
.f6n1 .mcmbu7 { background: #1a1a1a; }
.vcpsbo .mcmbu7 { background: rgba(128,128,128,.12); }
.spsgqq .mcmbu7 { background: var(--bg-raised); }
.leiizsm .mcmbu7 { background: transparent; padding: 0; }
.ohgn { max-height: 34px; max-width: 80px; object-fit: contain; }
.qh4ow63r { font-weight: 700; font-size: .85rem; color: var(--accent-light); }
.an1wpu { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; }
.nf1s3 { font-weight: 700; font-size: .88rem; color: var(--text-primary); flex-shrink: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kcpw { color: var(--accent); font-size: .8rem; letter-spacing: 1px; flex-shrink: 1; min-width: 0; }
.lj18 { display: flex; flex-direction: column; align-items: center; font-size: .78rem; flex: 1 1 0; min-width: 0; }
.q030sl68 { color: var(--text-label); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.pfnhnk { color: var(--text-value); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.q13v { margin-left: auto; flex-shrink: 0; white-space: nowrap; }
.q13v.jwo6vr7 { padding-left: 16px !important; padding-right: 16px !important; }
/* планшет / мобіль: 1 картка в ряд */
@media (max-width: 720px) {
  .lo11y { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .lo11y .rdypixu { flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px; }
  .lo11y .an1wpu { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
  .lo11y .mcmbu7 { width: 100%; min-width: unset; height: 52px; }
  .lo11y .ohgn { max-height: 40px; max-width: 110px; }
  .lo11y .nf1s3 { min-width: unset; text-align: center; white-space: normal; }
  .lo11y .lj18 { flex-direction: row; justify-content: space-between; width: 100%; border-top: 1px solid var(--border); padding-top: 5px; }
  .lo11y .q13v { width: 100%; text-align: center; margin-left: 0; }
  .fl5gsbse .rdypixu { row-gap: 8px !important; gap: 8px !important; }
}

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.skv80 {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.lro4f6 {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.dferv {
  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;
}
.dferv img { max-width: 80px; max-height: 50px; object-fit: contain; }
.zyyi0ur { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.okbx { flex: 1; }
.okbx h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.jv1jd3l { color: var(--c-stars); font-size: 1.1rem; }
.mekv8kdh { margin-bottom: 8px; }
.yr02b { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.bxihb6k::before   { content: "★ "; color: var(--accent); }
.e39g66ke::before { content: "↓ "; color: var(--accent); }
.ya9n78::before { content: "✦ "; color: var(--accent); }
.azu2y0 { flex-shrink: 0; }
.pjx1b711 img.hxoiy { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.y4bhf9ez { padding: 20px 24px; }
.ektu4 { color: var(--text-muted); margin-bottom: 16px; }
.efzium { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.ef2trp, .u6qs { list-style: none; font-size: 0.9rem; }
.ef2trp li { color: var(--c-pros); margin-bottom: 4px; }
.u6qs li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.ef2trp li::before { content: "✓"; margin-right: 5px; }
.u6qs li::before { content: "✗"; margin-right: 5px; }
.h77lvyt .ef2trp li::before { content: "→"; }
.h77lvyt .u6qs li::before { content: "–"; }
.sxll  .ef2trp li::before { content: "★"; }
.sxll  .u6qs li::before { content: "✕"; }
.qarrurk7    .ef2trp li::before { content: "◆"; }
.qarrurk7    .u6qs li::before { content: "▲"; }
.zzpmq9o  .ef2trp li::before { content: "▶"; }
.zzpmq9o  .u6qs li::before { content: "■"; }
.x8hlje { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.kuw2 { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.wd9z2z { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

/* ── Brand card (single brand, two-column hero) ─────────────────────────────*/
/* ═══════════════════════════════════════════════════════════════════════════
   BRAND CARD — shared tokens
   ═══════════════════════════════════════════════════════════════════════════ */
.oo5t {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.vjlxlk {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.vjlxlk img { max-width: 100%; max-height: 100%; object-fit: contain; }
.etrxtnb1 { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.a5e3 { display: flex; align-items: center; gap: 8px; }
.a5e3 .jv1jd3l { font-size: .95rem; }
.a5e3 strong { font-size: 1.1rem; color: var(--text); }
.qc41r52m { border-radius: 8px; overflow: hidden; }
.qc41r52m img { width: 100%; display: block; border-radius: 8px; }
.g34590 { text-align: center; flex-shrink: 0; }
.yzs0c { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.m3llh { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.npihdj { font-size: .88rem; font-weight: 600; color: var(--text); }
.obuvi .npihdj { font-size: 1.02rem; font-weight: 700; color: var(--accent); }
.oo5t .cx0to { gap: 10px; }
.oo5t .fqujc4f, .oo5t .wlj6l9 { padding: 12px; }
.oo5t .fqujc4f ul, .oo5t .wlj6l9 ul { margin: 4px 0 0; padding-left: 18px; }
.oo5t .fqujc4f li, .oo5t .wlj6l9 li { font-size: .85rem; margin-bottom: 3px; }
.tsb6yjy6 { font-size: .8rem; color: var(--text-muted); margin-top: 10px; }
.tsb6yjy6 strong { color: var(--text-secondary); }
.tsb6yjy6 .kuw2 { margin: 2px 4px 2px 0; }

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

/* ── LAYOUT 2: hero — full-width screenshot header ────────────────────────── */
.pxjn4a7g {
  position: relative; max-height: 240px; overflow: hidden;
}
.pxjn4a7g > img { width: 100%; display: block; object-fit: cover; min-height: 160px; }
.qkay {
  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;
}
.qkay .vjlxlk { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.qkay .etrxtnb1 { color: #fff; font-size: 1.25rem; }
.qkay .a5e3 strong { color: #fff; }
.qkay .a5e3 .jv1jd3l { filter: brightness(1.2); }
.qkay .g34590 { margin-left: auto; white-space: nowrap; }
.vzyh { flex: 1; }
.ed9tx {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-alt);
}
.ed9tx .g34590 { margin-left: auto; }
.na1di3yv { display: flex; flex-direction: column; gap: 16px; padding: 20px 24px; }
.mexmf .g5rag6v {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.mexmf .yzs0c {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.mexmf .obuvi { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .qkay { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .na1di3yv { padding: 16px; }
  .mexmf .yzs0c { min-width: 50%; }
}

/* ── LAYOUT 3: magazine — editorial 3-column ──────────────────────────────── */
.pcdyj {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.qnvhyvn { flex: 1; }
.qnvhyvn .etrxtnb1 { font-size: 1.3rem; }
.qf36e1 {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.qyutylv2 { padding: 16px; border-right: 1px solid var(--border-alt); }
.qyutylv2 .qc41r52m { height: 100%; }
.qyutylv2 .qc41r52m img { height: 100%; object-fit: cover; }
.sr7t9 { padding: 0; border-right: 1px solid var(--border-alt); }
.sr7t9 .g5rag6v { display: flex; flex-direction: column; }
.sr7t9 .yzs0c { border-bottom: 1px solid var(--border-alt); }
.sr7t9 .obuvi { background: var(--accent-bg); }
.xysrgwdh { padding: 16px; }
.xysrgwdh .cx0to { grid-template-columns: 1fr; }
.ki41cr3 {
  padding: 12px 24px; border-top: 1px solid var(--border-alt);
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .qf36e1 { grid-template-columns: 1fr; }
  .qyutylv2 { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .sr7t9 { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .pcdyj { flex-wrap: wrap; padding: 16px; }
}

/* ── LAYOUT 4: compact — header bar → screenshot → data ──────────────────── */
.jow2p3ua {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border-alt);
}
.aitaonu {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.aitaonu .vjlxlk { width: 72px; height: 50px; }
.aitaonu .etrxtnb1 { font-size: 1rem; white-space: nowrap; }
.ju0h2 { border-bottom: 1px solid var(--border-alt); max-height: 280px; overflow: hidden; }
.ju0h2 img { width: 100%; display: block; object-fit: cover; }
.uy6y46 {
  display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; overflow: hidden;
}
.ikxee .g5rag6v { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.ikxee .yzs0c { padding: 0; flex: 0 0 auto; gap: 6px; }
.ikxee .obuvi { display: none; }
.ikxee .cx0to { gap: 8px; }
.ikxee .fqujc4f, .ikxee .wlj6l9 { padding: 8px; }
@media (max-width: 480px) {
  .jow2p3ua { flex-direction: column; align-items: stretch; }
}

/* ── LAYOUT 8: mini — compact single-row bar for topic pages ─────────────── */
.ndb7bmz { padding: 0; }
.it198yh4 {
  display: flex; align-items: center; gap: 16px; padding: 12px 20px; flex-wrap: wrap;
}
.qihmze6k {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.qihmze6k .vjlxlk { width: 48px; height: 48px; }
.qihmze6k .etrxtnb1 { font-size: 0.95rem; font-weight: 700; white-space: nowrap; }
.qihmze6k .a5e3 { font-size: 0.8rem; }
.qihmze6k .a5e3 strong { font-size: 0.85rem; }
.p7n7 { flex: 1; min-width: 0; overflow: hidden; }
.ndb7bmz .g5rag6v {
  display: flex; flex-wrap: wrap; gap: 4px 14px;
}
.ndb7bmz .yzs0c { padding: 0; flex: 0 0 auto; gap: 4px; }
.ndb7bmz .m3llh { font-size: 0.7rem; }
.ndb7bmz .npihdj { font-size: 0.8rem; }
.ndb7bmz .obuvi .npihdj { font-size: 0.85rem; font-weight: 700; }
.ndb7bmz .g34590 .jwo6vr7 { padding: 8px 20px; font-size: 0.85rem; }
@media (max-width: 640px) {
  .it198yh4 { flex-direction: column; align-items: stretch; gap: 10px; }
  .ndb7bmz .g34590 { text-align: center; }
}

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

/* ── LAYOUT 6: scorecard — big score centerpiece ──────────────────────────── */
.h9fy3 {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
  border-bottom: 1px solid var(--border-alt);
}
.zaz6x43 {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; text-align: center;
}
.lacde {
  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;
}
.zw85ah0r { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.zw85ah0r .n1ymzu { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.lacde .jv1jd3l { font-size: .75rem; margin-top: 2px; }
.wi25 { padding: 12px; display: flex; align-items: center; flex: 1; }
.wi25 .qc41r52m { width: 100%; }
.r7s8 {
  padding: 0; border-bottom: 1px solid var(--border-alt);
}
.t2xxq87 .g5rag6v {
  display: flex; flex-wrap: wrap;
}
.t2xxq87 .yzs0c {
  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;
}
.t2xxq87 .yzs0c:last-child { border-right: none; }
.t2xxq87 .m3llh { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.t2xxq87 .obuvi { background: var(--accent-bg); }
.t5doi { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 720px) {
  .h9fy3 { grid-template-columns: 1fr; }
  .lacde { width: 100px; height: 100px; margin: 16px auto; }
  .zw85ah0r { font-size: 1.4rem; }
  .wi25 { justify-content: center; }
  .t2xxq87 .yzs0c { min-width: 50%; }
}

/* ── LAYOUT 7: stack — vertical full-width flow ──────────────────────────── */
.pfsq1 {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.ytou { max-height: 240px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.ytou img { width: 100%; display: block; object-fit: cover; }
.em6j { padding: 16px 24px; border-bottom: 1px solid var(--border-alt); }
.xanzoa .g5rag6v {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.xanzoa .yzs0c {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.xanzoa .obuvi {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.xanzoa .cx0to { margin: 0 24px; padding-top: 16px; }
.xanzoa .tsb6yjy6 { padding: 0 24px; }
.hl9hqj { padding: 16px 24px; border-top: 1px solid var(--border-alt); text-align: center; }
.hl9hqj .g34590 { display: inline-block; }
@media (max-width: 540px) {
  .pfsq1 { flex-wrap: wrap; padding: 14px 16px; }
  .em6j { padding: 12px 16px; }
  .xanzoa .cx0to { margin: 0 16px; }
  .xanzoa .tsb6yjy6 { padding: 0 16px; }
  .hl9hqj { padding: 12px 16px; }
}


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

/* grid: showcase в 2-col grid, review компактніший */
.k6gs .lo11y {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px;
}
.k6gs .lo11y .rdypixu:only-child {
  grid-column: 1 / -1; flex-direction: row; align-items: center; padding: 18px 24px; gap: 16px;
}
.k6gs .lo11y .rdypixu:only-child .an1wpu { flex-direction: row; width: auto; }
.k6gs .lo11y .rdypixu:only-child .mcmbu7 { width: 72px; height: 52px; min-width: 72px; }
.k6gs .lo11y .rdypixu:only-child .nf1s3 { text-align: left; }
.k6gs .lo11y .rdypixu:only-child .lj18 { flex-direction: row; width: auto; border-top: none; padding-top: 0; }
.k6gs .lo11y .rdypixu:only-child .q13v { width: auto; }
.k6gs .lo11y .rdypixu {
  flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px;
}
.k6gs .lo11y .an1wpu { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
.k6gs .lo11y .mcmbu7 { width: 100%; min-width: unset; height: 52px; }
.k6gs .lo11y .nf1s3 { min-width: unset; text-align: center; white-space: normal; }
.k6gs .lo11y .lj18 {
  flex-direction: row; justify-content: space-between;
  width: 100%; border-top: 1px solid var(--border); padding-top: 5px;
}
.k6gs .lo11y .q13v { width: 100%; text-align: center; margin-left: 0; }
@media (max-width: 640px) {
  .k6gs .lo11y .rdypixu:only-child { flex-direction: column; align-items: center; gap: 10px; padding: 16px; }
  .k6gs .lo11y .rdypixu:only-child .an1wpu { flex-direction: column; width: 100%; align-items: center; }
  .k6gs .lo11y .rdypixu:only-child .lj18 { flex-direction: column; width: 100%; border-top: 1px solid var(--border); padding-top: 8px; }
  .k6gs .lo11y .rdypixu:only-child .q13v { width: 100%; }
}
.k6gs .lro4f6 { gap: 14px; }

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.ebledph .q030sl68 {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.ebledph .pfnhnk {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.ebledph .kcpw { color: var(--accent); }
.ebledph .lro4f6 { background: var(--accent-bg); }
.ebledph .bxihb6k, .ebledph .e39g66ke, .ebledph .ya9n78 {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

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

/* compact: менші відступи всюди */
.itjq5e0z .rdypixu { padding: 8px 14px; gap: 12px; }
.itjq5e0z .mcmbu7 { height: 32px; min-width: 52px; }
.itjq5e0z .ohgn { max-height: 24px; }
.itjq5e0z .nf1s3 { font-size: 0.82rem; }
.itjq5e0z .lro4f6 { padding: 14px 18px; gap: 14px; }
.itjq5e0z .y4bhf9ez { padding: 14px 18px; }
.itjq5e0z .dferv { width: 70px; }
.itjq5e0z .okbx h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.fl5gsbse .lo11y {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.fl5gsbse .rdypixu {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); row-gap: 0; column-gap: 12px;
}
.fl5gsbse .rdypixu:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.fl5gsbse .kcpw,
.fl5gsbse .fwfwzw,
.fl5gsbse .qcazi4aa { border-left: 1px solid var(--border); padding-left: 10px; }
.fl5gsbse .nf1s3 { padding: 0 10px; }

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

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

/* ── casino-wide: високі горизонтальні картки з великим лого ───────────────*/
.lwn21 .lo11y { gap: 12px; }
.lwn21 .rdypixu {
  padding: 18px 24px; gap: 20px; border-radius: 12px;
  min-height: 80px;
}
.lwn21 .mcmbu7 {
  min-width: 90px; height: 64px; padding: 6px 12px; border-radius: 10px;
}
.lwn21 .ohgn { max-height: 52px; max-width: 120px; }
.lwn21 .nf1s3 { font-size: 1rem; }
.lwn21 .lj18 { font-size: .85rem; }
.lwn21 .pfnhnk { font-size: .9rem; }
.lwn21 .q13v.jwo6vr7 { padding: 10px 24px !important; font-size: .9rem; }

/* ── casino-jumbo: дуже великі картки, лого + інтерфейс скриншот ──────────*/
.moesytep .lo11y { gap: 16px; }
.moesytep .rdypixu {
  padding: 24px 28px; gap: 24px; border-radius: 14px;
  min-height: 100px; border-width: 2px;
}
.moesytep .mcmbu7 {
  min-width: 110px; height: 80px; padding: 8px 14px; border-radius: 12px;
  background: var(--bg-raised);
}
.moesytep .ohgn { max-height: 64px; max-width: 140px; }
.moesytep .nf1s3 { font-size: 1.1rem; font-weight: 800; }
.moesytep .kcpw { font-size: .95rem; letter-spacing: 2px; }
.moesytep .lj18 { font-size: .9rem; }
.moesytep .pfnhnk { font-size: .95rem; font-weight: 700; }
.moesytep .q030sl68 { font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; }
.moesytep .q13v.jwo6vr7 { padding: 12px 32px !important; font-size: .95rem; font-weight: 700; }

/* ── grid / compact: на мобілі допускаємо 2 колонки (картки досить вузькі) */
@media (max-width: 720px) {
  .k6gs .lo11y,
  .itjq5e0z .lo11y {
    grid-template-columns: 1fr 1fr;
  }
  .k6gs .lo11y .rdypixu:only-child,
  .itjq5e0z .lo11y .rdypixu:only-child {
    grid-column: 1 / -1;
  }
  .itjq5e0z .lo11y .rdypixu:only-child .mcmbu7 {
    height: 48px; min-width: 80px;
  }
  .itjq5e0z .lo11y .rdypixu:only-child .ohgn {
    max-height: 40px;
  }
}

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.pab5c .fwfwzw { flex: 1.8; }
.pab5c .fwfwzw .pfnhnk {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}
.pab5c .fwfwzw .q030sl68 { font-weight: 700; color: var(--text-primary); }
.pab5c .b96ywqfu,
.pab5c .hmkj,
.pab5c .lwrly0v { flex: 0.75; opacity: 0.65; }

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

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

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

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

/* score в оглядах — ховаємо зірки */
.qdgx8l2 .mekv8kdh .jv1jd3l,
.bz7f40nx .mekv8kdh .jv1jd3l,
.t9jc0 .mekv8kdh .jv1jd3l { display: none; }

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

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

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

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.w5s29t9x { margin-bottom: 0; }
.xee8 h2.my6q3u2k { color: var(--accent-light); border-color: var(--accent); }
.oaohg4 h2.my6q3u2k { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.ttkl .cjy5mq     { background: #052e16; border-color: #10b981; }
.ttkl .jryncty { background: #2d0a1e; border-color: #f43f5e; }
.ttkl .rcghow    { background: #1e1036; border-color: #a855f7; }
.ttkl .ppjr strong  { color: #f1f5f9; }
.ttkl .ppjr p       { color: #cbd5e1; }
.ttkl .qxrq1htq    .cjy5mq     .skmtkq::before,
.ttkl .ntwe  .cjy5mq     .skmtkq::before,
.ttkl .hht3  .cjy5mq     .skmtkq::before,
.ttkl .nw4t6ex .cjy5mq     .skmtkq::before { color: #10b981; }
.ttkl .qxrq1htq    .jryncty .skmtkq::before,
.ttkl .ntwe  .jryncty .skmtkq::before,
.ttkl .hht3  .jryncty .skmtkq::before,
.ttkl .nw4t6ex .jryncty .skmtkq::before { color: #f43f5e; }
.ttkl .qxrq1htq    .rcghow    .skmtkq::before,
.ttkl .ntwe  .rcghow    .skmtkq::before,
.ttkl .hht3  .rcghow    .skmtkq::before,
.ttkl .nw4t6ex .rcghow    .skmtkq::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.xuzdp .cjy5mq     { background: #2d2000; border-color: #eab308; }
.xuzdp .jryncty { background: #2d0b0b; border-color: #ef4444; }
.xuzdp .rcghow    { background: #2d1600; border-color: #f97316; }
.xuzdp .ppjr strong  { color: #f1f5f9; }
.xuzdp .ppjr p       { color: #cbd5e1; }
.xuzdp .qxrq1htq    .cjy5mq     .skmtkq::before,
.xuzdp .ntwe  .cjy5mq     .skmtkq::before,
.xuzdp .hht3  .cjy5mq     .skmtkq::before,
.xuzdp .nw4t6ex .cjy5mq     .skmtkq::before { color: #eab308; }
.xuzdp .qxrq1htq    .jryncty .skmtkq::before,
.xuzdp .ntwe  .jryncty .skmtkq::before,
.xuzdp .hht3  .jryncty .skmtkq::before,
.xuzdp .nw4t6ex .jryncty .skmtkq::before { color: #ef4444; }
.xuzdp .qxrq1htq    .rcghow    .skmtkq::before,
.xuzdp .ntwe  .rcghow    .skmtkq::before,
.xuzdp .hht3  .rcghow    .skmtkq::before,
.xuzdp .nw4t6ex .rcghow    .skmtkq::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.orpmq .cjy5mq     { background: #0c1a2e; border-color: #38bdf8; }
.orpmq .jryncty { background: #12103a; border-color: #818cf8; }
.orpmq .rcghow    { background: #0a2020; border-color: #2dd4bf; }
.orpmq .ppjr strong  { color: #f1f5f9; }
.orpmq .ppjr p       { color: #cbd5e1; }
.orpmq .qxrq1htq    .cjy5mq     .skmtkq::before,
.orpmq .ntwe  .cjy5mq     .skmtkq::before,
.orpmq .hht3  .cjy5mq     .skmtkq::before,
.orpmq .nw4t6ex .cjy5mq     .skmtkq::before { color: #38bdf8; }
.orpmq .qxrq1htq    .jryncty .skmtkq::before,
.orpmq .ntwe  .jryncty .skmtkq::before,
.orpmq .hht3  .jryncty .skmtkq::before,
.orpmq .nw4t6ex .jryncty .skmtkq::before { color: #818cf8; }
.orpmq .qxrq1htq    .rcghow    .skmtkq::before,
.orpmq .ntwe  .rcghow    .skmtkq::before,
.orpmq .hht3  .rcghow    .skmtkq::before,
.orpmq .nw4t6ex .rcghow    .skmtkq::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.fchedizy .cjy5mq     { background: var(--accent-bg); border-color: var(--accent); }
.fchedizy .jryncty { background: var(--accent-bg-light); border-color: var(--accent-light); }
.fchedizy .rcghow    { background: var(--accent-bg); border-color: var(--accent-pale); }
.fchedizy .qxrq1htq    .skmtkq::before,
.fchedizy .ntwe  .skmtkq::before,
.fchedizy .hht3  .skmtkq::before,
.fchedizy .nw4t6ex .skmtkq::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.sj7o .fqujc4f ul li,
.sj7o .ef2trp li         { color: #4ade80; }
.sj7o .fqujc4f .uwhqekv { color: #22c55e; }
.sj7o .wlj6l9 ul li,
.sj7o .u6qs li         { color: #f87171; }
.sj7o .wlj6l9 .nm3b0pd { color: #ef4444; }

/* blue: синій pros / amber cons */
.x50u1l9n .fqujc4f { background: #0c1a2e; }
.x50u1l9n .wlj6l9 { background: #2d1f00; }
.x50u1l9n .fqujc4f .uwhqekv { color: #93c5fd; }
.x50u1l9n .wlj6l9 .nm3b0pd { color: #fcd34d; }
.x50u1l9n .fqujc4f ul li,
.x50u1l9n .ef2trp li            { color: #bfdbfe; }
.x50u1l9n .wlj6l9 ul li,
.x50u1l9n .u6qs li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.aoengfa9 .fqujc4f { background: var(--accent-bg); }
.aoengfa9 .wlj6l9 { background: var(--accent-bg-light); }
.aoengfa9 .fqujc4f .uwhqekv { color: var(--accent-pale); }
.aoengfa9 .wlj6l9 .nm3b0pd { color: var(--accent-light); }
.aoengfa9 .fqujc4f ul li,
.aoengfa9 .ef2trp li          { color: var(--text-body); }
.aoengfa9 .wlj6l9 ul li,
.aoengfa9 .u6qs li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.gtgqm .uwhqekv::before { content: "✓ "; }
.gtgqm .nm3b0pd::before { content: "✗ "; }

/* arrows: → / ← */
.h77lvyt .uwhqekv::before { content: "→ "; }
.h77lvyt .nm3b0pd::before { content: "← "; }

/* marks: ★ / ✕ */
.sxll .uwhqekv::before { content: "★ "; }
.sxll .nm3b0pd::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.qarrurk7 .uwhqekv::before { content: "◆ "; }
.qarrurk7 .nm3b0pd::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.a5xm .ppjr { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.a5xm .cjy5mq     { border-top-color: var(--c-tip-border); }
.a5xm .jryncty { border-top-color: var(--c-warn-border); }
.a5xm .rcghow    { border-top-color: #60a5fa; }

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

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

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

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

.qxrq1htq .skmtkq,
.ntwe .skmtkq,
.hht3 .skmtkq,
.nw4t6ex .skmtkq { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.qxrq1htq .skmtkq::before,
.ntwe .skmtkq::before,
.hht3 .skmtkq::before,
.nw4t6ex .skmtkq::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.qxrq1htq .cjy5mq     .skmtkq::before { content: "✦"; color: var(--c-tip-border); }
.qxrq1htq .jryncty .skmtkq::before { content: "▲"; color: var(--c-warn-border); }
.qxrq1htq .rcghow    .skmtkq::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.ntwe .cjy5mq     .skmtkq::before { content: "★"; color: var(--c-tip-border); }
.ntwe .jryncty .skmtkq::before { content: "◆"; color: var(--c-warn-border); }
.ntwe .rcghow    .skmtkq::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.hht3 .cjy5mq     .skmtkq::before { content: "▶"; color: var(--c-tip-border); }
.hht3 .jryncty .skmtkq::before { content: "■"; color: var(--c-warn-border); }
.hht3 .rcghow    .skmtkq::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.nw4t6ex .cjy5mq     .skmtkq::before { content: "→"; color: var(--c-tip-border); }
.nw4t6ex .jryncty .skmtkq::before { content: "⬥"; color: var(--c-warn-border); }
.nw4t6ex .rcghow    .skmtkq::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.gtavaz10 .r5yjr5f .oj6lkqiv,
.gtavaz10 .c08qfp8i .oj6lkqiv  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.gtavaz10 .oauu                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.gtavaz10 .rdypixu                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.gtavaz10 .skv80            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.gtavaz10 .za10k8a          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.gtavaz10 .ulcd                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.w3qhoe6k .r5yjr5f .oj6lkqiv,
.w3qhoe6k .c08qfp8i .oj6lkqiv,
.w3qhoe6k .oauu,
.w3qhoe6k .rdypixu,
.w3qhoe6k .skv80,
.w3qhoe6k .za10k8a,
.w3qhoe6k .ulcd,
.w3qhoe6k .jnxl06i .ppjr { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.zb3x86g   body, .zb3x86g   { font-size: 0.9rem; }
.zb3x86g   .hx3ym, .zb3x86g .dwfbg, .zb3x86g .lw5ug6ts,
.zb3x86g   .n083ug, .zb3x86g .o7bt9o21 { font-size: 0.9rem; }
.zb3x86g   .vlza, .zb3x86g .hoep4d { font-size: 0.9rem; }

.f3kjtb06   .hx3ym, .f3kjtb06 .dwfbg, .f3kjtb06 .lw5ug6ts,
.f3kjtb06   .n083ug, .f3kjtb06 .o7bt9o21 { font-size: 0.9rem; }
.f3kjtb06   .vlza, .f3kjtb06 .hoep4d { font-size: 0.9rem; }

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

.ma7q   .hx3ym, .ma7q .dwfbg, .ma7q .lw5ug6ts,
.ma7q   .n083ug, .ma7q .o7bt9o21 { font-size: 1.08rem; }
.ma7q   .vlza, .ma7q .hoep4d { font-size: 1.05rem; }
.ma7q   .bgdp { font-size: 0.97rem; }

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

/* large */
.d3f4b4 .c6xmjt99      { font-size: 3.2rem; }
.d3f4b4 h2.my6q3u2k { font-size: 1.9rem; }
.d3f4b4 h3.dad03j     { font-size: 1.4rem; }

/* display */
.ca71d6 .c6xmjt99      { font-size: 3.8rem; }
.ca71d6 h2.my6q3u2k { font-size: 2.2rem; }
.ca71d6 h3.dad03j     { font-size: 1.6rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.ro78319v   .w5s29t9x + .w5s29t9x::before,
.q8g1  .w5s29t9x + .w5s29t9x::before,
.el7kmnn   .w5s29t9x + .w5s29t9x::before,
.c93af   .w5s29t9x + .w5s29t9x::before,
.dlrbcb   .w5s29t9x + .w5s29t9x::before,
.mu23y9w .w5s29t9x + .w5s29t9x::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}

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

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

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

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

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

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

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

/* section_bg=stripe: парні секції мають bg-card */
.np6q5e .m4famwvc .w5s29t9x:nth-child(even)::before,
.np6q5e .i9rs44hn .w5s29t9x:nth-child(even)::before,
.np6q5e .yuob1 .w5s29t9x:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.m4famwvc .w5s29t9x + .w5s29t9x::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 гребені */
.i9rs44hn .w5s29t9x + .w5s29t9x::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: глибока дуга */
.yuob1 .w5s29t9x + .w5s29t9x::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 у формі хвилі */
.p2as93xf .a68in5x4,
.noklwes .a68in5x4,
.n1snqwt .a68in5x4 { overflow: hidden; }

/* wave: додатковий простір щоб хвиля не закривала CTA */
.p2as93xf .krwn6w,
.noklwes .krwn6w { margin-bottom: 60px; }
.n1snqwt .krwn6w { margin-bottom: 70px; }
.p2as93xf .hd6085ll,
.noklwes .hd6085ll { padding-bottom: 60px; }
.n1snqwt .hd6085ll { padding-bottom: 70px; }

.p2as93xf .a68in5x4::before,
.noklwes .a68in5x4::before,
.n1snqwt .a68in5x4::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 гребінь) */
.p2as93xf .a68in5x4::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 гребені */
.noklwes .a68in5x4::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: глибока дуга */
.n1snqwt .a68in5x4::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 */
.zo8b .a68in5x4:not(.q0fw6) .j9t858f { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }
.e1xg .a68in5x4:not(.q0fw6) .j9t858f { background: linear-gradient(45deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 100%); }
.jiwm  .a68in5x4:not(.q0fw6) .j9t858f { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }
.c1g3mt  .a68in5x4:not(.q0fw6) .j9t858f { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }

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

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

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

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

/* hg-solid: суцільний колір без градієнту */
.yf52t .q0fw6 { background: var(--accent); }
.yf52t .q0fw6 .j9t858f { background: none; }
.yf52t .qefekw { background: var(--accent); }
.yf52t .cq50qcqb { background: var(--accent-bg); }
.yf52t .a68in5x4:not(.q0fw6) .j9t858f { background: rgba(0,0,0,0.6); }


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

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

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

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

/* Великі блочні елементи — clear float щоб не стискались */
.fy3ap .t2sh,
.fy3ap .lo11y,
.bh1w .t2sh,
.bh1w .lo11y,
.nshx .t2sh,
.nshx .lo11y { clear: both; }

/* Маркери списків не мають налазити на float-картинку */
.fy3ap .vlza,
.fy3ap .hoep4d,
.bh1w .vlza,
.bh1w .hoep4d,
.nshx .vlza,
.nshx .hoep4d { overflow: hidden; }


@media (max-width: 640px) {
  .fy3ap .q4k9,
  .bh1w .q4k9,
  .nshx .q4k9 { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1100px (задано в .h2g95v52, .rxv31cq, .u49gr9l) */
.rdil30d3 .h2g95v52,
.rdil30d3 .rxv31cq,
.rdil30d3 .u49gr9l  { max-width: 1100px; }
.rdil30d3 { --content-mw: 1100px; }
.tr7na .h2g95v52,
.tr7na .rxv31cq,
.tr7na .u49gr9l  { max-width: 1200px; }
.tr7na { --content-mw: 1200px; }
.ijfz .h2g95v52,
.ijfz .rxv31cq,
.ijfz .u49gr9l  { max-width: 1320px; }
.ijfz { --content-mw: 1320px; }

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

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

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

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

/* content-width: above — обидва класи на <body>, тому без пробілу */
.rdil30d3.cvg1 .a4wcw { max-width: 1100px; }
.tr7na.cvg1 .a4wcw { max-width: 1200px; }
.ijfz.cvg1 .a4wcw { max-width: 1320px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.rdil30d3 .pm4u { max-width: 1100px; }
.tr7na .pm4u { max-width: 1200px; }
.ijfz .pm4u { max-width: 1320px; }

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

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.zilx0 { font-weight: 300; }
.zilx0 h2.my6q3u2k { font-weight: 600; }
.zilx0 h3.dad03j     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.ickn4qxh { font-weight: 500; }
.ickn4qxh h2.my6q3u2k { font-weight: 800; }
.ickn4qxh h3.dad03j     { font-weight: 700; }
/* fw-600: semibold */
.q2lk { font-weight: 600; }
.q2lk h2.my6q3u2k { font-weight: 900; }
.q2lk h3.dad03j     { font-weight: 800; }
.q2lk .ppjr strong,
.q2lk .ppjr strong { font-weight: 600; }
/* .q2lk .dwfbg, .q2lk .n083ug { font-weight: 600; } */

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

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

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

/* minimal */
.r1glgyj1 .u49gr9l { text-align: center; }
.r1glgyj1 .xt559 { justify-content: center; margin-bottom: 16px; }
.r1glgyj1 .l14u5o5i { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .u49gr9l { padding-left: 16px; padding-right: 16px; }
  .kxzbu .u49gr9l { padding: 20px 16px; }
  .xt559 { gap: 4px 12px; }
  .l14u5o5i { font-size: 0.78rem; }
}


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


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

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

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

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

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

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

/* dark: завжди темний, незалежно від теми */
.cyl6k2 .vdd54      { background: #0d1117; border-bottom-color: #21262d; }
.cyl6k2 .m4tds3b { color: var(--accent-light); }
.cyl6k2 .tlc10 { --msep-color: #8b949e; }
.cyl6k2 .tlc10 a { color: #8b949e; }
.cyl6k2 .tlc10 a:hover { color: var(--accent-light); }
.cyl6k2 .d7klep { color: #8b949e; }
.cyl6k2 .p6rn { background: #0d1117; border-top-color: #21262d; }
.cyl6k2 .l14u5o5i,
.cyl6k2 .zofzff { color: #6e7681; }
.cyl6k2 .ge5ryse a, .cyl6k2 .xt559 a,
.cyl6k2 .iic1b2 a, .cyl6k2 .dd34y a,
.cyl6k2 .xe917u a, .cyl6k2 .xiwnwu { color: #8b949e; }
.cyl6k2 .ge5ryse a:hover, .cyl6k2 .xt559 a:hover,
.cyl6k2 .iic1b2 a:hover, .cyl6k2 .dd34y a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .cyl6k2 .tlc10 { background: #0d1117; border-top-color: #21262d; }
  .cyl6k2 .tlc10 li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.gv185 .vdd54      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.gv185 .m4tds3b { color: var(--accent); }
.gv185 .tlc10 { --msep-color: #475569; }
.gv185 .tlc10 a { color: #475569; }
.gv185 .tlc10 a:hover { color: var(--accent); }
.gv185 .d7klep { color: #64748b; }
.gv185 .p6rn { background: #f0f4f8; border-top-color: #cbd5e1; }
.gv185 .l14u5o5i,
.gv185 .zofzff { color: #64748b; }
.gv185 .ge5ryse a, .gv185 .xt559 a,
.gv185 .iic1b2 a, .gv185 .dd34y a,
.gv185 .xe917u a, .gv185 .xiwnwu { color: #374151; }
.gv185 .ge5ryse a:hover, .gv185 .xt559 a:hover,
.gv185 .iic1b2 a:hover, .gv185 .dd34y a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .gv185 .tlc10 { background: #f0f4f8; border-top-color: #cbd5e1; }
  .gv185 .tlc10 li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.a0v63 .vdd54      { background: var(--accent); border-bottom-color: var(--accent-light); }
.a0v63 .m4tds3b { color: #fff; }
.a0v63 .tlc10 { --msep-color: rgba(255,255,255,0.82); }
.a0v63 .tlc10 a { color: rgba(255,255,255,0.82); }
.a0v63 .tlc10 a:hover { color: #fff; }
.a0v63 .d7klep { color: rgba(255,255,255,0.9); }
.a0v63 .e60m27 a { color: var(--text-primary) !important; }
.a0v63 .e60m27 a:hover { color: var(--accent) !important; }
.a0v63 .p6rn { background: var(--accent); border-top-color: var(--accent-light); }
.a0v63 .l14u5o5i,
.a0v63 .zofzff { color: rgba(255,255,255,0.72); }
.a0v63 .ge5ryse a, .a0v63 .xt559 a,
.a0v63 .iic1b2 a, .a0v63 .dd34y a,
.a0v63 .xe917u a, .a0v63 .xiwnwu { color: rgba(255,255,255,0.82); }
.a0v63 .ge5ryse a:hover, .a0v63 .xt559 a:hover,
.a0v63 .iic1b2 a:hover, .a0v63 .dd34y a:hover { color: #fff; }
@media (max-width: 640px) {
  .a0v63 .tlc10 { background: var(--accent); border-top-color: var(--accent-light); }
  .a0v63 .tlc10 li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.mu81xs .vdd54 {
  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);
}
.mu81xs .p6rn {
  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) {
  .mu81xs .tlc10 {
    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 */
.oyk8c .ztwsl { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.udut1lpw .ztwsl { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.ad2vde .ztwsl { min-height: 72px; height: auto; }
.mk50b1 .ztwsl { min-height: 84px; height: auto; }

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

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


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

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.g03e, .bksx6ph5 {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cdg07ac .g03e,
.cdg07ac .bksx6ph5 { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.ejt5 .g03e,
.ejt5 .bksx6ph5 { 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; }
.cjccu .g03e,
.cjccu .bksx6ph5 { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.kz25q2 .g03e,
.kz25q2 .bksx6ph5 { 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 */
.tkhm0   .tlc10 a { font-weight: 500; }
.bqww0a6 .tlc10 a { font-weight: 600; }
.f527     .tlc10 a { font-weight: 700; }
.hp78yp0    .tlc10 a { font-weight: 800; letter-spacing: 0.01em; }

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

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .rh7i64fd .d7klep,
  .netzbllc .d7klep,
  .y0fz2r3 .d7klep,
  .fkah .d7klep,
  .ggjc .d7klep {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .rh7i64fd .d7klep::before,
  .netzbllc .d7klep::before,
  .y0fz2r3 .d7klep::before,
  .fkah .d7klep::before,
  .ggjc .d7klep::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .rh7i64fd .d7klep::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 лінії рівні */
  .netzbllc .d7klep::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% */
  .y0fz2r3 .d7klep::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% */
  .fkah .d7klep::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% */
  .ggjc .d7klep::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) {
  .whpa07x .d7klep {
    padding: 5px 14px;
  }
  .whpa07x .tlc10 {
    left: auto; right: 12px; top: 54px;
    width: auto; min-width: 180px;
    border-radius: 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    padding: 6px 0;
  }
  .whpa07x .tlc10 li a {
    border-bottom: none; padding: 10px 22px;
  }
  .whpa07x .tlc10 li a:hover { background: var(--bg-raised); }
  .whpa07x .zenoknz,
  .rngklr .zenoknz,
  .a6v4sywo .zenoknz { background: none; backdrop-filter: none; -webkit-backdrop-filter: none; pointer-events: none; }
}

/* drawer: висувається з правого боку ───────────────────────────────────── */
@media (max-width: 640px) {
  .ptyaz0s .d7klep {
    padding: 5px 10px;
  }
  .ptyaz0s .tlc10 {
    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);
  }
  .ptyaz0s .tlc10.hb5ldgs { transform: translateX(0); }
  .ptyaz0s .tlc10 li a {
    padding: 14px 28px; font-size: 1rem; border-bottom: 1px solid var(--border);
  }
  .ptyaz0s .tlc10 li:last-child a { border-bottom: none; }
  .a0v63 .tlc10,
  .cyl6k2 .tlc10 { background: var(--accent) !important; }
  .a0v63 .tlc10 li a,
  .cyl6k2 .tlc10 li a { color: rgba(255,255,255,0.82) !important; border-bottom-color: rgba(255,255,255,0.2) !important; }
}

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

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .j5dd .d7klep {
    padding: 5px 10px;
  }
  .j5dd .tlc10 {
    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;
  }
  .j5dd .tlc10.hb5ldgs { opacity: 1; pointer-events: auto; }
  .j5dd .tlc10 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) {
  .fs2y     .d7klep { border-radius: 0 !important; }
  .erq19v   .d7klep { border-radius: 8px !important; }
  .gw3t .d7klep { border-radius: 50% !important; }
  .dk2v5p5   .d7klep { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .kcpw / .jv1jd3l) */
.zwnkgtz    .kcpw, .zwnkgtz    .jv1jd3l { color: #f59e0b; }
.u9mmrab      .kcpw { font-size: 1rem; letter-spacing: 1.5px; }
.u9mmrab      .jv1jd3l   { font-size: 1.35rem; }
.s8cc    .kcpw, .s8cc    .jv1jd3l { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.eyqc4pw     .kcpw, .eyqc4pw     .jv1jd3l { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.vgwfw .kcpw, .vgwfw .jv1jd3l { color: var(--accent); letter-spacing: 2px; }
.zqex421   .kcpw, .zqex421   .jv1jd3l { color: #e91e63; letter-spacing: 2px; }
.g2f6  .kcpw, .g2f6  .jv1jd3l { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.jws9hn0t     .kcpw, .jws9hn0t     .jv1jd3l { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ── Byline slots — position control ── */
.bs149{display:none}
.bs149:empty,.ywraml:empty{display:none}
.sqr2{position:relative;overflow:visible}

/* hero slot — shown for all hero positions */
.mxlcsp .hzdwn,.w84f .hzdwn,
.f2u8o .hzdwn,.qodac7 .hzdwn,
.q23ho9 .hzdwn,.i5uab1n .hzdwn{display:block}
.r56e .w3z7w{display:block}

/* shared overlay: centered container matching hero-content width (always 1100px) */
.mxlcsp .hzdwn,.w84f .hzdwn,
.f2u8o .hzdwn,.qodac7 .hzdwn,
.q23ho9 .hzdwn{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 */
.mxlcsp .hzdwn .ywraml,.w84f .hzdwn .ywraml,
.f2u8o .hzdwn .ywraml,.qodac7 .hzdwn .ywraml,
.q23ho9 .hzdwn .ywraml{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 */
.mxlcsp .h55p7k,.w84f .h55p7k,
.f2u8o .h55p7k,.qodac7 .h55p7k,
.q23ho9 .h55p7k{background:transparent!important;border:none!important;padding:0;border-radius:0;color:inherit!important}
/* top positions */
.mxlcsp .hzdwn,.w84f .hzdwn{top:12px}
.mxlcsp .hzdwn .ywraml{margin-right:auto}
.w84f .hzdwn .ywraml{margin-left:auto}
.w84f .hzdwn{text-align:right}
/* bottom positions */
.f2u8o .hzdwn,.qodac7 .hzdwn{bottom:12px}
.f2u8o .hzdwn .ywraml{margin-right:auto}
.qodac7 .hzdwn .ywraml{margin-left:auto}
.qodac7 .hzdwn{text-align:right}
/* center overlay at bottom of hero */
.q23ho9 .hzdwn{bottom:16px}
.q23ho9 .hzdwn .ywraml{margin:0 auto}

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

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

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

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

/* cards: mini bordered cards */
.oijxvw .h55p7k{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}
.oijxvw .e7n9lin::before{content:""}

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

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

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

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

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

/* ── Date background variants ── */
.iez3kihc{--date-bg:var(--accent-bg)}
.ny2e{--date-bg:var(--accent-bg-light)}
.ikx8zsa{--date-bg:transparent}

/* ── Date separator variants ── */
.bsj6m .e7n9lin::before{content:""}
.ol6xl837 .e7n9lin::before{content:"•";opacity:.4}
.ol6xl837 .h55p7k + .h55p7k::before{content:"•";margin-right:6px;opacity:.4}
.ttotn4q6 .e7n9lin::before{content:"/";opacity:.35}
.ttotn4q6 .h55p7k + .h55p7k::before{content:"/";margin-right:6px;opacity:.35}
.r2qhf .e7n9lin::before{content:"|";opacity:.3}
.r2qhf .h55p7k + .h55p7k::before{content:"|";margin-right:6px;opacity:.3}
.buwxaku .e7n9lin::before{content:"—";opacity:.3}
.buwxaku .h55p7k + .h55p7k::before{content:"—";margin-right:6px;opacity:.3}
.epq2lp .e7n9lin::before{content:"◆";font-size:.5em;opacity:.35}
.epq2lp .h55p7k + .h55p7k::before{content:"◆";font-size:.5em;margin-right:6px;opacity:.35}
.cfhlfpj .e7n9lin::before{content:"·";opacity:.4}
.cfhlfpj .h55p7k + .h55p7k::before{content:"·";margin-right:6px;opacity:.4}
.rqe3ma .e7n9lin::before{content:"›";opacity:.4}
.rqe3ma .h55p7k + .h55p7k::before{content:"›";margin-right:6px;opacity:.4}
.sr30qy .e7n9lin::before{content:"→";opacity:.35;font-size:.85em}
.sr30qy .h55p7k + .h55p7k::before{content:"→";font-size:.85em;margin-right:6px;opacity:.35}


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

/* author box variants */
.jzrj5jpt .n6wjj5o5{background:var(--surface-alt);border-radius:var(--radius, 8px);border:1px solid var(--border)}
.ld642vk .n6wjj5o5{border-top:3px solid var(--accent);padding-top:18px}
.ty887y43 .n6wjj5o5{border-left:3px solid var(--accent);border-radius:0}
.h0qf5 .n6wjj5o5{padding:20px 0}

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

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


/* ── color scheme ── */
:root {
  --accent:          #635a19;
  --accent-light:    #988c46;
  --accent-pale:     #cfc276;
  --grad-start:      #beb267;
  --grad-end:        #f2e494;
  --bg-page: #e0dac7;
  --bg-surface: #fef9ed;
  --bg-card: #f9f3e5;
  --bg-card-inner: #f4eedd;
  --bg-raised: #eee8d7;
  --bg-hover: #e9e2cf;
  --border: #b7b2a0;
  --border-alt: #7f7b6a;
  --border-section: #b7b2a0;
  --text-primary: #353325;
  --text-muted: #635f50;
  --bg-page:        #f8f9fa;
  --bg-surface:     #ffffff;
  --bg-card:        #ffffff;
  --bg-card-inner:  #f3f4f6;
  --bg-raised:      #eef0f2;
  --bg-hover:       #f3f4f6;
  --border:         #e5e7eb;
  --border-alt:     #d1d5db;
  --border-section: #e5e7eb;
  --text-body: #323029;
  --text-sub: #49473f;
  --text-faint: #6d6a61;
  --text-dim: #949087;
  --text-label: #615e55;
  --text-value: #3d3b34;
  --accent-bg:       #f2e494;
  --accent-bg-light: #e3d687;
  --bg-tip:        #f0fdf4;
  --bg-warning:    #fffbeb;
  --bg-info:       #eff6ff;
  --bg-pros:       #f0fdf4;
  --bg-cons:       #fef2f2;
  --c-pros:        #15803d;
  --c-cons:        #b91c1c;
  --c-pros-label:  #16a34a;
  --c-tip-border:  #059669;
  --c-warn-border: #d97706;
  --c-stars:       #b45309;
  --c-arrow:       #d97706;
  --c-tag-pay:     #15803d;
}
:root { --logo-bg-opacity: 76%; }

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

.itlywk .ydddl8ka, .itlywk .cq50qcqb { min-height: 420px; }

.r7oksn .huenlg::after, .r7oksn .jwo6vr7::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; }

.von3x .l0as6::after,.von3x .codm::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; }

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

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