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

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

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

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

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

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

/* hero-flat: без фону, просто текст на page bg (WP-style) */
.jkgux {
  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);
}
.jkgux .hvthify {
  width: 100%; max-width: 1100px; padding: 24px 24px;
}
.jkgux .k4td { color: var(--text-primary); text-shadow: none; }
.jkgux .f5tnw { color: var(--text-muted); }
.jkgux .wu03xf { margin-top: 16px; }
.jkgux, .jkgux.hney23sy { min-height: auto !important; }
.jkgux.byelv .hvthify { text-align: center; }
.jkgux.vh4en   .hvthify { text-align: left; }
/* flat hero: byline як звичайний текст, не оверлей */
.jkgux~.trw4{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}
.jkgux~.trw4 .jewrmx3e{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: градієнтний фон замість фото */
.o1ch {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}
/* hero_anim: shimmer — ледь помітний блиск по поверхні */
.dmfe .o1ch,
.dmfe .fmc7r1 {
  position: relative; overflow: hidden;
}
.dmfe .o1ch::after,
.dmfe .fmc7r1::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 */
.yi0ah .o1ch,
.yi0ah .fmc7r1 {
  animation: hg-breathe 10s ease-in-out infinite;
}
@keyframes hg-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
/* hero_anim: grain — ледь помітна зернистість поверх градієнту */
.dcrdyhn .o1ch,
.dcrdyhn .fmc7r1,
.dcrdyhn .st5iyyy .n9amg95 {
  position: relative; overflow: hidden;
}
.dcrdyhn .o1ch::after,
.dcrdyhn .fmc7r1::after,
.dcrdyhn .st5iyyy .n9amg95::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 */
.rhwk3q .o1ch,
.rhwk3q .fmc7r1 {
  position: relative; overflow: hidden;
}
.rhwk3q .o1ch::after,
.rhwk3q .fmc7r1::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); }
}
.rhwk3q .st5iyyy .n9amg95 {
  position: relative; overflow: hidden;
}
.rhwk3q .st5iyyy .n9amg95::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 — градієнт з'являється при завантаженні */
.tul23ycx .o1ch,
.tul23ycx .fmc7r1,
.tul23ycx .st5iyyy .n9amg95 {
  animation: hg-fadein 1.2s ease-out both;
}
@keyframes hg-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* hero-bg з фото — overlay анімації */
.dmfe .st5iyyy .n9amg95 {
  position: relative; overflow: hidden;
}
.dmfe .st5iyyy .n9amg95::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;
}
.yi0ah .st5iyyy .n9amg95 {
  animation: hg-breathe 10s ease-in-out infinite;
}

.o1ch .n9amg95 {
  background: none;
}
.o1ch .k4td { color: #fff; }
.o1ch .f5tnw { color: rgba(255,255,255,0.85); }

/* ── Hero anim: split layouts ─────────────────────────────────────────────── */
.dmfe .kb0i0okd { position: relative; overflow: hidden; }
.dmfe .kb0i0okd::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;
}
.yi0ah .kb0i0okd {
  animation: hg-breathe 7s ease-in-out infinite;
}
.dcrdyhn .kb0i0okd { position: relative; overflow: hidden; }
.dcrdyhn .kb0i0okd::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;
}
.rhwk3q .kb0i0okd { position: relative; overflow: hidden; }
.rhwk3q .kb0i0okd::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;
}
.tul23ycx .kb0i0okd {
  animation: hg-fadein 1.2s ease-out both;
}


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

/* Split alignment — всередині text-колонки */
.kb0i0okd.byelv .ebs2lg { align-items: center; text-align: center; }
.kb0i0okd.vh4en   .ebs2lg { align-items: flex-start; text-align: left; }

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


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

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

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

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

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

