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

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

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

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

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

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

/* hero-flat: без фону, просто текст на page bg (WP-style) */
.re7nlj5j {
  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);
}
.re7nlj5j .k2kgly1y {
  width: 100%; max-width: 1100px; padding: 24px 24px;
}
.re7nlj5j .bvmq { color: var(--text-primary); text-shadow: none; }
.re7nlj5j .qcbn { color: var(--text-muted); }
.re7nlj5j .dtvrgq { margin-top: 16px; }
.re7nlj5j, .re7nlj5j.lnqcw26v { min-height: auto !important; }
.re7nlj5j.s9kq .k2kgly1y { text-align: center; }
.re7nlj5j.zz0r0x7j   .k2kgly1y { text-align: left; }
/* flat hero: byline як звичайний текст, не оверлей */
.re7nlj5j~.vyj0{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}
.re7nlj5j~.vyj0 .vpk5iud{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: градієнтний фон замість фото */
.v3nf2 {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}
/* hero_anim: shimmer — ледь помітний блиск по поверхні */
.g3b7ae .v3nf2,
.g3b7ae .x52ochf4 {
  position: relative; overflow: hidden;
}
.g3b7ae .v3nf2::after,
.g3b7ae .x52ochf4::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 */
.z6ft .v3nf2,
.z6ft .x52ochf4 {
  animation: hg-breathe 10s ease-in-out infinite;
}
@keyframes hg-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
/* hero_anim: grain — ледь помітна зернистість поверх градієнту */
.vbgh .v3nf2,
.vbgh .x52ochf4,
.vbgh .hde0kh .c40nmzg {
  position: relative; overflow: hidden;
}
.vbgh .v3nf2::after,
.vbgh .x52ochf4::after,
.vbgh .hde0kh .c40nmzg::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 */
.tp8km .v3nf2,
.tp8km .x52ochf4 {
  position: relative; overflow: hidden;
}
.tp8km .v3nf2::after,
.tp8km .x52ochf4::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); }
}
.tp8km .hde0kh .c40nmzg {
  position: relative; overflow: hidden;
}
.tp8km .hde0kh .c40nmzg::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 — градієнт з'являється при завантаженні */
.y8m7ur3 .v3nf2,
.y8m7ur3 .x52ochf4,
.y8m7ur3 .hde0kh .c40nmzg {
  animation: hg-fadein 1.2s ease-out both;
}
@keyframes hg-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* hero-bg з фото — overlay анімації */
.g3b7ae .hde0kh .c40nmzg {
  position: relative; overflow: hidden;
}
.g3b7ae .hde0kh .c40nmzg::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;
}
.z6ft .hde0kh .c40nmzg {
  animation: hg-breathe 10s ease-in-out infinite;
}

.v3nf2 .c40nmzg {
  background: none;
}
.v3nf2 .bvmq { color: #fff; }
.v3nf2 .qcbn { color: rgba(255,255,255,0.85); }

/* ── Hero anim: split layouts ─────────────────────────────────────────────── */
.g3b7ae .pfzuzg3z { position: relative; overflow: hidden; }
.g3b7ae .pfzuzg3z::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;
}
.z6ft .pfzuzg3z {
  animation: hg-breathe 7s ease-in-out infinite;
}
.vbgh .pfzuzg3z { position: relative; overflow: hidden; }
.vbgh .pfzuzg3z::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;
}
.tp8km .pfzuzg3z { position: relative; overflow: hidden; }
.tp8km .pfzuzg3z::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;
}
.y8m7ur3 .pfzuzg3z {
  animation: hg-fadein 1.2s ease-out both;
}


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

/* Split alignment — всередині text-колонки */
.pfzuzg3z.s9kq .olto { align-items: center; text-align: center; }
.pfzuzg3z.zz0r0x7j   .olto { align-items: flex-start; text-align: left; }

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


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

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

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

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

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

