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

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

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

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

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

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

/* hero-flat: без фону, просто текст на page bg (WP-style) */
.emhzp8fz {
  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);
}
.emhzp8fz .ddsgpr0 {
  width: 100%; max-width: 1100px; padding: 24px 24px;
}
.emhzp8fz .fiasb { color: var(--text-primary); text-shadow: none; }
.emhzp8fz .mpo2hapo { color: var(--text-muted); }
.emhzp8fz .bvvngo { margin-top: 16px; }
.emhzp8fz, .emhzp8fz.yiayy { min-height: auto !important; }
.emhzp8fz.atqeoh .ddsgpr0 { text-align: center; }
.emhzp8fz.jgv4   .ddsgpr0 { text-align: left; }
/* flat hero: byline як звичайний текст, не оверлей */
.emhzp8fz~.qc8d0cxw{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}
.emhzp8fz~.qc8d0cxw .ixiuexs1{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: градієнтний фон замість фото */
.uof7by1k {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}
/* hero_anim: shimmer — ледь помітний блиск по поверхні */
.pf9xlb .uof7by1k,
.pf9xlb .fiepv {
  position: relative; overflow: hidden;
}
.pf9xlb .uof7by1k::after,
.pf9xlb .fiepv::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 */
.f2ltnw .uof7by1k,
.f2ltnw .fiepv {
  animation: hg-breathe 10s ease-in-out infinite;
}
@keyframes hg-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
/* hero_anim: grain — ледь помітна зернистість поверх градієнту */
.dd2qd7 .uof7by1k,
.dd2qd7 .fiepv,
.dd2qd7 .nkvfs2 .gpe66fop {
  overflow: hidden;
}
.dd2qd7 .uof7by1k::after,
.dd2qd7 .fiepv::after,
.dd2qd7 .nkvfs2 .gpe66fop::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 */
.nclbm4 .uof7by1k,
.nclbm4 .fiepv {
  position: relative; overflow: hidden;
}
.nclbm4 .uof7by1k::after,
.nclbm4 .fiepv::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); }
}
.nclbm4 .nkvfs2 .gpe66fop {
  overflow: hidden;
}
.nclbm4 .nkvfs2 .gpe66fop::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 — градієнт з'являється при завантаженні */
.lhrbg88 .uof7by1k,
.lhrbg88 .fiepv,
.lhrbg88 .nkvfs2 .gpe66fop {
  animation: hg-fadein 1.2s ease-out both;
}
@keyframes hg-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* hero-bg з фото — overlay анімації */
.pf9xlb .nkvfs2 .gpe66fop {
  overflow: hidden;
}
.pf9xlb .nkvfs2 .gpe66fop::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;
}
.f2ltnw .nkvfs2 .gpe66fop {
  animation: hg-breathe 10s ease-in-out infinite;
}

.uof7by1k .gpe66fop {
  background: none;
}
.uof7by1k .fiasb { color: #fff; }
.uof7by1k .mpo2hapo { color: rgba(255,255,255,0.85); }
.uof7by1k .bvvngo { background: #fff; color: var(--accent); }
.uof7by1k .bvvngo:hover { opacity: 0.92; }

/* ── Hero anim: split layouts ─────────────────────────────────────────────── */
.pf9xlb .phkp { position: relative; overflow: hidden; }
.pf9xlb .phkp::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;
}
.f2ltnw .phkp {
  animation: hg-breathe 7s ease-in-out infinite;
}
.dd2qd7 .phkp { position: relative; overflow: hidden; }
.dd2qd7 .phkp::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;
}
.nclbm4 .phkp { position: relative; overflow: hidden; }
.nclbm4 .phkp::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;
}
.lhrbg88 .phkp {
  animation: hg-fadein 1.2s ease-out both;
}


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

/* Split alignment — всередині text-колонки */
.phkp.atqeoh .qzia9 { align-items: center; text-align: center; }
.phkp.jgv4   .qzia9 { align-items: flex-start; text-align: left; }

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


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

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

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

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

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