/* ── Hero: split-cards ────────────────────────────────────────────────────── */
.pc7baip .ni3jk {
  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);
}
.uz5lmgtg {
  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;
}
.uz5lmgtg:last-child { border-bottom: none; }
.uz5lmgtg:hover { background: rgba(255,255,255,0.14); }
.k3pf { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.dxeqzye { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.nk5x { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.o9y5 { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hespx5 { font-size: 0.82rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xsy06nh { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hf21r { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); }
.hf21r small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }
.ce3ela { font-size: 0.8rem; padding: 6px 14px; white-space: nowrap; }

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

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

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

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


@media (max-width: 700px) {
  .kb0i0okd { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .kb0i0okd .sk0k0f { display: none !important; }
  .z9v82b .sk0k0f { display: none !important; }
  .pc7baip .ni3jk { display: none !important; }
  .zq73s .xmsi { display: none !important; }
  .ebs2lg  { padding: 36px 24px; }
  .kb0i0okd~.trw4,.aidn3~.trw4{max-width:100%;left:0;right:0;transform:none;padding:0 24px}
  /* cap hero height variants on mobile */
  .hney23sy, .kb0i0okd { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .k4td { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  /* cards-top: hide on mobile */
  .xuc2x { display: none !important; }
  /* numbered: stack */
  .zs4j77vf { flex-direction: column; align-items: center; }
  .a5p7 { width: 100%; max-width: 340px; }
}

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

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

/* rounded */
.ps1mo39 .pog2lhn        { border-radius: 16px; }
.ps1mo39 .zwcnc1  { border-radius: 16px; }

/* shadow */
.h1pfawzq .pog2lhn         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.h1pfawzq .zwcnc1   { border-radius: 8px; }


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

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

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

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

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

.q4zc804 .uvixom:nth-child(even) .juh1c2ve .ydkd:nth-child(odd),
.l0y78 .uvixom:nth-child(even) .juh1c2ve .ydkd:nth-child(odd)  { background: var(--bg-card); }
.q4zc804 .uvixom:nth-child(even) .juh1c2ve .ydkd:nth-child(even),
.l0y78 .uvixom:nth-child(even) .juh1c2ve .ydkd:nth-child(even) { background: var(--bg-card-inner); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bltf70 .wrs6,
.bltf70 .j1ctm,
.bltf70 .qm5v,
.bltf70 .bhgq { font-style: normal; color: var(--text-body); }

.fpd2tbb .wrs6,
.fpd2tbb .j1ctm {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.fpd2tbb .qm5v,
.fpd2tbb .bhgq {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

.rox46f .wrs6,
.rox46f .j1ctm,
.rox46f .qm5v,
.rox46f .bhgq {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}
────────────────────────────────────────────────────────────────────────────── */

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

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

.w30hs     .tngs2 { list-style-type: "● "; }
.tp4y7gdo  .tngs2 { list-style-type: "■ "; }
.tqrb3y .tngs2 { list-style-type: "◆ "; }
.fs4anrun    .tngs2 { list-style-type: "★ "; }

.w30hs     .cvh09 { list-style-type: "● "; }
.tp4y7gdo  .cvh09 { list-style-type: "■ "; }
.tqrb3y .cvh09 { list-style-type: "◆ "; }
.fs4anrun    .cvh09 { list-style-type: "★ "; }

.w30hs    .tngs2 li::marker, .w30hs    .cvh09 li::marker,
.tp4y7gdo .tngs2 li::marker, .tp4y7gdo .cvh09 li::marker,
.tqrb3y .tngs2 li::marker, .tqrb3y .cvh09 li::marker,
.fs4anrun   .tngs2 li::marker, .fs4anrun   .cvh09 li::marker {
  color: var(--accent); font-size: 0.8em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

/* pill = solid but very rounded */
.cizyzta .wu03xf { border-radius: 50px; }
.cizyzta .we7sd6  { border-radius: 50px; }
/* btn_pad */
.u5wfjc .wu03xf { padding-left: 22px; padding-right: 22px; }
.u5wfjc .we7sd6  { padding-left: 12px; padding-right: 12px; }
.g0x0kque .wu03xf { padding-left: 44px; padding-right: 44px; }
.g0x0kque .we7sd6  { padding-left: 24px; padding-right: 24px; }
.mc5dqzw1 .wu03xf { padding-left: 56px; padding-right: 56px; }
.mc5dqzw1 .we7sd6  { padding-left: 32px; padding-right: 32px; }

/* ── btn_icon: SVG-іконки на .wu03xf і .we7sd6 (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.q6afjv   .wu03xf::after, .q6afjv   .we7sd6::after,
.us4j3x .wu03xf::after, .us4j3x .we7sd6::after,
.dcc6    .wu03xf::after, .dcc6    .we7sd6::after,
.smfm1    .wu03xf::after, .smfm1    .we7sd6::after,
.kf3i4    .wu03xf::after, .kf3i4    .we7sd6::after,
.h6uggt     .wu03xf::after, .h6uggt     .we7sd6::after,
.jvixt2    .wu03xf::after, .jvixt2    .we7sd6::after,
.k660   .wu03xf::after, .k660   .we7sd6::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 — кожна іконка */
.q6afjv .wu03xf::after, .q6afjv .we7sd6::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");
}
.us4j3x .wu03xf::after, .us4j3x .we7sd6::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");
}
.dcc6 .wu03xf::after, .dcc6 .we7sd6::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");
}
.smfm1 .wu03xf::after, .smfm1 .we7sd6::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");
}
.kf3i4 .wu03xf::after, .kf3i4 .we7sd6::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");
}
.h6uggt .wu03xf::after, .h6uggt .we7sd6::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");
}
.jvixt2 .wu03xf::after, .jvixt2 .we7sd6::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");
}
.k660 .wu03xf::after, .k660 .we7sd6::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 ────────*/
.xl17   .ac9nv8un::after, .xl17   .w1oz6wu1::after,
.grzywq9 .ac9nv8un::after, .grzywq9 .w1oz6wu1::after,
.ong60    .ac9nv8un::after, .ong60    .w1oz6wu1::after,
.kg8i7    .ac9nv8un::after, .kg8i7    .w1oz6wu1::after,
.vq0j6t    .ac9nv8un::after, .vq0j6t    .w1oz6wu1::after,
.dasb     .ac9nv8un::after, .dasb     .w1oz6wu1::after,
.uz2l    .ac9nv8un::after, .uz2l    .w1oz6wu1::after,
.maouybu   .ac9nv8un::after, .maouybu   .w1oz6wu1::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;
}
.xl17 .ac9nv8un::after, .xl17 .w1oz6wu1::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");
}
.grzywq9 .ac9nv8un::after, .grzywq9 .w1oz6wu1::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");
}
.ong60 .ac9nv8un::after, .ong60 .w1oz6wu1::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");
}
.kg8i7 .ac9nv8un::after, .kg8i7 .w1oz6wu1::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");
}
.vq0j6t .ac9nv8un::after, .vq0j6t .w1oz6wu1::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");
}
.dasb .ac9nv8un::after, .dasb .w1oz6wu1::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");
}
.uz2l .ac9nv8un::after, .uz2l .w1oz6wu1::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");
}
.maouybu .ac9nv8un::after, .maouybu .w1oz6wu1::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 ─────────────────────────────────────────────────────────*/
.wl69t4 { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


.rr3gw63 {
  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 */
.rr3gw63 > [itemprop="item"] { display: contents; }
.rr3gw63:hover { background: var(--bg-hover); }
.z00i {
  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 */
.k6ktc8 .z00i { background: #1a1a1a; }
.ikq598z .z00i { background: rgba(128,128,128,.12); }
.sene5bs .z00i { background: var(--bg-raised); }
.bm1amg .z00i { background: transparent; padding: 0; }
.b0xjq { max-height: 34px; max-width: 80px; object-fit: contain; }
.ldwam { font-weight: 700; font-size: .85rem; color: var(--accent-light); }
.lb3o { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; }
.ev893xy { font-weight: 700; font-size: .88rem; color: var(--text-primary); flex-shrink: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dt9zwd { color: var(--accent); font-size: .8rem; letter-spacing: 1px; flex-shrink: 1; min-width: 0; }
.i9tk0 { display: flex; flex-direction: column; align-items: center; font-size: .78rem; flex: 1 1 0; min-width: 0; }
.pu5t3h { color: var(--text-label); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.vnsb { color: var(--text-value); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.q4g6qs2y { margin-left: auto; flex-shrink: 0; white-space: nowrap; }
.q4g6qs2y.we7sd6 { padding-left: 16px !important; padding-right: 16px !important; }
/* планшет / мобіль: 1 картка в ряд */
@media (max-width: 720px) {
  .wl69t4 { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .wl69t4 .rr3gw63 { flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px; }
  .wl69t4 .lb3o { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
  .wl69t4 .z00i { width: 100%; min-width: unset; height: 52px; }
  .wl69t4 .b0xjq { max-height: 40px; max-width: 110px; }
  .wl69t4 .ev893xy { min-width: unset; text-align: center; white-space: normal; }
  .wl69t4 .i9tk0 { flex-direction: row; justify-content: space-between; width: 100%; border-top: 1px solid var(--border); padding-top: 5px; }
  .wl69t4 .q4g6qs2y { width: 100%; text-align: center; margin-left: 0; }
  .qyrvks .rr3gw63 { row-gap: 8px !important; gap: 8px !important; }
}

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.eqc4q {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.iz7nyk {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.es18 {
  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;
}
.es18 img { max-width: 80px; max-height: 50px; object-fit: contain; }
.gvv4nbus { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.wpinb { flex: 1; }
.wpinb h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.crri { color: var(--c-stars); font-size: 1.1rem; }
.yakoh { margin-bottom: 8px; }
.gznlc { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.wje2::before   { content: "★ "; color: var(--accent); }
.sqt6r::before { content: "↓ "; color: var(--accent); }
.k8cji::before { content: "✦ "; color: var(--accent); }
.f264tad { flex-shrink: 0; }
.idf81 img.rwg1jsv { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.t5b7kj9a { padding: 20px 24px; }
.yk0ws { color: var(--text-muted); margin-bottom: 16px; }
.qw6fhvij { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.vdb6z, .t3ujdf { list-style: none; font-size: 0.9rem; }
.vdb6z li { color: var(--c-pros); margin-bottom: 4px; }
.t3ujdf li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.vdb6z li::before { content: "✓"; margin-right: 5px; }
.t3ujdf li::before { content: "✗"; margin-right: 5px; }
.zc4ha .vdb6z li::before { content: "→"; }
.zc4ha .t3ujdf li::before { content: "–"; }
.a2bw3n  .vdb6z li::before { content: "★"; }
.a2bw3n  .t3ujdf li::before { content: "✕"; }
.mek5f    .vdb6z li::before { content: "◆"; }
.mek5f    .t3ujdf li::before { content: "▲"; }
.n4ezs  .vdb6z li::before { content: "▶"; }
.n4ezs  .t3ujdf li::before { content: "■"; }
.nmye2e { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.s6wnqq { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.gxutb { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

/* ── Brand card (single brand, two-column hero) ─────────────────────────────*/
/* ═══════════════════════════════════════════════════════════════════════════
   BRAND CARD — shared tokens
   ═══════════════════════════════════════════════════════════════════════════ */
.uxvbq {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.nbjdrgx {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.nbjdrgx img { max-width: 100%; max-height: 100%; object-fit: contain; }
.nqhjqb { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.fx0axfe9 { display: flex; align-items: center; gap: 8px; }
.fx0axfe9 .crri { font-size: .95rem; }
.fx0axfe9 strong { font-size: 1.1rem; color: var(--text); }
.ao6uobot { border-radius: 8px; overflow: hidden; }
.ao6uobot img { width: 100%; display: block; border-radius: 8px; }
.fv1i2 { text-align: center; flex-shrink: 0; }
.vkxrpix2 { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.dxfz365f { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.fszq21 { font-size: .88rem; font-weight: 600; color: var(--text); }
.oxjvjxbu .fszq21 { font-size: 1.02rem; font-weight: 700; color: var(--accent); }
.uxvbq .nof57i { gap: 10px; }
.uxvbq .cnkge, .uxvbq .ttb05 { padding: 12px; }
.uxvbq .cnkge ul, .uxvbq .ttb05 ul { margin: 4px 0 0; padding-left: 18px; }
.uxvbq .cnkge li, .uxvbq .ttb05 li { font-size: .85rem; margin-bottom: 3px; }
.czezx { font-size: .8rem; color: var(--text-muted); margin-top: 10px; }
.czezx strong { color: var(--text-secondary); }
.czezx .s6wnqq { margin: 2px 4px 2px 0; }

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

/* ── LAYOUT 2: hero — full-width screenshot header ────────────────────────── */
.rp8f {
  position: relative; max-height: 240px; overflow: hidden;
}
.rp8f > img { width: 100%; display: block; object-fit: cover; min-height: 160px; }
.wfhtr {
  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;
}
.wfhtr .nbjdrgx { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.wfhtr .nqhjqb { color: #fff; font-size: 1.25rem; }
.wfhtr .fx0axfe9 strong { color: #fff; }
.wfhtr .fx0axfe9 .crri { filter: brightness(1.2); }
.wfhtr .fv1i2 { margin-left: auto; white-space: nowrap; }
.agjfx { flex: 1; }
.xlvc4 {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-alt);
}
.xlvc4 .fv1i2 { margin-left: auto; }
.ph71y9 { display: flex; flex-direction: column; gap: 16px; padding: 20px 24px; }
.lqpr8wjq .cllnwvb {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.lqpr8wjq .vkxrpix2 {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.lqpr8wjq .oxjvjxbu { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .wfhtr { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .ph71y9 { padding: 16px; }
  .lqpr8wjq .vkxrpix2 { min-width: 50%; }
}

/* ── LAYOUT 3: magazine — editorial 3-column ──────────────────────────────── */
.hydr14z6 {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.xplu { flex: 1; }
.xplu .nqhjqb { font-size: 1.3rem; }
.d2a12 {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.pslg9f { padding: 16px; border-right: 1px solid var(--border-alt); }
.pslg9f .ao6uobot { height: 100%; }
.pslg9f .ao6uobot img { height: 100%; object-fit: cover; }
.sognrq { padding: 0; border-right: 1px solid var(--border-alt); }
.sognrq .cllnwvb { display: flex; flex-direction: column; }
.sognrq .vkxrpix2 { border-bottom: 1px solid var(--border-alt); }
.sognrq .oxjvjxbu { background: var(--accent-bg); }
.mcel8qw0 { padding: 16px; }
.mcel8qw0 .nof57i { grid-template-columns: 1fr; }
.np9w {
  padding: 12px 24px; border-top: 1px solid var(--border-alt);
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .d2a12 { grid-template-columns: 1fr; }
  .pslg9f { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .sognrq { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .hydr14z6 { flex-wrap: wrap; padding: 16px; }
}

/* ── LAYOUT 4: compact — header bar → screenshot → data ──────────────────── */
.f428j {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border-alt);
}
.vzlr8 {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.vzlr8 .nbjdrgx { width: 72px; height: 50px; }
.vzlr8 .nqhjqb { font-size: 1rem; white-space: nowrap; }
.gx1igkr { border-bottom: 1px solid var(--border-alt); max-height: 280px; overflow: hidden; }
.gx1igkr img { width: 100%; display: block; object-fit: cover; }
.jd1qr8ml {
  display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; overflow: hidden;
}
.toeg .cllnwvb { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.toeg .vkxrpix2 { padding: 0; flex: 0 0 auto; gap: 6px; }
.toeg .oxjvjxbu { display: none; }
.toeg .nof57i { gap: 8px; }
.toeg .cnkge, .toeg .ttb05 { padding: 8px; }
@media (max-width: 480px) {
  .f428j { flex-direction: column; align-items: stretch; }
}

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

/* ── LAYOUT 6: scorecard — big score centerpiece ──────────────────────────── */
.av3je {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
  border-bottom: 1px solid var(--border-alt);
}
.vo4m2050 {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; text-align: center;
}
.u3537xim {
  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;
}
.shjz2k { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.shjz2k .r6430 { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.u3537xim .crri { font-size: .75rem; margin-top: 2px; }
.l4x5125 { padding: 12px; display: flex; align-items: center; flex: 1; }
.l4x5125 .ao6uobot { width: 100%; }
.euzha {
  padding: 0; border-bottom: 1px solid var(--border-alt);
}
.cyiu .cllnwvb {
  display: flex; flex-wrap: wrap;
}
.cyiu .vkxrpix2 {
  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;
}
.cyiu .vkxrpix2:last-child { border-right: none; }
.cyiu .dxfz365f { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.cyiu .oxjvjxbu { background: var(--accent-bg); }
.sv7whg1 { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 720px) {
  .av3je { grid-template-columns: 1fr; }
  .u3537xim { width: 100px; height: 100px; margin: 16px auto; }
  .shjz2k { font-size: 1.4rem; }
  .l4x5125 { justify-content: center; }
  .cyiu .vkxrpix2 { min-width: 50%; }
}

/* ── LAYOUT 7: stack — vertical full-width flow ──────────────────────────── */
.h4x1 {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.b6wtqfv { max-height: 240px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.b6wtqfv img { width: 100%; display: block; object-fit: cover; }
.kitc07 { padding: 16px 24px; border-bottom: 1px solid var(--border-alt); }
.k8eexdb3 .cllnwvb {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.k8eexdb3 .vkxrpix2 {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.k8eexdb3 .oxjvjxbu {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.k8eexdb3 .nof57i { margin: 0 24px; padding-top: 16px; }
.k8eexdb3 .czezx { padding: 0 24px; }
.hcmpv2 { padding: 16px 24px; border-top: 1px solid var(--border-alt); text-align: center; }
.hcmpv2 .fv1i2 { display: inline-block; }
@media (max-width: 540px) {
  .h4x1 { flex-wrap: wrap; padding: 14px 16px; }
  .kitc07 { padding: 12px 16px; }
  .k8eexdb3 .nof57i { margin: 0 16px; }
  .k8eexdb3 .czezx { padding: 0 16px; }
  .hcmpv2 { padding: 12px 16px; }
}


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

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

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.v0w3q9e .pu5t3h {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.v0w3q9e .vnsb {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.v0w3q9e .dt9zwd { color: var(--accent); }
.v0w3q9e .iz7nyk { background: var(--accent-bg); }
.v0w3q9e .wje2, .v0w3q9e .sqt6r, .v0w3q9e .k8cji {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

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

/* compact: менші відступи всюди */
.xhzq28 .rr3gw63 { padding: 8px 14px; gap: 12px; }
.xhzq28 .z00i { height: 32px; min-width: 52px; }
.xhzq28 .b0xjq { max-height: 24px; }
.xhzq28 .ev893xy { font-size: 0.82rem; }
.xhzq28 .iz7nyk { padding: 14px 18px; gap: 14px; }
.xhzq28 .t5b7kj9a { padding: 14px 18px; }
.xhzq28 .es18 { width: 70px; }
.xhzq28 .wpinb h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.qyrvks .wl69t4 {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.qyrvks .rr3gw63 {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); row-gap: 0; column-gap: 12px;
}
.qyrvks .rr3gw63:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.qyrvks .dt9zwd,
.qyrvks .eugvnu,
.qyrvks .zkalp9 { border-left: 1px solid var(--border); padding-left: 10px; }
.qyrvks .ev893xy { padding: 0 10px; }

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

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

/* ── casino-wide: високі горизонтальні картки з великим лого ───────────────*/
.jmy059s .wl69t4 { gap: 12px; }
.jmy059s .rr3gw63 {
  padding: 18px 24px; gap: 20px; border-radius: 12px;
  min-height: 80px;
}
.jmy059s .z00i {
  min-width: 90px; height: 64px; padding: 6px 12px; border-radius: 10px;
}
.jmy059s .b0xjq { max-height: 52px; max-width: 120px; }
.jmy059s .ev893xy { font-size: 1rem; }
.jmy059s .i9tk0 { font-size: .85rem; }
.jmy059s .vnsb { font-size: .9rem; }
.jmy059s .q4g6qs2y.we7sd6 { padding: 10px 24px !important; font-size: .9rem; }

/* ── casino-jumbo: дуже великі картки, лого + інтерфейс скриншот ──────────*/
.jtxff .wl69t4 { gap: 16px; }
.jtxff .rr3gw63 {
  padding: 24px 28px; gap: 24px; border-radius: 14px;
  min-height: 100px; border-width: 2px;
}
.jtxff .z00i {
  min-width: 110px; height: 80px; padding: 8px 14px; border-radius: 12px;
  background: var(--bg-raised);
}
.jtxff .b0xjq { max-height: 64px; max-width: 140px; }
.jtxff .ev893xy { font-size: 1.1rem; font-weight: 800; }
.jtxff .dt9zwd { font-size: .95rem; letter-spacing: 2px; }
.jtxff .i9tk0 { font-size: .9rem; }
.jtxff .vnsb { font-size: .95rem; font-weight: 700; }
.jtxff .pu5t3h { font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; }
.jtxff .q4g6qs2y.we7sd6 { padding: 12px 32px !important; font-size: .95rem; font-weight: 700; }

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

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.de9gyrls .eugvnu { flex: 1.8; }
.de9gyrls .eugvnu .vnsb {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}
.de9gyrls .eugvnu .pu5t3h { font-weight: 700; color: var(--text-primary); }
.de9gyrls .zcuj,
.de9gyrls .ws9bp4p5,
.de9gyrls .giy0een { flex: 0.75; opacity: 0.65; }

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

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

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

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

/* score в оглядах — ховаємо зірки */
.xjrh4b .yakoh .crri,
.vzned .yakoh .crri,
.jmhmsd .yakoh .crri { display: none; }

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

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

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

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.uvixom { margin-bottom: 0; }
.qahhch1i h2.kvpk9i { color: var(--accent-light); border-color: var(--accent); }
.bqyq h2.kvpk9i { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.vf4d34h .vfni     { background: #052e16; border-color: #10b981; }
.vf4d34h .l9dm { background: #2d0a1e; border-color: #f43f5e; }
.vf4d34h .fdz0b    { background: #1e1036; border-color: #a855f7; }
.vf4d34h .k4o63vl strong  { color: #f1f5f9; }
.vf4d34h .k4o63vl p       { color: #cbd5e1; }
.vf4d34h .lvtq    .vfni     .my6esgbm::before,
.vf4d34h .pwtlw6hv  .vfni     .my6esgbm::before,
.vf4d34h .qpg3nu  .vfni     .my6esgbm::before,
.vf4d34h .e5bxz2at .vfni     .my6esgbm::before { color: #10b981; }
.vf4d34h .lvtq    .l9dm .my6esgbm::before,
.vf4d34h .pwtlw6hv  .l9dm .my6esgbm::before,
.vf4d34h .qpg3nu  .l9dm .my6esgbm::before,
.vf4d34h .e5bxz2at .l9dm .my6esgbm::before { color: #f43f5e; }
.vf4d34h .lvtq    .fdz0b    .my6esgbm::before,
.vf4d34h .pwtlw6hv  .fdz0b    .my6esgbm::before,
.vf4d34h .qpg3nu  .fdz0b    .my6esgbm::before,
.vf4d34h .e5bxz2at .fdz0b    .my6esgbm::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.nua4kg .vfni     { background: #2d2000; border-color: #eab308; }
.nua4kg .l9dm { background: #2d0b0b; border-color: #ef4444; }
.nua4kg .fdz0b    { background: #2d1600; border-color: #f97316; }
.nua4kg .k4o63vl strong  { color: #f1f5f9; }
.nua4kg .k4o63vl p       { color: #cbd5e1; }
.nua4kg .lvtq    .vfni     .my6esgbm::before,
.nua4kg .pwtlw6hv  .vfni     .my6esgbm::before,
.nua4kg .qpg3nu  .vfni     .my6esgbm::before,
.nua4kg .e5bxz2at .vfni     .my6esgbm::before { color: #eab308; }
.nua4kg .lvtq    .l9dm .my6esgbm::before,
.nua4kg .pwtlw6hv  .l9dm .my6esgbm::before,
.nua4kg .qpg3nu  .l9dm .my6esgbm::before,
.nua4kg .e5bxz2at .l9dm .my6esgbm::before { color: #ef4444; }
.nua4kg .lvtq    .fdz0b    .my6esgbm::before,
.nua4kg .pwtlw6hv  .fdz0b    .my6esgbm::before,
.nua4kg .qpg3nu  .fdz0b    .my6esgbm::before,
.nua4kg .e5bxz2at .fdz0b    .my6esgbm::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.ik3p64 .vfni     { background: #0c1a2e; border-color: #38bdf8; }
.ik3p64 .l9dm { background: #12103a; border-color: #818cf8; }
.ik3p64 .fdz0b    { background: #0a2020; border-color: #2dd4bf; }
.ik3p64 .k4o63vl strong  { color: #f1f5f9; }
.ik3p64 .k4o63vl p       { color: #cbd5e1; }
.ik3p64 .lvtq    .vfni     .my6esgbm::before,
.ik3p64 .pwtlw6hv  .vfni     .my6esgbm::before,
.ik3p64 .qpg3nu  .vfni     .my6esgbm::before,
.ik3p64 .e5bxz2at .vfni     .my6esgbm::before { color: #38bdf8; }
.ik3p64 .lvtq    .l9dm .my6esgbm::before,
.ik3p64 .pwtlw6hv  .l9dm .my6esgbm::before,
.ik3p64 .qpg3nu  .l9dm .my6esgbm::before,
.ik3p64 .e5bxz2at .l9dm .my6esgbm::before { color: #818cf8; }
.ik3p64 .lvtq    .fdz0b    .my6esgbm::before,
.ik3p64 .pwtlw6hv  .fdz0b    .my6esgbm::before,
.ik3p64 .qpg3nu  .fdz0b    .my6esgbm::before,
.ik3p64 .e5bxz2at .fdz0b    .my6esgbm::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.o1xtjadu .vfni     { background: var(--accent-bg); border-color: var(--accent); }
.o1xtjadu .l9dm { background: var(--accent-bg-light); border-color: var(--accent-light); }
.o1xtjadu .fdz0b    { background: var(--accent-bg); border-color: var(--accent-pale); }
.o1xtjadu .lvtq    .my6esgbm::before,
.o1xtjadu .pwtlw6hv  .my6esgbm::before,
.o1xtjadu .qpg3nu  .my6esgbm::before,
.o1xtjadu .e5bxz2at .my6esgbm::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.yduhe .cnkge ul li,
.yduhe .vdb6z li         { color: #4ade80; }
.yduhe .cnkge .b1xeic7 { color: #22c55e; }
.yduhe .ttb05 ul li,
.yduhe .t3ujdf li         { color: #f87171; }
.yduhe .ttb05 .ejeob4 { color: #ef4444; }

/* blue: синій pros / amber cons */
.rny6ao .cnkge { background: #0c1a2e; }
.rny6ao .ttb05 { background: #2d1f00; }
.rny6ao .cnkge .b1xeic7 { color: #93c5fd; }
.rny6ao .ttb05 .ejeob4 { color: #fcd34d; }
.rny6ao .cnkge ul li,
.rny6ao .vdb6z li            { color: #bfdbfe; }
.rny6ao .ttb05 ul li,
.rny6ao .t3ujdf li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.t2zlaqm .cnkge { background: var(--accent-bg); }
.t2zlaqm .ttb05 { background: var(--accent-bg-light); }
.t2zlaqm .cnkge .b1xeic7 { color: var(--accent-pale); }
.t2zlaqm .ttb05 .ejeob4 { color: var(--accent-light); }
.t2zlaqm .cnkge ul li,
.t2zlaqm .vdb6z li          { color: var(--text-body); }
.t2zlaqm .ttb05 ul li,
.t2zlaqm .t3ujdf li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.g5ylz .b1xeic7::before { content: "✓ "; }
.g5ylz .ejeob4::before { content: "✗ "; }

/* arrows: → / ← */
.zc4ha .b1xeic7::before { content: "→ "; }
.zc4ha .ejeob4::before { content: "← "; }

/* marks: ★ / ✕ */
.a2bw3n .b1xeic7::before { content: "★ "; }
.a2bw3n .ejeob4::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.mek5f .b1xeic7::before { content: "◆ "; }
.mek5f .ejeob4::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.iih8a9 .k4o63vl { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.iih8a9 .vfni     { border-top-color: var(--c-tip-border); }
.iih8a9 .l9dm { border-top-color: var(--c-warn-border); }
.iih8a9 .fdz0b    { border-top-color: #60a5fa; }

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

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

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

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

.lvtq .my6esgbm,
.pwtlw6hv .my6esgbm,
.qpg3nu .my6esgbm,
.e5bxz2at .my6esgbm { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.lvtq .my6esgbm::before,
.pwtlw6hv .my6esgbm::before,
.qpg3nu .my6esgbm::before,
.e5bxz2at .my6esgbm::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.lvtq .vfni     .my6esgbm::before { content: "✦"; color: var(--c-tip-border); }
.lvtq .l9dm .my6esgbm::before { content: "▲"; color: var(--c-warn-border); }
.lvtq .fdz0b    .my6esgbm::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.pwtlw6hv .vfni     .my6esgbm::before { content: "★"; color: var(--c-tip-border); }
.pwtlw6hv .l9dm .my6esgbm::before { content: "◆"; color: var(--c-warn-border); }
.pwtlw6hv .fdz0b    .my6esgbm::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.qpg3nu .vfni     .my6esgbm::before { content: "▶"; color: var(--c-tip-border); }
.qpg3nu .l9dm .my6esgbm::before { content: "■"; color: var(--c-warn-border); }
.qpg3nu .fdz0b    .my6esgbm::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.e5bxz2at .vfni     .my6esgbm::before { content: "→"; color: var(--c-tip-border); }
.e5bxz2at .l9dm .my6esgbm::before { content: "⬥"; color: var(--c-warn-border); }
.e5bxz2at .fdz0b    .my6esgbm::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.cihy0 .y3om .ydkd,
.cihy0 .juh1c2ve .ydkd  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.cihy0 .gpr1sv                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.cihy0 .rr3gw63                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.cihy0 .eqc4q            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.cihy0 .jqwqwrx          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.cihy0 .tubr1nll                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.blcrj .y3om .ydkd,
.blcrj .juh1c2ve .ydkd,
.blcrj .gpr1sv,
.blcrj .rr3gw63,
.blcrj .eqc4q,
.blcrj .jqwqwrx,
.blcrj .tubr1nll,
.blcrj .b2ytoj .k4o63vl { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.wo84ms   body, .wo84ms   { font-size: 0.9rem; }
.wo84ms   .wb1mnuw, .wo84ms .qm5v, .wo84ms .bhgq,
.wo84ms   .wrs6, .wo84ms .j1ctm { font-size: 0.9rem; }
.wo84ms   .tngs2, .wo84ms .yb1w { font-size: 0.9rem; }

.e776   .wb1mnuw, .e776 .qm5v, .e776 .bhgq,
.e776   .wrs6, .e776 .j1ctm { font-size: 0.9rem; }
.e776   .tngs2, .e776 .yb1w { font-size: 0.9rem; }

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

.jl8lzizg   .wb1mnuw, .jl8lzizg .qm5v, .jl8lzizg .bhgq,
.jl8lzizg   .wrs6, .jl8lzizg .j1ctm { font-size: 1.08rem; }
.jl8lzizg   .tngs2, .jl8lzizg .yb1w { font-size: 1.05rem; }
.jl8lzizg   .y5fbl7ih { font-size: 0.97rem; }

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

/* large */
.chxh .k4td      { font-size: 3.2rem; }
.chxh h2.kvpk9i { font-size: 1.9rem; }
.chxh h3.tfp2w2yy     { font-size: 1.4rem; }

/* display */
.hnpnxhzc .k4td      { font-size: 3.8rem; }
.hnpnxhzc h2.kvpk9i { font-size: 2.2rem; }
.hnpnxhzc h3.tfp2w2yy     { font-size: 1.6rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.moz3n   .uvixom + .uvixom::before,
.ylj5pzbt  .uvixom + .uvixom::before,
.q5gstpvb   .uvixom + .uvixom::before,
.g6dq   .uvixom + .uvixom::before,
.yieky4ri   .uvixom + .uvixom::before,
.flct .uvixom + .uvixom::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}

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

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

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

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

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

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

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

/* section_bg=stripe: парні секції мають bg-card */
.l0y78 .lsp3c94o .uvixom:nth-child(even)::before,
.l0y78 .fi0m .uvixom:nth-child(even)::before,
.l0y78 .loe4xaq9 .uvixom:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.lsp3c94o .uvixom + .uvixom::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 гребені */
.fi0m .uvixom + .uvixom::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: глибока дуга */
.loe4xaq9 .uvixom + .uvixom::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 у формі хвилі */
.wey72a1 .st5iyyy,
.vedcnnx .st5iyyy,
.mypt9ldu .st5iyyy { overflow: hidden; }

/* wave: додатковий простір щоб хвиля не закривала CTA */
.wey72a1 .hvthify,
.vedcnnx .hvthify { margin-bottom: 60px; }
.mypt9ldu .hvthify { margin-bottom: 70px; }
.wey72a1 .ebs2lg,
.vedcnnx .ebs2lg { padding-bottom: 60px; }
.mypt9ldu .ebs2lg { padding-bottom: 70px; }

.wey72a1 .st5iyyy::before,
.vedcnnx .st5iyyy::before,
.mypt9ldu .st5iyyy::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 гребінь) */
.wey72a1 .st5iyyy::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 гребені */
.vedcnnx .st5iyyy::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: глибока дуга */
.mypt9ldu .st5iyyy::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 */
.mnfj .n9amg95 { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.f20snh8t .n9amg95 { background: linear-gradient(45deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%); }
.ca4c  .n9amg95 { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.v0c0yjv  .n9amg95 { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }

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

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

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

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

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

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

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

/* Великі блочні елементи — clear float щоб не стискались */
.czm6k .whx87n22,
.czm6k .wl69t4,
.twhaw72 .whx87n22,
.twhaw72 .wl69t4,
.avm2b .whx87n22,
.avm2b .wl69t4 { clear: both; }

/* Маркери списків не мають налазити на float-картинку */
.czm6k .tngs2,
.czm6k .yb1w,
.twhaw72 .tngs2,
.twhaw72 .yb1w,
.avm2b .tngs2,
.avm2b .yb1w { overflow: hidden; }


@media (max-width: 640px) {
  .czm6k .pog2lhn,
  .twhaw72 .pog2lhn,
  .avm2b .pog2lhn { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1100px (задано в .vwlmo, .sy8e9z7, .aqgqih90) */
.u6ivp .vwlmo,
.u6ivp .sy8e9z7,
.u6ivp .aqgqih90  { max-width: 1100px; }
.u6ivp { --content-mw: 1100px; }
.xtm8bu .vwlmo,
.xtm8bu .sy8e9z7,
.xtm8bu .aqgqih90  { max-width: 1200px; }
.xtm8bu { --content-mw: 1200px; }
.kuzrznb .vwlmo,
.kuzrznb .sy8e9z7,
.kuzrznb .aqgqih90  { max-width: 1320px; }
.kuzrznb { --content-mw: 1320px; }

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

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

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

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

/* content-width: above — обидва класи на <body>, тому без пробілу */
.u6ivp.u4i6dsv .x1bvw { max-width: 1100px; }
.xtm8bu.u4i6dsv .x1bvw { max-width: 1200px; }
.kuzrznb.u4i6dsv .x1bvw { max-width: 1320px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.u6ivp .aahix { max-width: 1100px; }
.xtm8bu .aahix { max-width: 1200px; }
.kuzrznb .aahix { max-width: 1320px; }

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

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.ezaw7c { font-weight: 300; }
.ezaw7c h2.kvpk9i { font-weight: 600; }
.ezaw7c h3.tfp2w2yy     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.z1xq5w7h { font-weight: 500; }
.z1xq5w7h h2.kvpk9i { font-weight: 800; }
.z1xq5w7h h3.tfp2w2yy     { font-weight: 700; }
/* fw-600: semibold */
.vvn4fc { font-weight: 600; }
.vvn4fc h2.kvpk9i { font-weight: 900; }
.vvn4fc h3.tfp2w2yy     { font-weight: 800; }
.vvn4fc .k4o63vl strong,
.vvn4fc .k4o63vl strong { font-weight: 600; }
/* .vvn4fc .qm5v, .vvn4fc .wrs6 { font-weight: 600; } */

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

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

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

/* minimal */
.zfut .aqgqih90 { text-align: center; }
.zfut .fra8a { justify-content: center; margin-bottom: 16px; }
.zfut .okuak9 { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .aqgqih90 { padding-left: 16px; padding-right: 16px; }
  .yio5 .aqgqih90 { padding: 20px 16px; }
  .fra8a { gap: 4px 12px; }
  .okuak9 { font-size: 0.78rem; }
}


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


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

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

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

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

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

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

/* dark: завжди темний, незалежно від теми */
.ausyagjx .smue      { background: #0d1117; border-bottom-color: #21262d; }
.ausyagjx .k3oganh { color: var(--accent-light); }
.ausyagjx .f67997 { --msep-color: #8b949e; }
.ausyagjx .f67997 a { color: #8b949e; }
.ausyagjx .f67997 a:hover { color: var(--accent-light); }
.ausyagjx .qk3hd76x { color: #8b949e; }
.ausyagjx .fvf96e { background: #0d1117; border-top-color: #21262d; }
.ausyagjx .okuak9,
.ausyagjx .h67i59 { color: #6e7681; }
.ausyagjx .dz2bd a, .ausyagjx .fra8a a,
.ausyagjx .yo88 a, .ausyagjx .z4uf a,
.ausyagjx .clnam a, .ausyagjx .pjbvu6v { color: #8b949e; }
.ausyagjx .dz2bd a:hover, .ausyagjx .fra8a a:hover,
.ausyagjx .yo88 a:hover, .ausyagjx .z4uf a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .ausyagjx .f67997 { background: #0d1117; border-top-color: #21262d; }
  .ausyagjx .f67997 li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.tvawk .smue      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.tvawk .k3oganh { color: var(--accent); }
.tvawk .f67997 { --msep-color: #475569; }
.tvawk .f67997 a { color: #475569; }
.tvawk .f67997 a:hover { color: var(--accent); }
.tvawk .qk3hd76x { color: #64748b; }
.tvawk .fvf96e { background: #f0f4f8; border-top-color: #cbd5e1; }
.tvawk .okuak9,
.tvawk .h67i59 { color: #64748b; }
.tvawk .dz2bd a, .tvawk .fra8a a,
.tvawk .yo88 a, .tvawk .z4uf a,
.tvawk .clnam a, .tvawk .pjbvu6v { color: #374151; }
.tvawk .dz2bd a:hover, .tvawk .fra8a a:hover,
.tvawk .yo88 a:hover, .tvawk .z4uf a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .tvawk .f67997 { background: #f0f4f8; border-top-color: #cbd5e1; }
  .tvawk .f67997 li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.kb3b1 .smue      { background: var(--accent); border-bottom-color: var(--accent-light); }
.kb3b1 .k3oganh { color: #fff; }
.kb3b1 .f67997 { --msep-color: rgba(255,255,255,0.82); }
.kb3b1 .f67997 a { color: rgba(255,255,255,0.82); }
.kb3b1 .f67997 a:hover { color: #fff; }
.kb3b1 .qk3hd76x { color: rgba(255,255,255,0.9); }
.kb3b1 .rss1f6y a { color: var(--text-primary) !important; }
.kb3b1 .rss1f6y a:hover { color: var(--accent) !important; }
.kb3b1 .fvf96e { background: var(--accent); border-top-color: var(--accent-light); }
.kb3b1 .okuak9,
.kb3b1 .h67i59 { color: rgba(255,255,255,0.72); }
.kb3b1 .dz2bd a, .kb3b1 .fra8a a,
.kb3b1 .yo88 a, .kb3b1 .z4uf a,
.kb3b1 .clnam a, .kb3b1 .pjbvu6v { color: rgba(255,255,255,0.82); }
.kb3b1 .dz2bd a:hover, .kb3b1 .fra8a a:hover,
.kb3b1 .yo88 a:hover, .kb3b1 .z4uf a:hover { color: #fff; }
@media (max-width: 640px) {
  .kb3b1 .f67997 { background: var(--accent); border-top-color: var(--accent-light); }
  .kb3b1 .f67997 li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.vz6ugrr .smue {
  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);
}
.vz6ugrr .fvf96e {
  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) {
  .vz6ugrr .f67997 {
    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 */
.dkng .cepnmtwq { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.xkaelz .cepnmtwq { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.hric6 .cepnmtwq { min-height: 72px; height: auto; }
.gsrmf .cepnmtwq { min-height: 84px; height: auto; }

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

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


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

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.hxp1, .gvfrd8zt {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lv8b .hxp1,
.lv8b .gvfrd8zt { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.n3ketza .hxp1,
.n3ketza .gvfrd8zt { 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; }
.c86h .hxp1,
.c86h .gvfrd8zt { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.w71j .hxp1,
.w71j .gvfrd8zt { 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 */
.gy6h   .f67997 a { font-weight: 500; }
.nwpiky7m .f67997 a { font-weight: 600; }
.ckep     .f67997 a { font-weight: 700; }
.zxtw6    .f67997 a { font-weight: 800; letter-spacing: 0.01em; }

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

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .v7fk .qk3hd76x,
  .t5hcyv .qk3hd76x,
  .e1ep68o .qk3hd76x,
  .qlkobv .qk3hd76x,
  .znc26z .qk3hd76x {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .v7fk .qk3hd76x::before,
  .t5hcyv .qk3hd76x::before,
  .e1ep68o .qk3hd76x::before,
  .qlkobv .qk3hd76x::before,
  .znc26z .qk3hd76x::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .v7fk .qk3hd76x::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 лінії рівні */
  .t5hcyv .qk3hd76x::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% */
  .e1ep68o .qk3hd76x::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% */
  .qlkobv .qk3hd76x::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% */
  .znc26z .qk3hd76x::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) {
  .jmo4 .qk3hd76x {
    padding: 5px 14px;
  }
  .jmo4 .f67997 {
    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;
  }
  .jmo4 .f67997 li a {
    border-bottom: none; padding: 10px 22px;
  }
  .jmo4 .f67997 li a:hover { background: var(--bg-raised); }
}

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

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

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .tb6g4 .qk3hd76x {
    padding: 5px 10px;
  }
  .tb6g4 .f67997 {
    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;
  }
  .tb6g4 .f67997.eomqf { opacity: 1; pointer-events: auto; }
  .tb6g4 .f67997 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) {
  .trxsxhx     .qk3hd76x { border-radius: 0 !important; }
  .l28d   .qk3hd76x { border-radius: 8px !important; }
  .of5463 .qk3hd76x { border-radius: 50% !important; }
  .v6d3ql66   .qk3hd76x { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .dt9zwd / .crri) */
.l4n1a    .dt9zwd, .l4n1a    .crri { color: #f59e0b; }
.ps8y      .dt9zwd { font-size: 1rem; letter-spacing: 1.5px; }
.ps8y      .crri   { font-size: 1.35rem; }
.iy1fvlb    .dt9zwd, .iy1fvlb    .crri { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.f6brim     .dt9zwd, .f6brim     .crri { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.s3c7x .dt9zwd, .s3c7x .crri { color: var(--accent); letter-spacing: 2px; }
.d9d6a9f3   .dt9zwd, .d9d6a9f3   .crri { color: #e91e63; letter-spacing: 2px; }
.jd3zf2tm  .dt9zwd, .jd3zf2tm  .crri { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.pxaghz6f     .dt9zwd, .pxaghz6f     .crri { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ── Byline slots — position control ── */
.eqy2d{display:none}
.eqy2d:empty,.jewrmx3e:empty{display:none}
.s01cg{position:relative;overflow:visible}

/* hero slot — shown for all hero positions */
.flynha .trw4,.ikd9pjps .trw4,
.pigi3r5 .trw4,.ckqt .trw4,
.sbpk .trw4,.k7z0ekc .trw4{display:block}
.zyd67 .qy5x6{display:block}

/* shared overlay: centered container matching hero-content width (always 1100px) */
.flynha .trw4,.ikd9pjps .trw4,
.pigi3r5 .trw4,.ckqt .trw4,
.sbpk .trw4{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 */
.flynha .trw4 .jewrmx3e,.ikd9pjps .trw4 .jewrmx3e,
.pigi3r5 .trw4 .jewrmx3e,.ckqt .trw4 .jewrmx3e,
.sbpk .trw4 .jewrmx3e{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 */
.flynha .x29rie0f,.ikd9pjps .x29rie0f,
.pigi3r5 .x29rie0f,.ckqt .x29rie0f,
.sbpk .x29rie0f{background:transparent!important;border:none!important;padding:0;border-radius:0;color:inherit!important}
/* top positions */
.flynha .trw4,.ikd9pjps .trw4{top:12px}
.flynha .trw4 .jewrmx3e{margin-right:auto}
.ikd9pjps .trw4 .jewrmx3e{margin-left:auto}
.ikd9pjps .trw4{text-align:right}
/* bottom positions */
.pigi3r5 .trw4,.ckqt .trw4{bottom:12px}
.pigi3r5 .trw4 .jewrmx3e{margin-right:auto}
.ckqt .trw4 .jewrmx3e{margin-left:auto}
.ckqt .trw4{text-align:right}
/* center overlay at bottom of hero */
.sbpk .trw4{bottom:16px}
.sbpk .trw4 .jewrmx3e{margin:0 auto}

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

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

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

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

/* cards: mini bordered cards */
.dpc3 .x29rie0f{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}
.dpc3 .uw7m29k::before{content:""}

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

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

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

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

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

/* ── Date background variants ── */
.isk6im6{--date-bg:var(--accent-bg)}
.dtts6{--date-bg:var(--accent-bg-light)}
.fb3bqjt{--date-bg:transparent}

/* ── Date separator variants ── */
.olb74n6 .uw7m29k::before{content:""}
.bmtl8 .uw7m29k::before{content:"•";opacity:.4}
.bmtl8 .x29rie0f + .x29rie0f::before{content:"•";margin-right:6px;opacity:.4}
.q2172wie .uw7m29k::before{content:"/";opacity:.35}
.q2172wie .x29rie0f + .x29rie0f::before{content:"/";margin-right:6px;opacity:.35}
.qqpjbbe3 .uw7m29k::before{content:"|";opacity:.3}
.qqpjbbe3 .x29rie0f + .x29rie0f::before{content:"|";margin-right:6px;opacity:.3}
.xtua .uw7m29k::before{content:"—";opacity:.3}
.xtua .x29rie0f + .x29rie0f::before{content:"—";margin-right:6px;opacity:.3}
.ugptz4b3 .uw7m29k::before{content:"◆";font-size:.5em;opacity:.35}
.ugptz4b3 .x29rie0f + .x29rie0f::before{content:"◆";font-size:.5em;margin-right:6px;opacity:.35}
.p6bhov .uw7m29k::before{content:"·";opacity:.4}
.p6bhov .x29rie0f + .x29rie0f::before{content:"·";margin-right:6px;opacity:.4}
.g1x8dq1u .uw7m29k::before{content:"›";opacity:.4}
.g1x8dq1u .x29rie0f + .x29rie0f::before{content:"›";margin-right:6px;opacity:.4}
.labu .uw7m29k::before{content:"→";opacity:.35;font-size:.85em}
.labu .x29rie0f + .x29rie0f::before{content:"→";font-size:.85em;margin-right:6px;opacity:.35}


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

/* author box variants */
.i175o .epnpm0ch{background:var(--surface-alt);border-radius:var(--radius, 8px);border:1px solid var(--border)}
.riqcjpce .epnpm0ch{border-top:3px solid var(--accent);padding-top:18px}
.auevg .epnpm0ch{border-left:3px solid var(--accent);border-radius:0}
.ax6dbapd .epnpm0ch{padding:20px 0}

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

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


/* ── color scheme ── */
:root {
  --accent:          #9a9ac4;
  --accent-light:    #c9c8f4;
  --accent-pale:     #e1e0ff;
  --grad-start:      #303154;
  --grad-end:        #6e6f96;
  --bg-page: #0e0e12;
  --bg-surface: #0e0e12;
  --bg-card: #131318;
  --bg-card-inner: #191920;
  --bg-raised: #1f1f26;
  --bg-hover: #25252e;
  --border: #484750;
  --border-alt: #76747f;
  --border-section: #484750;
  --text-primary: #e7e4f0;
  --text-muted: #acaab5;
  --text-body: #c8c5cb;
  --text-sub: #9f9da3;
  --text-faint: #6b6a6f;
  --text-dim: #535257;
  --text-label: #858388;
  --text-value: #bab8be;
  --accent-bg:       #2c2d50;
  --accent-bg-light: #37385c;
  --bg-tip:        #1a2e1a;
  --bg-warning:    #2d1f0e;
  --bg-info:       #1a1f2e;
  --bg-pros:       #1a2e1a;
  --bg-cons:       #2d1a1a;
  --c-pros:        #6ee7b7;
  --c-cons:        #fca5a5;
  --c-pros-label:  #34d399;
  --c-tip-border:  #34d399;
  --c-warn-border: #f59e0b;
  --c-stars:       #f59e0b;
  --c-arrow:       #f59e0b;
  --c-tag-pay:     #6ee7b7;
}
:root { --logo-bg-opacity: 69%; }

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

.b93wr .my6esgbm { font-size: 0; width: 1.2rem; flex-shrink: 0; }.b93wr .my6esgbm::before {  content: ""; display: inline-block;  font-family: "Font Awesome 6 Free"; font-weight: 900;  font-size: 1.1rem; line-height: 1; }.b93wr .vfni     .my6esgbm::before { content: "";  color: var(--c-tip-border); }.b93wr .l9dm .my6esgbm::before { content: ""; color: var(--c-warn-border); }.b93wr .fdz0b    .my6esgbm::before { content: ""; color: #60a5fa; }.vf4d34h .b93wr .vfni     .my6esgbm::before { color: #10b981; }.vf4d34h .b93wr .l9dm .my6esgbm::before { color: #f43f5e; }.vf4d34h .b93wr .fdz0b    .my6esgbm::before { color: #a855f7; }.nua4kg  .b93wr .vfni     .my6esgbm::before { color: #eab308; }.nua4kg  .b93wr .l9dm .my6esgbm::before { color: #ef4444; }.nua4kg  .b93wr .fdz0b    .my6esgbm::before { color: #f97316; }.ik3p64  .b93wr .vfni     .my6esgbm::before { color: #38bdf8; }.ik3p64  .b93wr .l9dm .my6esgbm::before { color: #818cf8; }.ik3p64  .b93wr .fdz0b    .my6esgbm::before { color: #2dd4bf; }.o1xtjadu .b93wr .my6esgbm::before { color: var(--accent-light) !important; }

.cr4wnkq .hney23sy, .cr4wnkq .kb0i0okd { min-height: 420px; }

.b41amdtq::before { content: '>'; }

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