/* ── Hero: split-cards ────────────────────────────────────────────────────── */
.xqgtyx3s .p8nl {
  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);
}
.l5tor5 {
  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;
}
.l5tor5:last-child { border-bottom: none; }
.l5tor5:hover { background: rgba(255,255,255,0.14); }
.c8qkp9 { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.f2vls6e0 { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.l1bguta3 { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.uiou { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nore { font-size: 0.82rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.iiql3wr { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.wfc49k { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); }
.wfc49k small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }
.lonk8hr { font-size: 0.8rem; padding: 6px 14px; white-space: nowrap; }

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

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

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

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


@media (max-width: 700px) {
  .pfzuzg3z { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .pfzuzg3z .hpqx { display: none !important; }
  .guj0be .hpqx { display: none !important; }
  .xqgtyx3s .p8nl { display: none !important; }
  .hll7j4g .ka7x35 { display: none !important; }
  .olto  { padding: 36px 24px; }
  .pfzuzg3z~.vyj0,.stcbc~.vyj0{max-width:100%;left:0;right:0;transform:none;padding:0 24px}
  /* cap hero height variants on mobile */
  .lnqcw26v, .pfzuzg3z { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .bvmq { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  /* cards-top: hide on mobile */
  .dltz2s { display: none !important; }
  /* numbered: stack */
  .e3x7v8zu { flex-direction: column; align-items: center; }
  .xk70t9u { width: 100%; max-width: 340px; }
}

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

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

/* rounded */
.tj9mse .j8vo54yh        { border-radius: 16px; }
.tj9mse .cjun7  { border-radius: 16px; }

/* shadow */
.h6630k .j8vo54yh         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.h6630k .cjun7   { border-radius: 8px; }


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

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

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

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

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

.tgg6q3e .lwlcq:nth-child(even) .nos1mju .b3uvci9:nth-child(odd),
.ac53oi .lwlcq:nth-child(even) .nos1mju .b3uvci9:nth-child(odd)  { background: var(--bg-card); }
.tgg6q3e .lwlcq:nth-child(even) .nos1mju .b3uvci9:nth-child(even),
.ac53oi .lwlcq:nth-child(even) .nos1mju .b3uvci9:nth-child(even) { background: var(--bg-card-inner); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gy2v .jqvf,
.gy2v .dtlg9i,
.gy2v .m2ck3q,
.gy2v .gu20r { font-style: normal; color: var(--text-body); }

.xcijluqy .jqvf,
.xcijluqy .dtlg9i {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.xcijluqy .m2ck3q,
.xcijluqy .gu20r {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

.lqt1n1nk .jqvf,
.lqt1n1nk .dtlg9i,
.lqt1n1nk .m2ck3q,
.lqt1n1nk .gu20r {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}
────────────────────────────────────────────────────────────────────────────── */

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

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

.q05wbv0     .bunb { list-style-type: "● "; }
.q8gxx8ai  .bunb { list-style-type: "■ "; }
.evkkv3g .bunb { list-style-type: "◆ "; }
.w0zqfof4    .bunb { list-style-type: "★ "; }

.q05wbv0     .rvgk6657 { list-style-type: "● "; }
.q8gxx8ai  .rvgk6657 { list-style-type: "■ "; }
.evkkv3g .rvgk6657 { list-style-type: "◆ "; }
.w0zqfof4    .rvgk6657 { list-style-type: "★ "; }

.q05wbv0    .bunb li::marker, .q05wbv0    .rvgk6657 li::marker,
.q8gxx8ai .bunb li::marker, .q8gxx8ai .rvgk6657 li::marker,
.evkkv3g .bunb li::marker, .evkkv3g .rvgk6657 li::marker,
.w0zqfof4   .bunb li::marker, .w0zqfof4   .rvgk6657 li::marker {
  color: var(--accent); font-size: 0.8em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

/* pill = solid but very rounded */
.avefqdh .dtvrgq { border-radius: 50px; }
.avefqdh .ldngzwyw  { border-radius: 50px; }
/* btn_pad */
.q1kwr .dtvrgq { padding-left: 22px; padding-right: 22px; }
.q1kwr .ldngzwyw  { padding-left: 12px; padding-right: 12px; }
.h5yt1p1j .dtvrgq { padding-left: 44px; padding-right: 44px; }
.h5yt1p1j .ldngzwyw  { padding-left: 24px; padding-right: 24px; }
.x6dz7il9 .dtvrgq { padding-left: 56px; padding-right: 56px; }
.x6dz7il9 .ldngzwyw  { padding-left: 32px; padding-right: 32px; }

/* ── btn_icon: SVG-іконки на .dtvrgq і .ldngzwyw (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.fopwzdnn   .dtvrgq::after, .fopwzdnn   .ldngzwyw::after,
.vl82m .dtvrgq::after, .vl82m .ldngzwyw::after,
.gm3ulz3b    .dtvrgq::after, .gm3ulz3b    .ldngzwyw::after,
.wygkxp4    .dtvrgq::after, .wygkxp4    .ldngzwyw::after,
.avbk108    .dtvrgq::after, .avbk108    .ldngzwyw::after,
.z8nqm0ze     .dtvrgq::after, .z8nqm0ze     .ldngzwyw::after,
.s78748uo    .dtvrgq::after, .s78748uo    .ldngzwyw::after,
.ixo7dlg3   .dtvrgq::after, .ixo7dlg3   .ldngzwyw::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 — кожна іконка */
.fopwzdnn .dtvrgq::after, .fopwzdnn .ldngzwyw::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");
}
.vl82m .dtvrgq::after, .vl82m .ldngzwyw::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");
}
.gm3ulz3b .dtvrgq::after, .gm3ulz3b .ldngzwyw::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");
}
.wygkxp4 .dtvrgq::after, .wygkxp4 .ldngzwyw::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");
}
.avbk108 .dtvrgq::after, .avbk108 .ldngzwyw::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");
}
.z8nqm0ze .dtvrgq::after, .z8nqm0ze .ldngzwyw::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");
}
.s78748uo .dtvrgq::after, .s78748uo .ldngzwyw::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");
}
.ixo7dlg3 .dtvrgq::after, .ixo7dlg3 .ldngzwyw::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 ────────*/
.uuhkv8z   .d45c1::after, .uuhkv8z   .cebzq::after,
.ehk4zwi .d45c1::after, .ehk4zwi .cebzq::after,
.fulaet    .d45c1::after, .fulaet    .cebzq::after,
.eeght6    .d45c1::after, .eeght6    .cebzq::after,
.xqa1329    .d45c1::after, .xqa1329    .cebzq::after,
.a6b80z2s     .d45c1::after, .a6b80z2s     .cebzq::after,
.xtw1jov    .d45c1::after, .xtw1jov    .cebzq::after,
.crno   .d45c1::after, .crno   .cebzq::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;
}
.uuhkv8z .d45c1::after, .uuhkv8z .cebzq::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");
}
.ehk4zwi .d45c1::after, .ehk4zwi .cebzq::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");
}
.fulaet .d45c1::after, .fulaet .cebzq::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");
}
.eeght6 .d45c1::after, .eeght6 .cebzq::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");
}
.xqa1329 .d45c1::after, .xqa1329 .cebzq::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");
}
.a6b80z2s .d45c1::after, .a6b80z2s .cebzq::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");
}
.xtw1jov .d45c1::after, .xtw1jov .cebzq::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");
}
.crno .d45c1::after, .crno .cebzq::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 ─────────────────────────────────────────────────────────*/
.d9loyl8 { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


.mgcm3 {
  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 */
.mgcm3 > [itemprop="item"] { display: contents; }
.mgcm3:hover { background: var(--bg-hover); }
.koh3qe {
  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 */
.uyc5k .koh3qe { background: #1a1a1a; }
.uahdtqf .koh3qe { background: rgba(128,128,128,.12); }
.rrk6l .koh3qe { background: var(--bg-raised); }
.cjzvngk .koh3qe { background: transparent; padding: 0; }
.dmb3tme { max-height: 34px; max-width: 80px; object-fit: contain; }
.f97our9 { font-weight: 700; font-size: .85rem; color: var(--accent-light); }
.kfo8vg { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; }
.se8bn2z { font-weight: 700; font-size: .88rem; color: var(--text-primary); flex-shrink: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.iqyl { color: var(--accent); font-size: .8rem; letter-spacing: 1px; flex-shrink: 1; min-width: 0; }
.hjbtp { display: flex; flex-direction: column; align-items: center; font-size: .78rem; flex: 1 1 0; min-width: 0; }
.abnyc96h { color: var(--text-label); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.ngk9 { color: var(--text-value); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.am5nrqpv { margin-left: auto; flex-shrink: 0; white-space: nowrap; }
.am5nrqpv.ldngzwyw { padding-left: 16px !important; padding-right: 16px !important; }
/* планшет / мобіль: 2-колонкова сітка вертикальних карток */
@media (max-width: 720px) {
  .d9loyl8 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .d9loyl8 .mgcm3 { flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px; }
  .d9loyl8 .kfo8vg { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
  .d9loyl8 .koh3qe { width: 100%; min-width: unset; height: 52px; }
  .d9loyl8 .dmb3tme { max-height: 40px; max-width: 110px; }
  .d9loyl8 .se8bn2z { min-width: unset; text-align: center; white-space: normal; }
  .d9loyl8 .hjbtp { flex-direction: row; justify-content: space-between; width: 100%; border-top: 1px solid var(--border); padding-top: 5px; }
  .d9loyl8 .am5nrqpv { width: 100%; text-align: center; margin-left: 0; }
  .i7gept8b .mgcm3 { row-gap: 8px !important; gap: 8px !important; }
}

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.s9jvko {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.itcv {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.zwhym0mf {
  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;
}
.zwhym0mf img { max-width: 80px; max-height: 50px; object-fit: contain; }
.yp332no { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.n2q2gu1k { flex: 1; }
.n2q2gu1k h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.epeq4i5 { color: var(--c-stars); font-size: 1.1rem; }
.fb0f { margin-bottom: 8px; }
.nc2zn5hk { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.iqlh3::before   { content: "★ "; color: var(--accent); }
.mftma9c::before { content: "↓ "; color: var(--accent); }
.c85wj::before { content: "✦ "; color: var(--accent); }
.hx16 { flex-shrink: 0; }
.hfhwq2mq img.d3tsys3 { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.p1to2q { padding: 20px 24px; }
.agvmec { color: var(--text-muted); margin-bottom: 16px; }
.bj7ps { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.jz26p0f6, .azii { list-style: none; font-size: 0.9rem; }
.jz26p0f6 li { color: var(--c-pros); margin-bottom: 4px; }
.azii li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.jz26p0f6 li::before { content: "✓"; margin-right: 5px; }
.azii li::before { content: "✗"; margin-right: 5px; }
.q40uas .jz26p0f6 li::before { content: "→"; }
.q40uas .azii li::before { content: "–"; }
.kvdmv  .jz26p0f6 li::before { content: "★"; }
.kvdmv  .azii li::before { content: "✕"; }
.uphkkt    .jz26p0f6 li::before { content: "◆"; }
.uphkkt    .azii li::before { content: "▲"; }
.opuk1w  .jz26p0f6 li::before { content: "▶"; }
.opuk1w  .azii li::before { content: "■"; }
.hzas0874 { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.qltsx077 { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.s099141 { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

/* ── Brand card (single brand, two-column hero) ─────────────────────────────*/
/* ═══════════════════════════════════════════════════════════════════════════
   BRAND CARD — shared tokens
   ═══════════════════════════════════════════════════════════════════════════ */
.eeje5851 {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.pnaq {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.pnaq img { max-width: 100%; max-height: 100%; object-fit: contain; }
.bfanmz83 { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.y7n9wwu { display: flex; align-items: center; gap: 8px; }
.y7n9wwu .epeq4i5 { font-size: .95rem; }
.y7n9wwu strong { font-size: 1.1rem; color: var(--text); }
.a8gcv1o2 { border-radius: 8px; overflow: hidden; }
.a8gcv1o2 img { width: 100%; display: block; border-radius: 8px; }
.jgwi { text-align: center; flex-shrink: 0; }
.oqg0w74 { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.jfe0lgh { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.f6u0 { font-size: .88rem; font-weight: 600; color: var(--text); }
.a17yymw .f6u0 { font-size: 1.02rem; font-weight: 700; color: var(--accent); }
.eeje5851 .fd8k5tt { gap: 10px; }
.eeje5851 .nve2aw, .eeje5851 .rs3wliy { padding: 12px; }
.eeje5851 .nve2aw ul, .eeje5851 .rs3wliy ul { margin: 4px 0 0; padding-left: 18px; }
.eeje5851 .nve2aw li, .eeje5851 .rs3wliy li { font-size: .85rem; margin-bottom: 3px; }
.ormb8 { font-size: .8rem; color: var(--text-muted); margin-top: 10px; }
.ormb8 strong { color: var(--text-secondary); }
.ormb8 .qltsx077 { margin: 2px 4px 2px 0; }

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

/* ── LAYOUT 2: hero — full-width screenshot header ────────────────────────── */
.b4g8 {
  position: relative; max-height: 240px; overflow: hidden;
}
.b4g8 > img { width: 100%; display: block; object-fit: cover; min-height: 160px; }
.jq7jdex {
  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;
}
.jq7jdex .pnaq { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.jq7jdex .bfanmz83 { color: #fff; font-size: 1.25rem; }
.jq7jdex .y7n9wwu strong { color: #fff; }
.jq7jdex .y7n9wwu .epeq4i5 { filter: brightness(1.2); }
.jq7jdex .jgwi { margin-left: auto; white-space: nowrap; }
.w7onu4w0 { flex: 1; }
.kzni2 {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-alt);
}
.kzni2 .jgwi { margin-left: auto; }
.m55e9 { display: flex; flex-direction: column; gap: 16px; padding: 20px 24px; }
.dklmo6j0 .hm23bsvn {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.dklmo6j0 .oqg0w74 {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.dklmo6j0 .a17yymw { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .jq7jdex { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .m55e9 { padding: 16px; }
  .dklmo6j0 .oqg0w74 { min-width: 50%; }
}

/* ── LAYOUT 3: magazine — editorial 3-column ──────────────────────────────── */
.yliltamn {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.n35ndm { flex: 1; }
.n35ndm .bfanmz83 { font-size: 1.3rem; }
.y3s4 {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.f9d1gvrn { padding: 16px; border-right: 1px solid var(--border-alt); }
.f9d1gvrn .a8gcv1o2 { height: 100%; }
.f9d1gvrn .a8gcv1o2 img { height: 100%; object-fit: cover; }
.shlxisyw { padding: 0; border-right: 1px solid var(--border-alt); }
.shlxisyw .hm23bsvn { display: flex; flex-direction: column; }
.shlxisyw .oqg0w74 { border-bottom: 1px solid var(--border-alt); }
.shlxisyw .a17yymw { background: var(--accent-bg); }
.shwzd3jb { padding: 16px; }
.shwzd3jb .fd8k5tt { grid-template-columns: 1fr; }
.rz2tbk {
  padding: 12px 24px; border-top: 1px solid var(--border-alt);
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .y3s4 { grid-template-columns: 1fr; }
  .f9d1gvrn { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .shlxisyw { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .yliltamn { flex-wrap: wrap; padding: 16px; }
}

/* ── LAYOUT 4: compact — header bar → screenshot → data ──────────────────── */
.iom6m {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border-alt);
}
.fcr0r7q5 {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.fcr0r7q5 .pnaq { width: 72px; height: 50px; }
.fcr0r7q5 .bfanmz83 { font-size: 1rem; white-space: nowrap; }
.zlpnhto { border-bottom: 1px solid var(--border-alt); max-height: 280px; overflow: hidden; }
.zlpnhto img { width: 100%; display: block; object-fit: cover; }
.ssi72vy {
  display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; overflow: hidden;
}
.y0pova .hm23bsvn { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.y0pova .oqg0w74 { padding: 0; flex: 0 0 auto; gap: 6px; }
.y0pova .a17yymw { display: none; }
.y0pova .fd8k5tt { gap: 8px; }
.y0pova .nve2aw, .y0pova .rs3wliy { padding: 8px; }
@media (max-width: 480px) {
  .iom6m { flex-direction: column; align-items: stretch; }
}

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

/* ── LAYOUT 6: scorecard — big score centerpiece ──────────────────────────── */
.yvr3c853 {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
  border-bottom: 1px solid var(--border-alt);
}
.vc7l {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; text-align: center;
}
.bqczp {
  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;
}
.whjk4eb { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.whjk4eb .s56ul { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.bqczp .epeq4i5 { font-size: .75rem; margin-top: 2px; }
.mnlo5zkw { padding: 12px; display: flex; align-items: center; flex: 1; }
.mnlo5zkw .a8gcv1o2 { width: 100%; }
.kfuiz71z {
  padding: 0; border-bottom: 1px solid var(--border-alt);
}
.pbrr834q .hm23bsvn {
  display: flex; flex-wrap: wrap;
}
.pbrr834q .oqg0w74 {
  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;
}
.pbrr834q .oqg0w74:last-child { border-right: none; }
.pbrr834q .jfe0lgh { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.pbrr834q .a17yymw { background: var(--accent-bg); }
.zevm { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 720px) {
  .yvr3c853 { grid-template-columns: 1fr; }
  .bqczp { width: 100px; height: 100px; margin: 16px auto; }
  .whjk4eb { font-size: 1.4rem; }
  .mnlo5zkw { justify-content: center; }
  .pbrr834q .oqg0w74 { min-width: 50%; }
}

/* ── LAYOUT 7: stack — vertical full-width flow ──────────────────────────── */
.gpoiei {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.dcju { max-height: 240px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.dcju img { width: 100%; display: block; object-fit: cover; }
.k7r6r4 { padding: 16px 24px; border-bottom: 1px solid var(--border-alt); }
.sg51 .hm23bsvn {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.sg51 .oqg0w74 {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.sg51 .a17yymw {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.sg51 .fd8k5tt { margin: 0 24px; padding-top: 16px; }
.sg51 .ormb8 { padding: 0 24px; }
.o6vdykhr { padding: 16px 24px; border-top: 1px solid var(--border-alt); text-align: center; }
.o6vdykhr .jgwi { display: inline-block; }
@media (max-width: 540px) {
  .gpoiei { flex-wrap: wrap; padding: 14px 16px; }
  .k7r6r4 { padding: 12px 16px; }
  .sg51 .fd8k5tt { margin: 0 16px; }
  .sg51 .ormb8 { padding: 0 16px; }
  .o6vdykhr { padding: 12px 16px; }
}


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

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

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.ar88 .abnyc96h {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.ar88 .ngk9 {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.ar88 .iqyl { color: var(--accent); }
.ar88 .itcv { background: var(--accent-bg); }
.ar88 .iqlh3, .ar88 .mftma9c, .ar88 .c85wj {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

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

/* compact: менші відступи всюди */
.lbo3m .mgcm3 { padding: 8px 14px; gap: 12px; }
.lbo3m .koh3qe { height: 32px; min-width: 52px; }
.lbo3m .dmb3tme { max-height: 24px; }
.lbo3m .se8bn2z { font-size: 0.82rem; }
.lbo3m .itcv { padding: 14px 18px; gap: 14px; }
.lbo3m .p1to2q { padding: 14px 18px; }
.lbo3m .zwhym0mf { width: 70px; }
.lbo3m .n2q2gu1k h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.i7gept8b .d9loyl8 {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.i7gept8b .mgcm3 {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); row-gap: 0; column-gap: 12px;
}
.i7gept8b .mgcm3:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.i7gept8b .iqyl,
.i7gept8b .vi32tf,
.i7gept8b .cep7 { border-left: 1px solid var(--border); padding-left: 10px; }
.i7gept8b .se8bn2z { padding: 0 10px; }

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

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

/* ── casino-wide: високі горизонтальні картки з великим лого ───────────────*/
.u9wb0vj .d9loyl8 { gap: 12px; }
.u9wb0vj .mgcm3 {
  padding: 18px 24px; gap: 20px; border-radius: 12px;
  min-height: 80px;
}
.u9wb0vj .koh3qe {
  min-width: 90px; height: 64px; padding: 6px 12px; border-radius: 10px;
}
.u9wb0vj .dmb3tme { max-height: 52px; max-width: 120px; }
.u9wb0vj .se8bn2z { font-size: 1rem; }
.u9wb0vj .hjbtp { font-size: .85rem; }
.u9wb0vj .ngk9 { font-size: .9rem; }
.u9wb0vj .am5nrqpv.ldngzwyw { padding: 10px 24px !important; font-size: .9rem; }

/* ── casino-jumbo: дуже великі картки, лого + інтерфейс скриншот ──────────*/
.kcq9ku .d9loyl8 { gap: 16px; }
.kcq9ku .mgcm3 {
  padding: 24px 28px; gap: 24px; border-radius: 14px;
  min-height: 100px; border-width: 2px;
}
.kcq9ku .koh3qe {
  min-width: 110px; height: 80px; padding: 8px 14px; border-radius: 12px;
  background: var(--bg-raised);
}
.kcq9ku .dmb3tme { max-height: 64px; max-width: 140px; }
.kcq9ku .se8bn2z { font-size: 1.1rem; font-weight: 800; }
.kcq9ku .iqyl { font-size: .95rem; letter-spacing: 2px; }
.kcq9ku .hjbtp { font-size: .9rem; }
.kcq9ku .ngk9 { font-size: .95rem; font-weight: 700; }
.kcq9ku .abnyc96h { font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; }
.kcq9ku .am5nrqpv.ldngzwyw { padding: 12px 32px !important; font-size: .95rem; font-weight: 700; }

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

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.x6mslc4d .vi32tf { flex: 1.8; }
.x6mslc4d .vi32tf .ngk9 {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}
.x6mslc4d .vi32tf .abnyc96h { font-weight: 700; color: var(--text-primary); }
.x6mslc4d .zm9d08ut,
.x6mslc4d .x95ubdk,
.x6mslc4d .de7y { flex: 0.75; opacity: 0.65; }

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

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

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

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

/* score в оглядах — ховаємо зірки */
.e7exmq .fb0f .epeq4i5,
.mq38g .fb0f .epeq4i5,
.i6mgo127 .fb0f .epeq4i5 { display: none; }

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

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

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

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.lwlcq { margin-bottom: 0; }
.hqr3f h2.oujj { color: var(--accent-light); border-color: var(--accent); }
.ovohkb3e h2.oujj { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.gq5bh .zwceppz4     { background: #052e16; border-color: #10b981; }
.gq5bh .ra6un { background: #2d0a1e; border-color: #f43f5e; }
.gq5bh .drvbu    { background: #1e1036; border-color: #a855f7; }
.gq5bh .dxvrmmha strong  { color: #f1f5f9; }
.gq5bh .dxvrmmha p       { color: #cbd5e1; }
.gq5bh .zowxokn    .zwceppz4     .zsjzou6::before,
.gq5bh .rawaha  .zwceppz4     .zsjzou6::before,
.gq5bh .gwcorr  .zwceppz4     .zsjzou6::before,
.gq5bh .x88twe .zwceppz4     .zsjzou6::before { color: #10b981; }
.gq5bh .zowxokn    .ra6un .zsjzou6::before,
.gq5bh .rawaha  .ra6un .zsjzou6::before,
.gq5bh .gwcorr  .ra6un .zsjzou6::before,
.gq5bh .x88twe .ra6un .zsjzou6::before { color: #f43f5e; }
.gq5bh .zowxokn    .drvbu    .zsjzou6::before,
.gq5bh .rawaha  .drvbu    .zsjzou6::before,
.gq5bh .gwcorr  .drvbu    .zsjzou6::before,
.gq5bh .x88twe .drvbu    .zsjzou6::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.d1xsjsw .zwceppz4     { background: #2d2000; border-color: #eab308; }
.d1xsjsw .ra6un { background: #2d0b0b; border-color: #ef4444; }
.d1xsjsw .drvbu    { background: #2d1600; border-color: #f97316; }
.d1xsjsw .dxvrmmha strong  { color: #f1f5f9; }
.d1xsjsw .dxvrmmha p       { color: #cbd5e1; }
.d1xsjsw .zowxokn    .zwceppz4     .zsjzou6::before,
.d1xsjsw .rawaha  .zwceppz4     .zsjzou6::before,
.d1xsjsw .gwcorr  .zwceppz4     .zsjzou6::before,
.d1xsjsw .x88twe .zwceppz4     .zsjzou6::before { color: #eab308; }
.d1xsjsw .zowxokn    .ra6un .zsjzou6::before,
.d1xsjsw .rawaha  .ra6un .zsjzou6::before,
.d1xsjsw .gwcorr  .ra6un .zsjzou6::before,
.d1xsjsw .x88twe .ra6un .zsjzou6::before { color: #ef4444; }
.d1xsjsw .zowxokn    .drvbu    .zsjzou6::before,
.d1xsjsw .rawaha  .drvbu    .zsjzou6::before,
.d1xsjsw .gwcorr  .drvbu    .zsjzou6::before,
.d1xsjsw .x88twe .drvbu    .zsjzou6::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.ujh1 .zwceppz4     { background: #0c1a2e; border-color: #38bdf8; }
.ujh1 .ra6un { background: #12103a; border-color: #818cf8; }
.ujh1 .drvbu    { background: #0a2020; border-color: #2dd4bf; }
.ujh1 .dxvrmmha strong  { color: #f1f5f9; }
.ujh1 .dxvrmmha p       { color: #cbd5e1; }
.ujh1 .zowxokn    .zwceppz4     .zsjzou6::before,
.ujh1 .rawaha  .zwceppz4     .zsjzou6::before,
.ujh1 .gwcorr  .zwceppz4     .zsjzou6::before,
.ujh1 .x88twe .zwceppz4     .zsjzou6::before { color: #38bdf8; }
.ujh1 .zowxokn    .ra6un .zsjzou6::before,
.ujh1 .rawaha  .ra6un .zsjzou6::before,
.ujh1 .gwcorr  .ra6un .zsjzou6::before,
.ujh1 .x88twe .ra6un .zsjzou6::before { color: #818cf8; }
.ujh1 .zowxokn    .drvbu    .zsjzou6::before,
.ujh1 .rawaha  .drvbu    .zsjzou6::before,
.ujh1 .gwcorr  .drvbu    .zsjzou6::before,
.ujh1 .x88twe .drvbu    .zsjzou6::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.aco48g .zwceppz4     { background: var(--accent-bg); border-color: var(--accent); }
.aco48g .ra6un { background: var(--accent-bg-light); border-color: var(--accent-light); }
.aco48g .drvbu    { background: var(--accent-bg); border-color: var(--accent-pale); }
.aco48g .zowxokn    .zsjzou6::before,
.aco48g .rawaha  .zsjzou6::before,
.aco48g .gwcorr  .zsjzou6::before,
.aco48g .x88twe .zsjzou6::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.wsnyuc .nve2aw ul li,
.wsnyuc .jz26p0f6 li         { color: #4ade80; }
.wsnyuc .nve2aw .bo9fbg { color: #22c55e; }
.wsnyuc .rs3wliy ul li,
.wsnyuc .azii li         { color: #f87171; }
.wsnyuc .rs3wliy .beqcwy4u { color: #ef4444; }

/* blue: синій pros / amber cons */
.vjdg .nve2aw { background: #0c1a2e; }
.vjdg .rs3wliy { background: #2d1f00; }
.vjdg .nve2aw .bo9fbg { color: #93c5fd; }
.vjdg .rs3wliy .beqcwy4u { color: #fcd34d; }
.vjdg .nve2aw ul li,
.vjdg .jz26p0f6 li            { color: #bfdbfe; }
.vjdg .rs3wliy ul li,
.vjdg .azii li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.xweb6 .nve2aw { background: var(--accent-bg); }
.xweb6 .rs3wliy { background: var(--accent-bg-light); }
.xweb6 .nve2aw .bo9fbg { color: var(--accent-pale); }
.xweb6 .rs3wliy .beqcwy4u { color: var(--accent-light); }
.xweb6 .nve2aw ul li,
.xweb6 .jz26p0f6 li          { color: var(--text-body); }
.xweb6 .rs3wliy ul li,
.xweb6 .azii li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.km4exlh5 .bo9fbg::before { content: "✓ "; }
.km4exlh5 .beqcwy4u::before { content: "✗ "; }

/* arrows: → / ← */
.q40uas .bo9fbg::before { content: "→ "; }
.q40uas .beqcwy4u::before { content: "← "; }

/* marks: ★ / ✕ */
.kvdmv .bo9fbg::before { content: "★ "; }
.kvdmv .beqcwy4u::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.uphkkt .bo9fbg::before { content: "◆ "; }
.uphkkt .beqcwy4u::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.cals .dxvrmmha { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.cals .zwceppz4     { border-top-color: var(--c-tip-border); }
.cals .ra6un { border-top-color: var(--c-warn-border); }
.cals .drvbu    { border-top-color: #60a5fa; }

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

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

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

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

.zowxokn .zsjzou6,
.rawaha .zsjzou6,
.gwcorr .zsjzou6,
.x88twe .zsjzou6 { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.zowxokn .zsjzou6::before,
.rawaha .zsjzou6::before,
.gwcorr .zsjzou6::before,
.x88twe .zsjzou6::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.zowxokn .zwceppz4     .zsjzou6::before { content: "✦"; color: var(--c-tip-border); }
.zowxokn .ra6un .zsjzou6::before { content: "▲"; color: var(--c-warn-border); }
.zowxokn .drvbu    .zsjzou6::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.rawaha .zwceppz4     .zsjzou6::before { content: "★"; color: var(--c-tip-border); }
.rawaha .ra6un .zsjzou6::before { content: "◆"; color: var(--c-warn-border); }
.rawaha .drvbu    .zsjzou6::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.gwcorr .zwceppz4     .zsjzou6::before { content: "▶"; color: var(--c-tip-border); }
.gwcorr .ra6un .zsjzou6::before { content: "■"; color: var(--c-warn-border); }
.gwcorr .drvbu    .zsjzou6::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.x88twe .zwceppz4     .zsjzou6::before { content: "→"; color: var(--c-tip-border); }
.x88twe .ra6un .zsjzou6::before { content: "⬥"; color: var(--c-warn-border); }
.x88twe .drvbu    .zsjzou6::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.oga7 .vgna .b3uvci9,
.oga7 .nos1mju .b3uvci9  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.oga7 .ztkwm7                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.oga7 .mgcm3                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.oga7 .s9jvko            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.oga7 .w1vdmuop          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.oga7 .deilm                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.e3z7 .vgna .b3uvci9,
.e3z7 .nos1mju .b3uvci9,
.e3z7 .ztkwm7,
.e3z7 .mgcm3,
.e3z7 .s9jvko,
.e3z7 .w1vdmuop,
.e3z7 .deilm,
.e3z7 .ffknvq37 .dxvrmmha { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.dpcvmj   body, .dpcvmj   { font-size: 0.9rem; }
.dpcvmj   .mhjet, .dpcvmj .m2ck3q, .dpcvmj .gu20r,
.dpcvmj   .jqvf, .dpcvmj .dtlg9i { font-size: 0.9rem; }
.dpcvmj   .bunb, .dpcvmj .swgmhpx { font-size: 0.9rem; }

.cyapo   .mhjet, .cyapo .m2ck3q, .cyapo .gu20r,
.cyapo   .jqvf, .cyapo .dtlg9i { font-size: 0.9rem; }
.cyapo   .bunb, .cyapo .swgmhpx { font-size: 0.9rem; }

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

.w8rjv7xz   .mhjet, .w8rjv7xz .m2ck3q, .w8rjv7xz .gu20r,
.w8rjv7xz   .jqvf, .w8rjv7xz .dtlg9i { font-size: 1.08rem; }
.w8rjv7xz   .bunb, .w8rjv7xz .swgmhpx { font-size: 1.05rem; }
.w8rjv7xz   .epk5p5o5 { font-size: 0.97rem; }

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

/* large */
.rwz06iw .bvmq      { font-size: 3.2rem; }
.rwz06iw h2.oujj { font-size: 1.9rem; }
.rwz06iw h3.dzg8pmk     { font-size: 1.4rem; }

/* display */
.oc1i66tq .bvmq      { font-size: 3.8rem; }
.oc1i66tq h2.oujj { font-size: 2.2rem; }
.oc1i66tq h3.dzg8pmk     { font-size: 1.6rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.xpavr   .lwlcq + .lwlcq::before,
.z8j9y  .lwlcq + .lwlcq::before,
.d0ic2w1   .lwlcq + .lwlcq::before,
.cbf9sj5   .lwlcq + .lwlcq::before,
.uh1v   .lwlcq + .lwlcq::before,
.d20bok .lwlcq + .lwlcq::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}

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

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

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

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

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

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

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

/* section_bg=stripe: парні секції мають bg-card */
.ac53oi .dcw1z1r .lwlcq:nth-child(even)::before,
.ac53oi .b2uotp .lwlcq:nth-child(even)::before,
.ac53oi .r1i620 .lwlcq:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.dcw1z1r .lwlcq + .lwlcq::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 гребені */
.b2uotp .lwlcq + .lwlcq::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: глибока дуга */
.r1i620 .lwlcq + .lwlcq::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 у формі хвилі */
.bzca9bcq .hde0kh,
.o2tia691 .hde0kh,
.w2svbhe9 .hde0kh { overflow: hidden; }

/* wave: додатковий простір щоб хвиля не закривала CTA */
.bzca9bcq .k2kgly1y,
.o2tia691 .k2kgly1y { margin-bottom: 60px; }
.w2svbhe9 .k2kgly1y { margin-bottom: 70px; }
.bzca9bcq .olto,
.o2tia691 .olto { padding-bottom: 60px; }
.w2svbhe9 .olto { padding-bottom: 70px; }

.bzca9bcq .hde0kh::before,
.o2tia691 .hde0kh::before,
.w2svbhe9 .hde0kh::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 гребінь) */
.bzca9bcq .hde0kh::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 гребені */
.o2tia691 .hde0kh::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: глибока дуга */
.w2svbhe9 .hde0kh::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 */
.i23y24 .c40nmzg { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.edtwp .c40nmzg { background: linear-gradient(45deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%); }
.a4yaeo  .c40nmzg { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.fx9m  .c40nmzg { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }

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

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

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

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

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


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

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

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

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

/* Великі блочні елементи — clear float щоб не стискались */
.uhs0jp .vjcmmu7,
.uhs0jp .d9loyl8,
.rynvb8g .vjcmmu7,
.rynvb8g .d9loyl8,
.k0ct .vjcmmu7,
.k0ct .d9loyl8 { clear: both; }

/* Маркери списків не мають налазити на float-картинку */
.uhs0jp .bunb,
.uhs0jp .swgmhpx,
.rynvb8g .bunb,
.rynvb8g .swgmhpx,
.k0ct .bunb,
.k0ct .swgmhpx { overflow: hidden; }


@media (max-width: 640px) {
  .uhs0jp .j8vo54yh,
  .rynvb8g .j8vo54yh,
  .k0ct .j8vo54yh { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1100px (задано в .wjy0c, .m4rsw4o, .p7xt1e) */
.nikr7z .wjy0c,
.nikr7z .m4rsw4o,
.nikr7z .p7xt1e  { max-width: 1100px; }
.nikr7z { --content-mw: 1100px; }
.qtxne5m .wjy0c,
.qtxne5m .m4rsw4o,
.qtxne5m .p7xt1e  { max-width: 1200px; }
.qtxne5m { --content-mw: 1200px; }
.aa8se6d .wjy0c,
.aa8se6d .m4rsw4o,
.aa8se6d .p7xt1e  { max-width: 1320px; }
.aa8se6d { --content-mw: 1320px; }

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

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

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

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

/* content-width: above — обидва класи на <body>, тому без пробілу */
.nikr7z.sjqbz .wcwggk { max-width: 1100px; }
.qtxne5m.sjqbz .wcwggk { max-width: 1200px; }
.aa8se6d.sjqbz .wcwggk { max-width: 1320px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.nikr7z .jelkhg { max-width: 1100px; }
.qtxne5m .jelkhg { max-width: 1200px; }
.aa8se6d .jelkhg { max-width: 1320px; }

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

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.rq2kp { font-weight: 300; }
.rq2kp h2.oujj { font-weight: 600; }
.rq2kp h3.dzg8pmk     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.ycd17 { font-weight: 500; }
.ycd17 h2.oujj { font-weight: 800; }
.ycd17 h3.dzg8pmk     { font-weight: 700; }
/* fw-600: semibold */
.skljvdqs { font-weight: 600; }
.skljvdqs h2.oujj { font-weight: 900; }
.skljvdqs h3.dzg8pmk     { font-weight: 800; }
.skljvdqs .dxvrmmha strong,
.skljvdqs .dxvrmmha strong { font-weight: 600; }
/* .skljvdqs .m2ck3q, .skljvdqs .jqvf { font-weight: 600; } */

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

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

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

/* minimal */
.quns .p7xt1e { text-align: center; }
.quns .hmue2tyc { justify-content: center; margin-bottom: 16px; }
.quns .hb5bp0 { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .p7xt1e { padding-left: 16px; padding-right: 16px; }
  .y1lne6 .p7xt1e { padding: 20px 16px; }
  .hmue2tyc { gap: 4px 12px; }
  .hb5bp0 { font-size: 0.78rem; }
}


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


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

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

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

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

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

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

/* dark: завжди темний, незалежно від теми */
.lmyx .pr76pw5k      { background: #0d1117; border-bottom-color: #21262d; }
.lmyx .d89xw { color: var(--accent-light); }
.lmyx .s0xv { --msep-color: #8b949e; }
.lmyx .s0xv a { color: #8b949e; }
.lmyx .s0xv a:hover { color: var(--accent-light); }
.lmyx .swgi { color: #8b949e; }
.lmyx .adck6r4 { background: #0d1117; border-top-color: #21262d; }
.lmyx .hb5bp0,
.lmyx .qoant43 { color: #6e7681; }
.lmyx .vj0yw a, .lmyx .hmue2tyc a,
.lmyx .p7j7 a, .lmyx .recf0 a,
.lmyx .fdvglc8v a, .lmyx .elxyj { color: #8b949e; }
.lmyx .vj0yw a:hover, .lmyx .hmue2tyc a:hover,
.lmyx .p7j7 a:hover, .lmyx .recf0 a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .lmyx .s0xv { background: #0d1117; border-top-color: #21262d; }
  .lmyx .s0xv li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.abs8isr .pr76pw5k      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.abs8isr .d89xw { color: var(--accent); }
.abs8isr .s0xv { --msep-color: #475569; }
.abs8isr .s0xv a { color: #475569; }
.abs8isr .s0xv a:hover { color: var(--accent); }
.abs8isr .swgi { color: #64748b; }
.abs8isr .adck6r4 { background: #f0f4f8; border-top-color: #cbd5e1; }
.abs8isr .hb5bp0,
.abs8isr .qoant43 { color: #64748b; }
.abs8isr .vj0yw a, .abs8isr .hmue2tyc a,
.abs8isr .p7j7 a, .abs8isr .recf0 a,
.abs8isr .fdvglc8v a, .abs8isr .elxyj { color: #374151; }
.abs8isr .vj0yw a:hover, .abs8isr .hmue2tyc a:hover,
.abs8isr .p7j7 a:hover, .abs8isr .recf0 a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .abs8isr .s0xv { background: #f0f4f8; border-top-color: #cbd5e1; }
  .abs8isr .s0xv li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.bwy1ww1 .pr76pw5k      { background: var(--accent); border-bottom-color: var(--accent-light); }
.bwy1ww1 .d89xw { color: #fff; }
.bwy1ww1 .s0xv { --msep-color: rgba(255,255,255,0.82); }
.bwy1ww1 .s0xv a { color: rgba(255,255,255,0.82); }
.bwy1ww1 .s0xv a:hover { color: #fff; }
.bwy1ww1 .swgi { color: rgba(255,255,255,0.9); }
.bwy1ww1 .adck6r4 { background: var(--accent); border-top-color: var(--accent-light); }
.bwy1ww1 .hb5bp0,
.bwy1ww1 .qoant43 { color: rgba(255,255,255,0.72); }
.bwy1ww1 .vj0yw a, .bwy1ww1 .hmue2tyc a,
.bwy1ww1 .p7j7 a, .bwy1ww1 .recf0 a,
.bwy1ww1 .fdvglc8v a, .bwy1ww1 .elxyj { color: rgba(255,255,255,0.82); }
.bwy1ww1 .vj0yw a:hover, .bwy1ww1 .hmue2tyc a:hover,
.bwy1ww1 .p7j7 a:hover, .bwy1ww1 .recf0 a:hover { color: #fff; }
@media (max-width: 640px) {
  .bwy1ww1 .s0xv { background: var(--accent); border-top-color: var(--accent-light); }
  .bwy1ww1 .s0xv li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.anlxg6r .pr76pw5k {
  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);
}
.anlxg6r .adck6r4 {
  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) {
  .anlxg6r .s0xv {
    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 */
.sbxsxhe .l0ltblu8 { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.u0px36 .l0ltblu8 { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.i9id9nwy .l0ltblu8 { min-height: 72px; height: auto; }
.v8n1ylg7 .l0ltblu8 { min-height: 84px; height: auto; }

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

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


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

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.hjs7r3, .uzg5 {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ef89sl7 .hjs7r3,
.ef89sl7 .uzg5 { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.p4cp .hjs7r3,
.p4cp .uzg5 { 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; }
.mzf7zs6 .hjs7r3,
.mzf7zs6 .uzg5 { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.snyuaiz .hjs7r3,
.snyuaiz .uzg5 { 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 */
.me52fzgw   .s0xv a { font-weight: 500; }
.e40ly3n .s0xv a { font-weight: 600; }
.ngotf     .s0xv a { font-weight: 700; }
.cofzyk    .s0xv a { font-weight: 800; letter-spacing: 0.01em; }

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

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .e20sn1 .swgi,
  .s67cim .swgi,
  .fqajmo .swgi,
  .zpphc .swgi,
  .ss5q .swgi {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .e20sn1 .swgi::before,
  .s67cim .swgi::before,
  .fqajmo .swgi::before,
  .zpphc .swgi::before,
  .ss5q .swgi::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .e20sn1 .swgi::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 лінії рівні */
  .s67cim .swgi::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% */
  .fqajmo .swgi::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% */
  .zpphc .swgi::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% */
  .ss5q .swgi::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) {
  .q2142c .swgi {
    padding: 5px 14px;
  }
  .q2142c .s0xv {
    left: auto; right: 12px; top: 54px;
    width: auto; min-width: 180px;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    padding: 6px 0;
  }
  .q2142c .s0xv li a {
    border-bottom: none; padding: 10px 22px;
  }
  .q2142c .s0xv li a:hover { background: var(--bg-raised); }
}

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

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

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .n8v8g9mm .swgi {
    padding: 5px 10px;
  }
  .n8v8g9mm .s0xv {
    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;
  }
  .n8v8g9mm .s0xv.tdwd { opacity: 1; pointer-events: auto; }
  .n8v8g9mm .s0xv 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) {
  .t10bw8jt     .swgi { border-radius: 0 !important; }
  .wofje   .swgi { border-radius: 8px !important; }
  .m4s5 .swgi { border-radius: 50% !important; }
  .vkky   .swgi { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .iqyl / .epeq4i5) */
.h3muf    .iqyl, .h3muf    .epeq4i5 { color: #f59e0b; }
.madfg3n      .iqyl { font-size: 1rem; letter-spacing: 1.5px; }
.madfg3n      .epeq4i5   { font-size: 1.35rem; }
.sy13jk7    .iqyl, .sy13jk7    .epeq4i5 { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.sjtk3v78     .iqyl, .sjtk3v78     .epeq4i5 { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.nbdut2iq .iqyl, .nbdut2iq .epeq4i5 { color: var(--accent); letter-spacing: 2px; }
.c3ewi   .iqyl, .c3ewi   .epeq4i5 { color: #e91e63; letter-spacing: 2px; }
.k9e48aau  .iqyl, .k9e48aau  .epeq4i5 { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.q3j0     .iqyl, .q3j0     .epeq4i5 { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ── Byline slots — position control ── */
.me1jzs2{display:none}
.me1jzs2:empty,.vpk5iud:empty{display:none}
.hwsxq6{position:relative;overflow:visible}

/* hero slot — shown for all hero positions */
.taz3g .vyj0,.wqsyc4 .vyj0,
.kykpoo63 .vyj0,.calz1mo .vyj0,
.mf9vmr86 .vyj0,.qe8tus79 .vyj0{display:block}
.plqp .u9o0c820{display:block}

/* shared overlay: centered container matching hero-content width (always 1100px) */
.taz3g .vyj0,.wqsyc4 .vyj0,
.kykpoo63 .vyj0,.calz1mo .vyj0,
.mf9vmr86 .vyj0{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 */
.taz3g .vyj0 .vpk5iud,.wqsyc4 .vyj0 .vpk5iud,
.kykpoo63 .vyj0 .vpk5iud,.calz1mo .vyj0 .vpk5iud,
.mf9vmr86 .vyj0 .vpk5iud{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 */
.taz3g .pagh,.wqsyc4 .pagh,
.kykpoo63 .pagh,.calz1mo .pagh,
.mf9vmr86 .pagh{background:transparent!important;border:none!important;padding:0;border-radius:0;color:inherit!important}
/* top positions */
.taz3g .vyj0,.wqsyc4 .vyj0{top:12px}
.taz3g .vyj0 .vpk5iud{margin-right:auto}
.wqsyc4 .vyj0 .vpk5iud{margin-left:auto}
.wqsyc4 .vyj0{text-align:right}
/* bottom positions */
.kykpoo63 .vyj0,.calz1mo .vyj0{bottom:12px}
.kykpoo63 .vyj0 .vpk5iud{margin-right:auto}
.calz1mo .vyj0 .vpk5iud{margin-left:auto}
.calz1mo .vyj0{text-align:right}
/* center overlay at bottom of hero */
.mf9vmr86 .vyj0{bottom:16px}
.mf9vmr86 .vyj0 .vpk5iud{margin:0 auto}

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

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

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

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

/* cards: mini bordered cards */
.uxd32tr8 .pagh{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}
.uxd32tr8 .p41me::before{content:""}

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

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

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

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

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

/* ── Date background variants ── */
.vgcvnb65{--date-bg:var(--accent-bg)}
.vevrbag{--date-bg:var(--accent-bg-light)}
.t5mgm{--date-bg:transparent}

/* ── Date separator variants ── */
.szb9rm .p41me::before{content:""}
.bgbi .p41me::before{content:"•";opacity:.4}
.bgbi .pagh + .pagh::before{content:"•";margin-right:6px;opacity:.4}
.h7uzb .p41me::before{content:"/";opacity:.35}
.h7uzb .pagh + .pagh::before{content:"/";margin-right:6px;opacity:.35}
.n12e9x .p41me::before{content:"|";opacity:.3}
.n12e9x .pagh + .pagh::before{content:"|";margin-right:6px;opacity:.3}
.ngpya7u1 .p41me::before{content:"—";opacity:.3}
.ngpya7u1 .pagh + .pagh::before{content:"—";margin-right:6px;opacity:.3}
.pa19ubb .p41me::before{content:"◆";font-size:.5em;opacity:.35}
.pa19ubb .pagh + .pagh::before{content:"◆";font-size:.5em;margin-right:6px;opacity:.35}
.jmus6um8 .p41me::before{content:"·";opacity:.4}
.jmus6um8 .pagh + .pagh::before{content:"·";margin-right:6px;opacity:.4}
.ct5tezjx .p41me::before{content:"›";opacity:.4}
.ct5tezjx .pagh + .pagh::before{content:"›";margin-right:6px;opacity:.4}
.hkz6 .p41me::before{content:"→";opacity:.35;font-size:.85em}
.hkz6 .pagh + .pagh::before{content:"→";font-size:.85em;margin-right:6px;opacity:.35}


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

/* author box variants */
.b0hlq .j5uiys09{background:var(--surface-alt);border-radius:var(--radius, 8px);border:1px solid var(--border)}
.zg7s34 .j5uiys09{border-top:3px solid var(--accent);padding-top:18px}
.tlg1 .j5uiys09{border-left:3px solid var(--accent);border-radius:0}
.m573hw9 .j5uiys09{padding:20px 0}

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

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


/* ── color scheme ── */
:root {
  --accent:          #3f6237;
  --accent-light:    #709565;
  --accent-pale:     #a4cc96;
  --grad-start:      #94bb87;
  --grad-end:        #c5eeb6;
  --bg-page: #d6dccf;
  --bg-surface: #f9faf2;
  --bg-card: #f2f5eb;
  --bg-card-inner: #ebefe4;
  --bg-raised: #e5eade;
  --bg-hover: #dee5d7;
  --border: #aeb4a7;
  --border-alt: #767d71;
  --border-section: #aeb4a7;
  --text-primary: #2e342b;
  --text-muted: #5a6156;
  --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: #2e312c;
  --text-sub: #454842;
  --text-faint: #696b65;
  --text-dim: #8f928b;
  --text-label: #5c5f59;
  --text-value: #393c37;
  --accent-bg:       #c5eeb6;
  --accent-bg-light: #b7e0a9;
  --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: 69%; }

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

.trld .lnqcw26v, .trld .pfzuzg3z { min-height: 520px; }

.jj3ni0 .dtvrgq::after, .jj3ni0 .ldngzwyw::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; }

.b83ffkh .d45c1::after,.b83ffkh .cebzq::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; }

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

.a3o4lov .pagh::before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:5px;font-size:1em;opacity:.55}.a3o4lov .pagh:first-of-type::before{content:"\f058"}.a3o4lov .pagh:last-of-type::before{content:"\f021"}