/* ── Hero: split-cards ────────────────────────────────────────────────────── */
.tyqq .q2divm {
  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);
}
.a2morl {
  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;
}
.a2morl:last-child { border-bottom: none; }
.a2morl:hover { background: rgba(255,255,255,0.14); }
.y93m5 { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.o1ecs { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.f7tp4jf { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.m0wrv4n3 { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bt65gda { font-size: 0.82rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.p6nzheu6 { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.bgvvn263 { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); }
.bgvvn263 small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }
.nmp56ll { font-size: 0.8rem; padding: 6px 14px; white-space: nowrap; }

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

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

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

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


@media (max-width: 700px) {
  .phkp { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .phkp .wqm8lr4 { display: none !important; }
  .z7li .wqm8lr4 { display: none !important; }
  .tyqq .q2divm { display: none !important; }
  .rkfj3u .jthw258p { display: none !important; }
  .qzia9  { padding: 36px 24px; }
  .phkp~.qc8d0cxw,.g1z9~.qc8d0cxw{max-width:100%;left:0;right:0;transform:none;padding:0 24px}
  /* cap hero height variants on mobile */
  .yiayy, .phkp { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .fiasb { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  /* cards-top: hide on mobile */
  .dsdov0 { display: none !important; }
  /* numbered: stack */
  .f2qdmv { flex-direction: column; align-items: center; }
  .fc11 { width: 100%; max-width: 340px; }
}

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

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

/* rounded */
.ud12dh4h .fu0but        { border-radius: 16px; }
.ud12dh4h .eyvq7f  { border-radius: 16px; }

/* shadow */
.e4g4xx7 .fu0but         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.e4g4xx7 .eyvq7f   { border-radius: 8px; }


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

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

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

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

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

.rxrela4e .kzw7tw6:nth-child(even) .gphr2u .juhibxr2:nth-child(odd),
.ej7y .kzw7tw6:nth-child(even) .gphr2u .juhibxr2:nth-child(odd)  { background: var(--bg-card); }
.rxrela4e .kzw7tw6:nth-child(even) .gphr2u .juhibxr2:nth-child(even),
.ej7y .kzw7tw6:nth-child(even) .gphr2u .juhibxr2:nth-child(even) { background: var(--bg-card-inner); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.teee .df0qju94,
.teee .sttr6uom,
.teee .vkti,
.teee .sunt { font-style: normal; color: var(--text-body); }

.s0vj68 .df0qju94,
.s0vj68 .sttr6uom {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.s0vj68 .vkti,
.s0vj68 .sunt {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

.ebncwb .df0qju94,
.ebncwb .sttr6uom,
.ebncwb .vkti,
.ebncwb .sunt {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}
────────────────────────────────────────────────────────────────────────────── */

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

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

.z11zxsj     .g22o5jou { list-style-type: "● "; }
.mtc1eq  .g22o5jou { list-style-type: "■ "; }
.dd49ba .g22o5jou { list-style-type: "◆ "; }
.ax9mw63a    .g22o5jou { list-style-type: "★ "; }

.z11zxsj     .yf10xj1 { list-style-type: "● "; }
.mtc1eq  .yf10xj1 { list-style-type: "■ "; }
.dd49ba .yf10xj1 { list-style-type: "◆ "; }
.ax9mw63a    .yf10xj1 { list-style-type: "★ "; }

.z11zxsj    .g22o5jou li::marker, .z11zxsj    .yf10xj1 li::marker,
.mtc1eq .g22o5jou li::marker, .mtc1eq .yf10xj1 li::marker,
.dd49ba .g22o5jou li::marker, .dd49ba .yf10xj1 li::marker,
.ax9mw63a   .g22o5jou li::marker, .ax9mw63a   .yf10xj1 li::marker {
  color: var(--accent); font-size: 0.8em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

/* pill = solid but very rounded */
.w0d5gm9 .bvvngo { border-radius: 50px; }
.w0d5gm9 .vwmiht4  { border-radius: 50px; }
/* btn_pad */
.gxndbu9 .bvvngo { padding-left: 22px; padding-right: 22px; }
.gxndbu9 .vwmiht4  { padding-left: 12px; padding-right: 12px; }
.qwigb1p .bvvngo { padding-left: 44px; padding-right: 44px; }
.qwigb1p .vwmiht4  { padding-left: 24px; padding-right: 24px; }
.jt8vg47d .bvvngo { padding-left: 56px; padding-right: 56px; }
.jt8vg47d .vwmiht4  { padding-left: 32px; padding-right: 32px; }

/* ── btn_icon: SVG-іконки на .bvvngo і .vwmiht4 (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.scfh4j   .bvvngo::after, .scfh4j   .vwmiht4::after,
.splemrs .bvvngo::after, .splemrs .vwmiht4::after,
.qj7edtbz    .bvvngo::after, .qj7edtbz    .vwmiht4::after,
.fo9ab    .bvvngo::after, .fo9ab    .vwmiht4::after,
.v5xu20    .bvvngo::after, .v5xu20    .vwmiht4::after,
.mqzs     .bvvngo::after, .mqzs     .vwmiht4::after,
.bxlevp2    .bvvngo::after, .bxlevp2    .vwmiht4::after,
.q4l7v   .bvvngo::after, .q4l7v   .vwmiht4::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 — кожна іконка */
.scfh4j .bvvngo::after, .scfh4j .vwmiht4::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");
}
.splemrs .bvvngo::after, .splemrs .vwmiht4::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");
}
.qj7edtbz .bvvngo::after, .qj7edtbz .vwmiht4::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");
}
.fo9ab .bvvngo::after, .fo9ab .vwmiht4::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");
}
.v5xu20 .bvvngo::after, .v5xu20 .vwmiht4::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");
}
.mqzs .bvvngo::after, .mqzs .vwmiht4::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");
}
.bxlevp2 .bvvngo::after, .bxlevp2 .vwmiht4::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");
}
.q4l7v .bvvngo::after, .q4l7v .vwmiht4::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 ────────*/
.na838y   .t2a76hli::after, .na838y   .lkva0d0::after,
.ncbl .t2a76hli::after, .ncbl .lkva0d0::after,
.wh7mj7l    .t2a76hli::after, .wh7mj7l    .lkva0d0::after,
.fzf5i3    .t2a76hli::after, .fzf5i3    .lkva0d0::after,
.uobz    .t2a76hli::after, .uobz    .lkva0d0::after,
.jrbmiqx     .t2a76hli::after, .jrbmiqx     .lkva0d0::after,
.aberzs    .t2a76hli::after, .aberzs    .lkva0d0::after,
.i5t0tzrp   .t2a76hli::after, .i5t0tzrp   .lkva0d0::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;
}
.na838y .t2a76hli::after, .na838y .lkva0d0::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");
}
.ncbl .t2a76hli::after, .ncbl .lkva0d0::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");
}
.wh7mj7l .t2a76hli::after, .wh7mj7l .lkva0d0::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");
}
.fzf5i3 .t2a76hli::after, .fzf5i3 .lkva0d0::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");
}
.uobz .t2a76hli::after, .uobz .lkva0d0::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");
}
.jrbmiqx .t2a76hli::after, .jrbmiqx .lkva0d0::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");
}
.aberzs .t2a76hli::after, .aberzs .lkva0d0::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");
}
.i5t0tzrp .t2a76hli::after, .i5t0tzrp .lkva0d0::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 ─────────────────────────────────────────────────────────*/
.fxdip4q0 { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


.c10g {
  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 */
.c10g > [itemprop="item"] { display: contents; }
.c10g:hover { background: var(--bg-hover); }
.fcawwy0 {
  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 */
.rizaw2gs .fcawwy0 { background: #1a1a1a; }
.pyeli .fcawwy0 { background: rgba(128,128,128,.12); }
.ggpq49 .fcawwy0 { background: var(--bg-raised); }
.pt053sw6 .fcawwy0 { background: transparent; padding: 0; }
.i1l6c { max-height: 34px; max-width: 80px; object-fit: contain; }
.txvfk { font-weight: 700; font-size: .85rem; color: var(--accent-light); }
.tgdc { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; }
.usv4ujq2 { font-weight: 700; font-size: .88rem; color: var(--text-primary); flex-shrink: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.et34arp2 { color: var(--accent); font-size: .8rem; letter-spacing: 1px; flex-shrink: 1; min-width: 0; }
.xg06hrp { display: flex; flex-direction: column; align-items: center; font-size: .78rem; flex: 1 1 0; min-width: 0; }
.xyuw4b9m { color: var(--text-label); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.muej0e2d { color: var(--text-value); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.qiop { margin-left: auto; flex-shrink: 0; white-space: nowrap; }
.qiop.vwmiht4 { padding-left: 16px !important; padding-right: 16px !important; }
/* планшет / мобіль: 1 картка в ряд */
@media (max-width: 720px) {
  .fxdip4q0 { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .fxdip4q0 .c10g { flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px; }
  .fxdip4q0 .tgdc { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
  .fxdip4q0 .fcawwy0 { width: 100%; min-width: unset; height: 52px; }
  .fxdip4q0 .i1l6c { max-height: 40px; max-width: 110px; }
  .fxdip4q0 .usv4ujq2 { min-width: unset; text-align: center; white-space: normal; }
  .fxdip4q0 .xg06hrp { flex-direction: row; justify-content: space-between; width: 100%; border-top: 1px solid var(--border); padding-top: 5px; }
  .fxdip4q0 .qiop { width: 100%; text-align: center; margin-left: 0; }
  .a3xq9vm .c10g { row-gap: 8px !important; gap: 8px !important; }
}

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.atar5 {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.gqhnl7ij {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.sk9i7 {
  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;
}
.sk9i7 img { max-width: 80px; max-height: 50px; object-fit: contain; }
.pf2nb298 { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.fvq8cuz { flex: 1; }
.fvq8cuz h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.qncmu3q { color: var(--c-stars); font-size: 1.1rem; }
.laz88 { margin-bottom: 8px; }
.bgt0mh3r { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.yfs8g6o::before   { content: "★ "; color: var(--accent); }
.udoyh63k::before { content: "↓ "; color: var(--accent); }
.n7cr93ab::before { content: "✦ "; color: var(--accent); }
.ju8v97qu { flex-shrink: 0; }
.x1vtk2 img.dhizkxs { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.o15n { padding: 20px 24px; }
.y7x6gl { color: var(--text-muted); margin-bottom: 16px; }
.lp0zxz { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.ht66, .d5bfb5 { list-style: none; font-size: 0.9rem; }
.ht66 li { color: var(--c-pros); margin-bottom: 4px; }
.d5bfb5 li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.ht66 li::before { content: "✓"; margin-right: 5px; }
.d5bfb5 li::before { content: "✗"; margin-right: 5px; }
.lfo0x5r .ht66 li::before { content: "→"; }
.lfo0x5r .d5bfb5 li::before { content: "–"; }
.p3436  .ht66 li::before { content: "★"; }
.p3436  .d5bfb5 li::before { content: "✕"; }
.pabt1z0    .ht66 li::before { content: "◆"; }
.pabt1z0    .d5bfb5 li::before { content: "▲"; }
.ntpweq  .ht66 li::before { content: "▶"; }
.ntpweq  .d5bfb5 li::before { content: "■"; }
.efx8 { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.pfszj { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.xw53auvl { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

/* ── Brand card (single brand, two-column hero) ─────────────────────────────*/
/* ═══════════════════════════════════════════════════════════════════════════
   BRAND CARD — shared tokens
   ═══════════════════════════════════════════════════════════════════════════ */
.i3lutk {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.scbk45r9 {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.scbk45r9 img { max-width: 100%; max-height: 100%; object-fit: contain; }
.b3gaaah { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.h0j1h1l { display: flex; align-items: center; gap: 8px; }
.h0j1h1l .qncmu3q { font-size: .95rem; }
.h0j1h1l strong { font-size: 1.1rem; color: var(--text); }
.l3x5219 { border-radius: 8px; overflow: hidden; }
.l3x5219 img { width: 100%; display: block; border-radius: 8px; }
.bqfog { text-align: center; flex-shrink: 0; }
.re59rgq { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.dktd1 { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.t04rcz { font-size: .88rem; font-weight: 600; color: var(--text); }
.na03ttx9 .t04rcz { font-size: 1.02rem; font-weight: 700; color: var(--accent); }
.i3lutk .fa1soh { gap: 10px; }
.i3lutk .xzl0, .i3lutk .t0ij7i { padding: 12px; }
.i3lutk .xzl0 ul, .i3lutk .t0ij7i ul { margin: 4px 0 0; padding-left: 18px; }
.i3lutk .xzl0 li, .i3lutk .t0ij7i li { font-size: .85rem; margin-bottom: 3px; }
.r2yg9932 { font-size: .8rem; color: var(--text-muted); margin-top: 10px; }
.r2yg9932 strong { color: var(--text-secondary); }
.r2yg9932 .pfszj { margin: 2px 4px 2px 0; }

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

/* ── LAYOUT 2: hero — full-width screenshot header ────────────────────────── */
.hwuya {
  position: relative; max-height: 240px; overflow: hidden;
}
.hwuya > img { width: 100%; display: block; object-fit: cover; min-height: 160px; }
.y2e8um3 {
  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;
}
.y2e8um3 .scbk45r9 { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.y2e8um3 .b3gaaah { color: #fff; font-size: 1.25rem; }
.y2e8um3 .h0j1h1l strong { color: #fff; }
.y2e8um3 .h0j1h1l .qncmu3q { filter: brightness(1.2); }
.y2e8um3 .bqfog { margin-left: auto; white-space: nowrap; }
.irr3qz3 { flex: 1; }
.wvqw1x {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-alt);
}
.wvqw1x .bqfog { margin-left: auto; }
.fxf6 { display: flex; flex-direction: column; gap: 16px; padding: 20px 24px; }
.smk3s81 .y5z7w7i {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.smk3s81 .re59rgq {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.smk3s81 .na03ttx9 { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .y2e8um3 { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .fxf6 { padding: 16px; }
  .smk3s81 .re59rgq { min-width: 50%; }
}

/* ── LAYOUT 3: magazine — editorial 3-column ──────────────────────────────── */
.qohc6 {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.qyif5yo { flex: 1; }
.qyif5yo .b3gaaah { font-size: 1.3rem; }
.a79hcrse {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.n0n0 { padding: 16px; border-right: 1px solid var(--border-alt); }
.n0n0 .l3x5219 { height: 100%; }
.n0n0 .l3x5219 img { height: 100%; object-fit: cover; }
.g0sf8zke { padding: 0; border-right: 1px solid var(--border-alt); }
.g0sf8zke .y5z7w7i { display: flex; flex-direction: column; }
.g0sf8zke .re59rgq { border-bottom: 1px solid var(--border-alt); }
.g0sf8zke .na03ttx9 { background: var(--accent-bg); }
.nrkq1 { padding: 16px; }
.nrkq1 .fa1soh { grid-template-columns: 1fr; }
.i6f2 {
  padding: 12px 24px; border-top: 1px solid var(--border-alt);
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .a79hcrse { grid-template-columns: 1fr; }
  .n0n0 { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .g0sf8zke { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .qohc6 { flex-wrap: wrap; padding: 16px; }
}

/* ── LAYOUT 4: compact — header bar → screenshot → data ──────────────────── */
.etbqm6g {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border-alt);
}
.k993o3 {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.k993o3 .scbk45r9 { width: 72px; height: 50px; }
.k993o3 .b3gaaah { font-size: 1rem; white-space: nowrap; }
.m221s { border-bottom: 1px solid var(--border-alt); max-height: 280px; overflow: hidden; }
.m221s img { width: 100%; display: block; object-fit: cover; }
.xvm69n2 {
  display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; overflow: hidden;
}
.xq726rio .y5z7w7i { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.xq726rio .re59rgq { padding: 0; flex: 0 0 auto; gap: 6px; }
.xq726rio .na03ttx9 { display: none; }
.xq726rio .fa1soh { gap: 8px; }
.xq726rio .xzl0, .xq726rio .t0ij7i { padding: 8px; }
@media (max-width: 480px) {
  .etbqm6g { flex-direction: column; align-items: stretch; }
}

/* ── LAYOUT 8: mini — compact single-row bar for topic pages ─────────────── */
.xndnp { padding: 0; }
.jxinb {
  display: flex; align-items: center; gap: 16px; padding: 12px 20px; flex-wrap: wrap;
}
.yxp0i8rs {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.yxp0i8rs .scbk45r9 { width: 48px; height: 48px; }
.yxp0i8rs .b3gaaah { font-size: 0.95rem; font-weight: 700; white-space: nowrap; }
.yxp0i8rs .h0j1h1l { font-size: 0.8rem; }
.yxp0i8rs .h0j1h1l strong { font-size: 0.85rem; }
.suq1q { flex: 1; min-width: 0; overflow: hidden; }
.xndnp .y5z7w7i {
  display: flex; flex-wrap: wrap; gap: 4px 14px;
}
.xndnp .re59rgq { padding: 0; flex: 0 0 auto; gap: 4px; }
.xndnp .dktd1 { font-size: 0.7rem; }
.xndnp .t04rcz { font-size: 0.8rem; }
.xndnp .na03ttx9 .t04rcz { font-size: 0.85rem; font-weight: 700; }
.xndnp .bqfog .vwmiht4 { padding: 8px 20px; font-size: 0.85rem; }
@media (max-width: 640px) {
  .jxinb { flex-direction: column; align-items: stretch; gap: 10px; }
  .xndnp .bqfog { text-align: center; }
}

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

/* ── LAYOUT 6: scorecard — big score centerpiece ──────────────────────────── */
.cv9pbr {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
  border-bottom: 1px solid var(--border-alt);
}
.bqfg4 {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; text-align: center;
}
.k5bedas {
  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;
}
.xmme { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.xmme .usz1y { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.k5bedas .qncmu3q { font-size: .75rem; margin-top: 2px; }
.zfoc { padding: 12px; display: flex; align-items: center; flex: 1; }
.zfoc .l3x5219 { width: 100%; }
.vu2bdv {
  padding: 0; border-bottom: 1px solid var(--border-alt);
}
.om8wbm9 .y5z7w7i {
  display: flex; flex-wrap: wrap;
}
.om8wbm9 .re59rgq {
  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;
}
.om8wbm9 .re59rgq:last-child { border-right: none; }
.om8wbm9 .dktd1 { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.om8wbm9 .na03ttx9 { background: var(--accent-bg); }
.lwm8o { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 720px) {
  .cv9pbr { grid-template-columns: 1fr; }
  .k5bedas { width: 100px; height: 100px; margin: 16px auto; }
  .xmme { font-size: 1.4rem; }
  .zfoc { justify-content: center; }
  .om8wbm9 .re59rgq { min-width: 50%; }
}

/* ── LAYOUT 7: stack — vertical full-width flow ──────────────────────────── */
.cs326 {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.zkgoi7m { max-height: 240px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.zkgoi7m img { width: 100%; display: block; object-fit: cover; }
.tc3c { padding: 16px 24px; border-bottom: 1px solid var(--border-alt); }
.of6cje0 .y5z7w7i {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.of6cje0 .re59rgq {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.of6cje0 .na03ttx9 {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.of6cje0 .fa1soh { margin: 0 24px; padding-top: 16px; }
.of6cje0 .r2yg9932 { padding: 0 24px; }
.vyjlc0 { padding: 16px 24px; border-top: 1px solid var(--border-alt); text-align: center; }
.vyjlc0 .bqfog { display: inline-block; }
@media (max-width: 540px) {
  .cs326 { flex-wrap: wrap; padding: 14px 16px; }
  .tc3c { padding: 12px 16px; }
  .of6cje0 .fa1soh { margin: 0 16px; }
  .of6cje0 .r2yg9932 { padding: 0 16px; }
  .vyjlc0 { padding: 12px 16px; }
}


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

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

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.grq24fc .xyuw4b9m {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.grq24fc .muej0e2d {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.grq24fc .et34arp2 { color: var(--accent); }
.grq24fc .gqhnl7ij { background: var(--accent-bg); }
.grq24fc .yfs8g6o, .grq24fc .udoyh63k, .grq24fc .n7cr93ab {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

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

/* compact: менші відступи всюди */
.tzaqfamt .c10g { padding: 8px 14px; gap: 12px; }
.tzaqfamt .fcawwy0 { height: 32px; min-width: 52px; }
.tzaqfamt .i1l6c { max-height: 24px; }
.tzaqfamt .usv4ujq2 { font-size: 0.82rem; }
.tzaqfamt .gqhnl7ij { padding: 14px 18px; gap: 14px; }
.tzaqfamt .o15n { padding: 14px 18px; }
.tzaqfamt .sk9i7 { width: 70px; }
.tzaqfamt .fvq8cuz h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.a3xq9vm .fxdip4q0 {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.a3xq9vm .c10g {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); row-gap: 0; column-gap: 12px;
}
.a3xq9vm .c10g:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.a3xq9vm .et34arp2,
.a3xq9vm .l7j1glka,
.a3xq9vm .ugvz5q2l { border-left: 1px solid var(--border); padding-left: 10px; }
.a3xq9vm .usv4ujq2 { padding: 0 10px; }

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

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

/* ── casino-wide: високі горизонтальні картки з великим лого ───────────────*/
.vnzeiu5 .fxdip4q0 { gap: 12px; }
.vnzeiu5 .c10g {
  padding: 18px 24px; gap: 20px; border-radius: 12px;
  min-height: 80px;
}
.vnzeiu5 .fcawwy0 {
  min-width: 90px; height: 64px; padding: 6px 12px; border-radius: 10px;
}
.vnzeiu5 .i1l6c { max-height: 52px; max-width: 120px; }
.vnzeiu5 .usv4ujq2 { font-size: 1rem; }
.vnzeiu5 .xg06hrp { font-size: .85rem; }
.vnzeiu5 .muej0e2d { font-size: .9rem; }
.vnzeiu5 .qiop.vwmiht4 { padding: 10px 24px !important; font-size: .9rem; }

/* ── casino-jumbo: дуже великі картки, лого + інтерфейс скриншот ──────────*/
.l597bnm .fxdip4q0 { gap: 16px; }
.l597bnm .c10g {
  padding: 24px 28px; gap: 24px; border-radius: 14px;
  min-height: 100px; border-width: 2px;
}
.l597bnm .fcawwy0 {
  min-width: 110px; height: 80px; padding: 8px 14px; border-radius: 12px;
  background: var(--bg-raised);
}
.l597bnm .i1l6c { max-height: 64px; max-width: 140px; }
.l597bnm .usv4ujq2 { font-size: 1.1rem; font-weight: 800; }
.l597bnm .et34arp2 { font-size: .95rem; letter-spacing: 2px; }
.l597bnm .xg06hrp { font-size: .9rem; }
.l597bnm .muej0e2d { font-size: .95rem; font-weight: 700; }
.l597bnm .xyuw4b9m { font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; }
.l597bnm .qiop.vwmiht4 { padding: 12px 32px !important; font-size: .95rem; font-weight: 700; }

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

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.js44 .l7j1glka { flex: 1.8; }
.js44 .l7j1glka .muej0e2d {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}
.js44 .l7j1glka .xyuw4b9m { font-weight: 700; color: var(--text-primary); }
.js44 .uui8z8r,
.js44 .lsmm5,
.js44 .cqkpi { flex: 0.75; opacity: 0.65; }

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

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

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

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

/* score в оглядах — ховаємо зірки */
.zltxr0 .laz88 .qncmu3q,
.u24b .laz88 .qncmu3q,
.yw1991d0 .laz88 .qncmu3q { display: none; }

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

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

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

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.kzw7tw6 { margin-bottom: 0; }
.ge7j h2.cm9jt { color: var(--accent-light); border-color: var(--accent); }
.v2765qy h2.cm9jt { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.ar7m2v38 .m3yetp2     { background: #052e16; border-color: #10b981; }
.ar7m2v38 .iucbht9 { background: #2d0a1e; border-color: #f43f5e; }
.ar7m2v38 .zl977wqz    { background: #1e1036; border-color: #a855f7; }
.ar7m2v38 .ibjtp9bi strong  { color: #f1f5f9; }
.ar7m2v38 .ibjtp9bi p       { color: #cbd5e1; }
.ar7m2v38 .luj7    .m3yetp2     .a79x::before,
.ar7m2v38 .teznd  .m3yetp2     .a79x::before,
.ar7m2v38 .yscuw  .m3yetp2     .a79x::before,
.ar7m2v38 .iytlvn .m3yetp2     .a79x::before { color: #10b981; }
.ar7m2v38 .luj7    .iucbht9 .a79x::before,
.ar7m2v38 .teznd  .iucbht9 .a79x::before,
.ar7m2v38 .yscuw  .iucbht9 .a79x::before,
.ar7m2v38 .iytlvn .iucbht9 .a79x::before { color: #f43f5e; }
.ar7m2v38 .luj7    .zl977wqz    .a79x::before,
.ar7m2v38 .teznd  .zl977wqz    .a79x::before,
.ar7m2v38 .yscuw  .zl977wqz    .a79x::before,
.ar7m2v38 .iytlvn .zl977wqz    .a79x::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.rgv8w .m3yetp2     { background: #2d2000; border-color: #eab308; }
.rgv8w .iucbht9 { background: #2d0b0b; border-color: #ef4444; }
.rgv8w .zl977wqz    { background: #2d1600; border-color: #f97316; }
.rgv8w .ibjtp9bi strong  { color: #f1f5f9; }
.rgv8w .ibjtp9bi p       { color: #cbd5e1; }
.rgv8w .luj7    .m3yetp2     .a79x::before,
.rgv8w .teznd  .m3yetp2     .a79x::before,
.rgv8w .yscuw  .m3yetp2     .a79x::before,
.rgv8w .iytlvn .m3yetp2     .a79x::before { color: #eab308; }
.rgv8w .luj7    .iucbht9 .a79x::before,
.rgv8w .teznd  .iucbht9 .a79x::before,
.rgv8w .yscuw  .iucbht9 .a79x::before,
.rgv8w .iytlvn .iucbht9 .a79x::before { color: #ef4444; }
.rgv8w .luj7    .zl977wqz    .a79x::before,
.rgv8w .teznd  .zl977wqz    .a79x::before,
.rgv8w .yscuw  .zl977wqz    .a79x::before,
.rgv8w .iytlvn .zl977wqz    .a79x::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.i17k7r8 .m3yetp2     { background: #0c1a2e; border-color: #38bdf8; }
.i17k7r8 .iucbht9 { background: #12103a; border-color: #818cf8; }
.i17k7r8 .zl977wqz    { background: #0a2020; border-color: #2dd4bf; }
.i17k7r8 .ibjtp9bi strong  { color: #f1f5f9; }
.i17k7r8 .ibjtp9bi p       { color: #cbd5e1; }
.i17k7r8 .luj7    .m3yetp2     .a79x::before,
.i17k7r8 .teznd  .m3yetp2     .a79x::before,
.i17k7r8 .yscuw  .m3yetp2     .a79x::before,
.i17k7r8 .iytlvn .m3yetp2     .a79x::before { color: #38bdf8; }
.i17k7r8 .luj7    .iucbht9 .a79x::before,
.i17k7r8 .teznd  .iucbht9 .a79x::before,
.i17k7r8 .yscuw  .iucbht9 .a79x::before,
.i17k7r8 .iytlvn .iucbht9 .a79x::before { color: #818cf8; }
.i17k7r8 .luj7    .zl977wqz    .a79x::before,
.i17k7r8 .teznd  .zl977wqz    .a79x::before,
.i17k7r8 .yscuw  .zl977wqz    .a79x::before,
.i17k7r8 .iytlvn .zl977wqz    .a79x::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.f1zzabqy .m3yetp2     { background: var(--accent-bg); border-color: var(--accent); }
.f1zzabqy .iucbht9 { background: var(--accent-bg-light); border-color: var(--accent-light); }
.f1zzabqy .zl977wqz    { background: var(--accent-bg); border-color: var(--accent-pale); }
.f1zzabqy .luj7    .a79x::before,
.f1zzabqy .teznd  .a79x::before,
.f1zzabqy .yscuw  .a79x::before,
.f1zzabqy .iytlvn .a79x::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.fk54o83 .xzl0 ul li,
.fk54o83 .ht66 li         { color: #4ade80; }
.fk54o83 .xzl0 .ebmr3 { color: #22c55e; }
.fk54o83 .t0ij7i ul li,
.fk54o83 .d5bfb5 li         { color: #f87171; }
.fk54o83 .t0ij7i .gx6r77 { color: #ef4444; }

/* blue: синій pros / amber cons */
.j63vro .xzl0 { background: #0c1a2e; }
.j63vro .t0ij7i { background: #2d1f00; }
.j63vro .xzl0 .ebmr3 { color: #93c5fd; }
.j63vro .t0ij7i .gx6r77 { color: #fcd34d; }
.j63vro .xzl0 ul li,
.j63vro .ht66 li            { color: #bfdbfe; }
.j63vro .t0ij7i ul li,
.j63vro .d5bfb5 li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.rbp1 .xzl0 { background: var(--accent-bg); }
.rbp1 .t0ij7i { background: var(--accent-bg-light); }
.rbp1 .xzl0 .ebmr3 { color: var(--accent-pale); }
.rbp1 .t0ij7i .gx6r77 { color: var(--accent-light); }
.rbp1 .xzl0 ul li,
.rbp1 .ht66 li          { color: var(--text-body); }
.rbp1 .t0ij7i ul li,
.rbp1 .d5bfb5 li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.kl2e .ebmr3::before { content: "✓ "; }
.kl2e .gx6r77::before { content: "✗ "; }

/* arrows: → / ← */
.lfo0x5r .ebmr3::before { content: "→ "; }
.lfo0x5r .gx6r77::before { content: "← "; }

/* marks: ★ / ✕ */
.p3436 .ebmr3::before { content: "★ "; }
.p3436 .gx6r77::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.pabt1z0 .ebmr3::before { content: "◆ "; }
.pabt1z0 .gx6r77::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.ychjm .ibjtp9bi { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.ychjm .m3yetp2     { border-top-color: var(--c-tip-border); }
.ychjm .iucbht9 { border-top-color: var(--c-warn-border); }
.ychjm .zl977wqz    { border-top-color: #60a5fa; }

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

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

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

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

.luj7 .a79x,
.teznd .a79x,
.yscuw .a79x,
.iytlvn .a79x { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.luj7 .a79x::before,
.teznd .a79x::before,
.yscuw .a79x::before,
.iytlvn .a79x::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.luj7 .m3yetp2     .a79x::before { content: "✦"; color: var(--c-tip-border); }
.luj7 .iucbht9 .a79x::before { content: "▲"; color: var(--c-warn-border); }
.luj7 .zl977wqz    .a79x::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.teznd .m3yetp2     .a79x::before { content: "★"; color: var(--c-tip-border); }
.teznd .iucbht9 .a79x::before { content: "◆"; color: var(--c-warn-border); }
.teznd .zl977wqz    .a79x::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.yscuw .m3yetp2     .a79x::before { content: "▶"; color: var(--c-tip-border); }
.yscuw .iucbht9 .a79x::before { content: "■"; color: var(--c-warn-border); }
.yscuw .zl977wqz    .a79x::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.iytlvn .m3yetp2     .a79x::before { content: "→"; color: var(--c-tip-border); }
.iytlvn .iucbht9 .a79x::before { content: "⬥"; color: var(--c-warn-border); }
.iytlvn .zl977wqz    .a79x::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.som3gck .xb35 .juhibxr2,
.som3gck .gphr2u .juhibxr2  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.som3gck .p8gj65t                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.som3gck .c10g                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.som3gck .atar5            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.som3gck .bvf4cygj          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.som3gck .yjsyfsn2                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.mcx5xc .xb35 .juhibxr2,
.mcx5xc .gphr2u .juhibxr2,
.mcx5xc .p8gj65t,
.mcx5xc .c10g,
.mcx5xc .atar5,
.mcx5xc .bvf4cygj,
.mcx5xc .yjsyfsn2,
.mcx5xc .drhx0az5 .ibjtp9bi { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.gyv198bm   body, .gyv198bm   { font-size: 0.9rem; }
.gyv198bm   .sem0cd, .gyv198bm .vkti, .gyv198bm .sunt,
.gyv198bm   .df0qju94, .gyv198bm .sttr6uom { font-size: 0.9rem; }
.gyv198bm   .g22o5jou, .gyv198bm .wz8e7dyu { font-size: 0.9rem; }

.cydtrgjb   .sem0cd, .cydtrgjb .vkti, .cydtrgjb .sunt,
.cydtrgjb   .df0qju94, .cydtrgjb .sttr6uom { font-size: 0.9rem; }
.cydtrgjb   .g22o5jou, .cydtrgjb .wz8e7dyu { font-size: 0.9rem; }

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

.q3zv1gyj   .sem0cd, .q3zv1gyj .vkti, .q3zv1gyj .sunt,
.q3zv1gyj   .df0qju94, .q3zv1gyj .sttr6uom { font-size: 1.08rem; }
.q3zv1gyj   .g22o5jou, .q3zv1gyj .wz8e7dyu { font-size: 1.05rem; }
.q3zv1gyj   .cdjv { font-size: 0.97rem; }

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

/* large */
.xn5skxu .fiasb      { font-size: 3.2rem; }
.xn5skxu h2.cm9jt { font-size: 1.9rem; }
.xn5skxu h3.bw0wu     { font-size: 1.4rem; }

/* display */
.worc .fiasb      { font-size: 3.8rem; }
.worc h2.cm9jt { font-size: 2.2rem; }
.worc h3.bw0wu     { font-size: 1.6rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.vfjwdlb   .kzw7tw6 + .kzw7tw6::before,
.kuhwk6sj  .kzw7tw6 + .kzw7tw6::before,
.v5x70i   .kzw7tw6 + .kzw7tw6::before,
.rpz2d4vc   .kzw7tw6 + .kzw7tw6::before,
.ejupdaf0   .kzw7tw6 + .kzw7tw6::before,
.ulydi .kzw7tw6 + .kzw7tw6::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}

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

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

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

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

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

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

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

/* section_bg=stripe: парні секції мають bg-card */
.ej7y .sbw2p .kzw7tw6:nth-child(even)::before,
.ej7y .llbbse .kzw7tw6:nth-child(even)::before,
.ej7y .fj0wnwok .kzw7tw6:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.sbw2p .kzw7tw6 + .kzw7tw6::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 гребені */
.llbbse .kzw7tw6 + .kzw7tw6::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: глибока дуга */
.fj0wnwok .kzw7tw6 + .kzw7tw6::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 у формі хвилі */
.pvtwjef .nkvfs2,
.kgst .nkvfs2,
.z68x37er .nkvfs2 { overflow: hidden; }

/* wave: додатковий простір щоб хвиля не закривала CTA */
.pvtwjef .ddsgpr0,
.kgst .ddsgpr0 { margin-bottom: 60px; }
.z68x37er .ddsgpr0 { margin-bottom: 70px; }
.pvtwjef .qzia9,
.kgst .qzia9 { padding-bottom: 60px; }
.z68x37er .qzia9 { padding-bottom: 70px; }

.pvtwjef .nkvfs2::before,
.kgst .nkvfs2::before,
.z68x37er .nkvfs2::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 гребінь) */
.pvtwjef .nkvfs2::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 гребені */
.kgst .nkvfs2::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: глибока дуга */
.z68x37er .nkvfs2::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 */
.isjen .nkvfs2:not(.uof7by1k) .gpe66fop { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }
.u463hx5 .nkvfs2:not(.uof7by1k) .gpe66fop { background: linear-gradient(45deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 100%); }
.r9lxvbr7  .nkvfs2:not(.uof7by1k) .gpe66fop { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }
.f2ry34p  .nkvfs2:not(.uof7by1k) .gpe66fop { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }

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

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

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

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

/* hg-solid: суцільний колір без градієнту */
.z4d51hfb .uof7by1k { background: var(--accent); }
.z4d51hfb .uof7by1k .gpe66fop { background: none; }
.z4d51hfb .fiepv { background: var(--accent); }
.z4d51hfb .phkp { background: var(--accent-bg); }
.z4d51hfb .nkvfs2:not(.uof7by1k) .gpe66fop { background: rgba(0,0,0,0.6); }


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

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

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

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

/* Великі блочні елементи — clear float щоб не стискались */
.zy16imi .er8tvu,
.zy16imi .fxdip4q0,
.ewvtynb .er8tvu,
.ewvtynb .fxdip4q0,
.nwvuuta2 .er8tvu,
.nwvuuta2 .fxdip4q0 { clear: both; }

/* Маркери списків не мають налазити на float-картинку */
.zy16imi .g22o5jou,
.zy16imi .wz8e7dyu,
.ewvtynb .g22o5jou,
.ewvtynb .wz8e7dyu,
.nwvuuta2 .g22o5jou,
.nwvuuta2 .wz8e7dyu { overflow: hidden; }


@media (max-width: 640px) {
  .zy16imi .fu0but,
  .ewvtynb .fu0but,
  .nwvuuta2 .fu0but { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1100px (задано в .ispf4iy, .zp7a, .i33u) */
.j0eq9 .ispf4iy,
.j0eq9 .zp7a,
.j0eq9 .i33u  { max-width: 1100px; }
.j0eq9 { --content-mw: 1100px; }
.np4s61 .ispf4iy,
.np4s61 .zp7a,
.np4s61 .i33u  { max-width: 1200px; }
.np4s61 { --content-mw: 1200px; }
.a7auj .ispf4iy,
.a7auj .zp7a,
.a7auj .i33u  { max-width: 1320px; }
.a7auj { --content-mw: 1320px; }

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

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

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

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

/* content-width: above — обидва класи на <body>, тому без пробілу */
.j0eq9.n6166o .s93cxev { max-width: 1100px; }
.np4s61.n6166o .s93cxev { max-width: 1200px; }
.a7auj.n6166o .s93cxev { max-width: 1320px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.j0eq9 .u53hv { max-width: 1100px; }
.np4s61 .u53hv { max-width: 1200px; }
.a7auj .u53hv { max-width: 1320px; }

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

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.k7d30 { font-weight: 300; }
.k7d30 h2.cm9jt { font-weight: 600; }
.k7d30 h3.bw0wu     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.v2zkp { font-weight: 500; }
.v2zkp h2.cm9jt { font-weight: 800; }
.v2zkp h3.bw0wu     { font-weight: 700; }
/* fw-600: semibold */
.ty83sx { font-weight: 600; }
.ty83sx h2.cm9jt { font-weight: 900; }
.ty83sx h3.bw0wu     { font-weight: 800; }
.ty83sx .ibjtp9bi strong,
.ty83sx .ibjtp9bi strong { font-weight: 600; }
/* .ty83sx .vkti, .ty83sx .df0qju94 { font-weight: 600; } */

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

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

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

/* minimal */
.sy46 .i33u { text-align: center; }
.sy46 .us3szxw { justify-content: center; margin-bottom: 16px; }
.sy46 .wli3 { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .i33u { padding-left: 16px; padding-right: 16px; }
  .conj0x .i33u { padding: 20px 16px; }
  .us3szxw { gap: 4px 12px; }
  .wli3 { font-size: 0.78rem; }
}


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


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

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

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

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

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

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

/* dark: завжди темний, незалежно від теми */
.uy9q72 .nmtfh      { background: #0d1117; border-bottom-color: #21262d; }
.uy9q72 .o7w2 { color: var(--accent-light); }
.uy9q72 .scbw { --msep-color: #8b949e; }
.uy9q72 .scbw a { color: #8b949e; }
.uy9q72 .scbw a:hover { color: var(--accent-light); }
.uy9q72 .wlp1a0 { color: #8b949e; }
.uy9q72 .tinnaueu { background: #0d1117; border-top-color: #21262d; }
.uy9q72 .wli3,
.uy9q72 .lvoc6 { color: #6e7681; }
.uy9q72 .yeq4 a, .uy9q72 .us3szxw a,
.uy9q72 .z63s4 a, .uy9q72 .kgub30 a,
.uy9q72 .rwrqru a, .uy9q72 .oqp1vn4p { color: #8b949e; }
.uy9q72 .yeq4 a:hover, .uy9q72 .us3szxw a:hover,
.uy9q72 .z63s4 a:hover, .uy9q72 .kgub30 a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .uy9q72 .scbw { background: #0d1117; border-top-color: #21262d; }
  .uy9q72 .scbw li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.nehn9 .nmtfh      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.nehn9 .o7w2 { color: var(--accent); }
.nehn9 .scbw { --msep-color: #475569; }
.nehn9 .scbw a { color: #475569; }
.nehn9 .scbw a:hover { color: var(--accent); }
.nehn9 .wlp1a0 { color: #64748b; }
.nehn9 .tinnaueu { background: #f0f4f8; border-top-color: #cbd5e1; }
.nehn9 .wli3,
.nehn9 .lvoc6 { color: #64748b; }
.nehn9 .yeq4 a, .nehn9 .us3szxw a,
.nehn9 .z63s4 a, .nehn9 .kgub30 a,
.nehn9 .rwrqru a, .nehn9 .oqp1vn4p { color: #374151; }
.nehn9 .yeq4 a:hover, .nehn9 .us3szxw a:hover,
.nehn9 .z63s4 a:hover, .nehn9 .kgub30 a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .nehn9 .scbw { background: #f0f4f8; border-top-color: #cbd5e1; }
  .nehn9 .scbw li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.b2mv .nmtfh      { background: var(--accent); border-bottom-color: var(--accent-light); }
.b2mv .o7w2 { color: #fff; }
.b2mv .scbw { --msep-color: rgba(255,255,255,0.82); }
.b2mv .scbw a { color: rgba(255,255,255,0.82); }
.b2mv .scbw a:hover { color: #fff; }
.b2mv .wlp1a0 { color: rgba(255,255,255,0.9); }
.b2mv .o4bas a { color: var(--text-primary) !important; }
.b2mv .o4bas a:hover { color: var(--accent) !important; }
.b2mv .tinnaueu { background: var(--accent); border-top-color: var(--accent-light); }
.b2mv .wli3,
.b2mv .lvoc6 { color: rgba(255,255,255,0.72); }
.b2mv .yeq4 a, .b2mv .us3szxw a,
.b2mv .z63s4 a, .b2mv .kgub30 a,
.b2mv .rwrqru a, .b2mv .oqp1vn4p { color: rgba(255,255,255,0.82); }
.b2mv .yeq4 a:hover, .b2mv .us3szxw a:hover,
.b2mv .z63s4 a:hover, .b2mv .kgub30 a:hover { color: #fff; }
@media (max-width: 640px) {
  .b2mv .scbw { background: var(--accent); border-top-color: var(--accent-light); }
  .b2mv .scbw li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.q10c6 .nmtfh {
  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);
}
.q10c6 .tinnaueu {
  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) {
  .q10c6 .scbw {
    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 */
.a6f5 .ur5jau0 { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.a52ri .ur5jau0 { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.ar6fwc52 .ur5jau0 { min-height: 72px; height: auto; }
.u4nrmxf .ur5jau0 { min-height: 84px; height: auto; }

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

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


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

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.qmrnp, .bpuvjcac {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nvnp .qmrnp,
.nvnp .bpuvjcac { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.hhw4u6 .qmrnp,
.hhw4u6 .bpuvjcac { 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; }
.ciona2 .qmrnp,
.ciona2 .bpuvjcac { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.zfwztc1a .qmrnp,
.zfwztc1a .bpuvjcac { 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 */
.lc8a9l   .scbw a { font-weight: 500; }
.p75wsf1d .scbw a { font-weight: 600; }
.ryt0uqnz     .scbw a { font-weight: 700; }
.wpr46xkt    .scbw a { font-weight: 800; letter-spacing: 0.01em; }

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

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .f8tuw .wlp1a0,
  .mfqz8o6q .wlp1a0,
  .aews .wlp1a0,
  .dirkw .wlp1a0,
  .pqn13xc .wlp1a0 {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .f8tuw .wlp1a0::before,
  .mfqz8o6q .wlp1a0::before,
  .aews .wlp1a0::before,
  .dirkw .wlp1a0::before,
  .pqn13xc .wlp1a0::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .f8tuw .wlp1a0::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 лінії рівні */
  .mfqz8o6q .wlp1a0::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% */
  .aews .wlp1a0::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% */
  .dirkw .wlp1a0::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% */
  .pqn13xc .wlp1a0::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) {
  .z03cn .wlp1a0 {
    padding: 5px 14px;
  }
  .z03cn .scbw {
    left: auto; right: 12px; top: 54px;
    width: auto; min-width: 180px;
    border-radius: 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    padding: 6px 0;
  }
  .z03cn .scbw li a {
    border-bottom: none; padding: 10px 22px;
  }
  .z03cn .scbw li a:hover { background: var(--bg-raised); }
  .z03cn .uyu2y2dj,
  .jtrp .uyu2y2dj,
  .cdtg .uyu2y2dj { background: none; backdrop-filter: none; -webkit-backdrop-filter: none; pointer-events: none; }
}

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

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

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .lzsee6z .wlp1a0 {
    padding: 5px 10px;
  }
  .lzsee6z .scbw {
    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;
  }
  .lzsee6z .scbw.cdko { opacity: 1; pointer-events: auto; }
  .lzsee6z .scbw 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) {
  .rayb5gl6     .wlp1a0 { border-radius: 0 !important; }
  .bj1da7e   .wlp1a0 { border-radius: 8px !important; }
  .uysjm2m8 .wlp1a0 { border-radius: 50% !important; }
  .w6roi   .wlp1a0 { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .et34arp2 / .qncmu3q) */
.z2a3ws    .et34arp2, .z2a3ws    .qncmu3q { color: #f59e0b; }
.kk4gle      .et34arp2 { font-size: 1rem; letter-spacing: 1.5px; }
.kk4gle      .qncmu3q   { font-size: 1.35rem; }
.vlv5d    .et34arp2, .vlv5d    .qncmu3q { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.bu42zh     .et34arp2, .bu42zh     .qncmu3q { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.mndduq .et34arp2, .mndduq .qncmu3q { color: var(--accent); letter-spacing: 2px; }
.uxdo5053   .et34arp2, .uxdo5053   .qncmu3q { color: #e91e63; letter-spacing: 2px; }
.v6jn  .et34arp2, .v6jn  .qncmu3q { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.okj2     .et34arp2, .okj2     .qncmu3q { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ── Byline slots — position control ── */
.oh5b3d1e{display:none}
.oh5b3d1e:empty,.ixiuexs1:empty{display:none}
.kk6wi6l2{position:relative;overflow:visible}

/* hero slot — shown for all hero positions */
.l3mx .qc8d0cxw,.bjzan .qc8d0cxw,
.gm15r5 .qc8d0cxw,.sczcvp .qc8d0cxw,
.n2994j .qc8d0cxw,.s3whvrg .qc8d0cxw{display:block}
.lwbe0xwz .oa4l1cg{display:block}

/* shared overlay: centered container matching hero-content width (always 1100px) */
.l3mx .qc8d0cxw,.bjzan .qc8d0cxw,
.gm15r5 .qc8d0cxw,.sczcvp .qc8d0cxw,
.n2994j .qc8d0cxw{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 */
.l3mx .qc8d0cxw .ixiuexs1,.bjzan .qc8d0cxw .ixiuexs1,
.gm15r5 .qc8d0cxw .ixiuexs1,.sczcvp .qc8d0cxw .ixiuexs1,
.n2994j .qc8d0cxw .ixiuexs1{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 */
.l3mx .xo8mv,.bjzan .xo8mv,
.gm15r5 .xo8mv,.sczcvp .xo8mv,
.n2994j .xo8mv{background:transparent!important;border:none!important;padding:0;border-radius:0;color:inherit!important}
/* top positions */
.l3mx .qc8d0cxw,.bjzan .qc8d0cxw{top:12px}
.l3mx .qc8d0cxw .ixiuexs1{margin-right:auto}
.bjzan .qc8d0cxw .ixiuexs1{margin-left:auto}
.bjzan .qc8d0cxw{text-align:right}
/* bottom positions */
.gm15r5 .qc8d0cxw,.sczcvp .qc8d0cxw{bottom:12px}
.gm15r5 .qc8d0cxw .ixiuexs1{margin-right:auto}
.sczcvp .qc8d0cxw .ixiuexs1{margin-left:auto}
.sczcvp .qc8d0cxw{text-align:right}
/* center overlay at bottom of hero */
.n2994j .qc8d0cxw{bottom:16px}
.n2994j .qc8d0cxw .ixiuexs1{margin:0 auto}

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

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

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

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

/* cards: mini bordered cards */
.mnyc4 .xo8mv{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}
.mnyc4 .qiknscjv::before{content:""}

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

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

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

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

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

/* ── Date background variants ── */
.ebzuzs{--date-bg:var(--accent-bg)}
.bovbj032{--date-bg:var(--accent-bg-light)}
.s5diozz{--date-bg:transparent}

/* ── Date separator variants ── */
.fdxk38 .qiknscjv::before{content:""}
.llms .qiknscjv::before{content:"•";opacity:.4}
.llms .xo8mv + .xo8mv::before{content:"•";margin-right:6px;opacity:.4}
.l00w .qiknscjv::before{content:"/";opacity:.35}
.l00w .xo8mv + .xo8mv::before{content:"/";margin-right:6px;opacity:.35}
.mymq1p .qiknscjv::before{content:"|";opacity:.3}
.mymq1p .xo8mv + .xo8mv::before{content:"|";margin-right:6px;opacity:.3}
.tvhn .qiknscjv::before{content:"—";opacity:.3}
.tvhn .xo8mv + .xo8mv::before{content:"—";margin-right:6px;opacity:.3}
.wdo4 .qiknscjv::before{content:"◆";font-size:.5em;opacity:.35}
.wdo4 .xo8mv + .xo8mv::before{content:"◆";font-size:.5em;margin-right:6px;opacity:.35}
.d60d3g91 .qiknscjv::before{content:"·";opacity:.4}
.d60d3g91 .xo8mv + .xo8mv::before{content:"·";margin-right:6px;opacity:.4}
.s4oaab .qiknscjv::before{content:"›";opacity:.4}
.s4oaab .xo8mv + .xo8mv::before{content:"›";margin-right:6px;opacity:.4}
.g2gwqtp .qiknscjv::before{content:"→";opacity:.35;font-size:.85em}
.g2gwqtp .xo8mv + .xo8mv::before{content:"→";font-size:.85em;margin-right:6px;opacity:.35}


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

/* author box variants */
.ljx289j .g5plu0{background:var(--surface-alt);border-radius:var(--radius, 8px);border:1px solid var(--border)}
.ndkk3 .g5plu0{border-top:3px solid var(--accent);padding-top:18px}
.thw85 .g5plu0{border-left:3px solid var(--accent);border-radius:0}
.i5h6utof .g5plu0{padding:20px 0}

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

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


/* ── color scheme ── */
:root {
  --accent:          #864840;
  --accent-light:    #c0796f;
  --accent-pale:     #fdada1;
  --grad-start:      #ea9d92;
  --grad-end:        #ffdad5;
  --bg-page: #edd5d1;
  --bg-surface: #fff8f7;
  --bg-card: #fff0ee;
  --bg-card-inner: #fee9e6;
  --bg-raised: #fae3e0;
  --bg-hover: #f6ddd9;
  --border: #c3adaa;
  --border-alt: #8a7673;
  --border-section: #c3adaa;
  --text-primary: #3e2f2d;
  --text-muted: #6d5b58;
  --bg-page:        #f8f9fa;
  --bg-surface:     #ffffff;
  --bg-card:        #ffffff;
  --bg-card-inner:  #f3f4f6;
  --bg-raised:      #eef0f2;
  --bg-hover:       #f3f4f6;
  --border:         #e5e7eb;
  --border-alt:     #d1d5db;
  --border-section: #e5e7eb;
  --text-body: #372e2d;
  --text-sub: #4e4443;
  --text-faint: #746866;
  --text-dim: #9b8e8c;
  --text-label: #675c5a;
  --text-value: #433938;
  --accent-bg:       #ffdad5;
  --accent-bg-light: #ffc7bf;
  --bg-tip:        #f0fdf4;
  --bg-warning:    #fffbeb;
  --bg-info:       #eff6ff;
  --bg-pros:       #f0fdf4;
  --bg-cons:       #fef2f2;
  --c-pros:        #15803d;
  --c-cons:        #b91c1c;
  --c-pros-label:  #16a34a;
  --c-tip-border:  #059669;
  --c-warn-border: #d97706;
  --c-stars:       #b45309;
  --c-arrow:       #d97706;
  --c-tag-pay:     #15803d;
}
:root { --logo-bg-opacity: 38%; }

/* ── variants ── */
body, button, input { font-family: system-ui, -apple-system, sans-serif; }

.ajkgl .a79x { font-size: 0; width: 1.2rem; flex-shrink: 0; }.ajkgl .a79x::before {  content: ""; display: inline-block;  font-family: "Font Awesome 6 Free"; font-weight: 900;  font-size: 1.1rem; line-height: 1; }.ajkgl .m3yetp2     .a79x::before { content: "";  color: var(--c-tip-border); }.ajkgl .iucbht9 .a79x::before { content: ""; color: var(--c-warn-border); }.ajkgl .zl977wqz    .a79x::before { content: ""; color: #60a5fa; }.ar7m2v38 .ajkgl .m3yetp2     .a79x::before { color: #10b981; }.ar7m2v38 .ajkgl .iucbht9 .a79x::before { color: #f43f5e; }.ar7m2v38 .ajkgl .zl977wqz    .a79x::before { color: #a855f7; }.rgv8w  .ajkgl .m3yetp2     .a79x::before { color: #eab308; }.rgv8w  .ajkgl .iucbht9 .a79x::before { color: #ef4444; }.rgv8w  .ajkgl .zl977wqz    .a79x::before { color: #f97316; }.i17k7r8  .ajkgl .m3yetp2     .a79x::before { color: #38bdf8; }.i17k7r8  .ajkgl .iucbht9 .a79x::before { color: #818cf8; }.i17k7r8  .ajkgl .zl977wqz    .a79x::before { color: #2dd4bf; }.f1zzabqy .ajkgl .a79x::before { color: var(--accent-light) !important; }

.b7wzpxj .yiayy, .b7wzpxj .phkp { min-height: 520px; }

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

.mrlwxl25 .t2a76hli::after,.mrlwxl25 .lkva0d0::after {  content: "" !important; font-family: "Font Awesome 6 Free" !important;  font-weight: 900 !important; display: inline-block !important;  margin-left: 6px; vertical-align: -0.05em; font-size: 0.8em; line-height: 1; }

.ig1k0xde::before { content: '—'; }

.tdwt1h .xo8mv::before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:5px;font-size:1em;opacity:.55}.tdwt1h .xo8mv:first-of-type::before{content:"\f073"}.tdwt1h .xo8mv:last-of-type::before{content:"\f303"}