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

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

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

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

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

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

/* hero-flat: без фону, просто текст на page bg (WP-style) */
.q9as {
  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);
}
.q9as .c5z8qz {
  width: 100%; max-width: 1100px; padding: 24px 24px;
}
.q9as .a5ulh9q { color: var(--text-primary); text-shadow: none; }
.q9as .c3ofb { color: var(--text-muted); }
.q9as .obanipno { margin-top: 16px; }
.q9as, .q9as.aq2j { min-height: auto !important; }
.q9as.t53i .c5z8qz { text-align: center; }
.q9as.w5in4se8   .c5z8qz { text-align: left; }
/* flat hero: byline як звичайний текст, не оверлей */
.q9as~.hovk{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}
.q9as~.hovk .m453jwla{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: градієнтний фон замість фото */
.nukm {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}
/* hero_anim: shimmer — ледь помітний блиск по поверхні */
.nqsdro .nukm,
.nqsdro .r54pz80h {
  position: relative; overflow: hidden;
}
.nqsdro .nukm::after,
.nqsdro .r54pz80h::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 */
.cpc1bow .nukm,
.cpc1bow .r54pz80h {
  animation: hg-breathe 10s ease-in-out infinite;
}
@keyframes hg-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
/* hero_anim: grain — ледь помітна зернистість поверх градієнту */
.l7c0a .nukm,
.l7c0a .r54pz80h,
.l7c0a .km3o8 .gq1jzxi {
  position: relative; overflow: hidden;
}
.l7c0a .nukm::after,
.l7c0a .r54pz80h::after,
.l7c0a .km3o8 .gq1jzxi::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 */
.vwl7wlt .nukm,
.vwl7wlt .r54pz80h {
  position: relative; overflow: hidden;
}
.vwl7wlt .nukm::after,
.vwl7wlt .r54pz80h::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); }
}
.vwl7wlt .km3o8 .gq1jzxi {
  position: relative; overflow: hidden;
}
.vwl7wlt .km3o8 .gq1jzxi::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 — градієнт з'являється при завантаженні */
.mhqyt .nukm,
.mhqyt .r54pz80h,
.mhqyt .km3o8 .gq1jzxi {
  animation: hg-fadein 1.2s ease-out both;
}
@keyframes hg-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* hero-bg з фото — overlay анімації */
.nqsdro .km3o8 .gq1jzxi {
  position: relative; overflow: hidden;
}
.nqsdro .km3o8 .gq1jzxi::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;
}
.cpc1bow .km3o8 .gq1jzxi {
  animation: hg-breathe 10s ease-in-out infinite;
}

.nukm .gq1jzxi {
  background: none;
}
.nukm .a5ulh9q { color: #fff; }
.nukm .c3ofb { color: rgba(255,255,255,0.85); }

/* ── Hero anim: split layouts ─────────────────────────────────────────────── */
.nqsdro .jlytj2y { position: relative; overflow: hidden; }
.nqsdro .jlytj2y::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;
}
.cpc1bow .jlytj2y {
  animation: hg-breathe 7s ease-in-out infinite;
}
.l7c0a .jlytj2y { position: relative; overflow: hidden; }
.l7c0a .jlytj2y::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;
}
.vwl7wlt .jlytj2y { position: relative; overflow: hidden; }
.vwl7wlt .jlytj2y::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;
}
.mhqyt .jlytj2y {
  animation: hg-fadein 1.2s ease-out both;
}


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

/* Split alignment — всередині text-колонки */
.jlytj2y.t53i .oknuoqf { align-items: center; text-align: center; }
.jlytj2y.w5in4se8   .oknuoqf { align-items: flex-start; text-align: left; }

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


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

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

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

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

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

/* ── Hero: split-cards ────────────────────────────────────────────────────── */
.i9pgkb .nivp {
  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);
}
.wtl8z {
  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;
}
.wtl8z:last-child { border-bottom: none; }
.wtl8z:hover { background: rgba(255,255,255,0.14); }
.irwhqb { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.o1spzs0l { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.rlxaidrj { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.r9zh1lg4 { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vrqy16w { font-size: 0.82rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pj6ey1vg { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.npdmhho5 { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); }
.npdmhho5 small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }
.vb0pdj2 { font-size: 0.8rem; padding: 6px 14px; white-space: nowrap; }

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

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

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

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


@media (max-width: 700px) {
  .jlytj2y { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .jlytj2y .l4hl { display: none !important; }
  .eaqq .l4hl { display: none !important; }
  .i9pgkb .nivp { display: none !important; }
  .ntja .tz1fzcm1 { display: none !important; }
  .oknuoqf  { padding: 36px 24px; }
  .jlytj2y~.hovk,.kmkq~.hovk{max-width:100%;left:0;right:0;transform:none;padding:0 24px}
  /* cap hero height variants on mobile */
  .aq2j, .jlytj2y { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .a5ulh9q { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  /* cards-top: hide on mobile */
  .vxes { display: none !important; }
  /* numbered: stack */
  .dgo9ki1l { flex-direction: column; align-items: center; }
  .mxsvndg { width: 100%; max-width: 340px; }
}

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

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

/* rounded */
.vyt4 .epu59        { border-radius: 16px; }
.vyt4 .q68xk27  { border-radius: 16px; }

/* shadow */
.ld74 .epu59         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.ld74 .q68xk27   { border-radius: 8px; }


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

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

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

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

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

.w3wfuvi .ets4t:nth-child(even) .zokeujx .nv1lm:nth-child(odd),
.uxvt8v0 .ets4t:nth-child(even) .zokeujx .nv1lm:nth-child(odd)  { background: var(--bg-card); }
.w3wfuvi .ets4t:nth-child(even) .zokeujx .nv1lm:nth-child(even),
.uxvt8v0 .ets4t:nth-child(even) .zokeujx .nv1lm:nth-child(even) { background: var(--bg-card-inner); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ru51gjf .fqvb4h,
.ru51gjf .wjwbh6cf,
.ru51gjf .rlxl7f,
.ru51gjf .gosym { font-style: normal; color: var(--text-body); }

.mr77 .fqvb4h,
.mr77 .wjwbh6cf {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.mr77 .rlxl7f,
.mr77 .gosym {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

.n0mslw9 .fqvb4h,
.n0mslw9 .wjwbh6cf,
.n0mslw9 .rlxl7f,
.n0mslw9 .gosym {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}
────────────────────────────────────────────────────────────────────────────── */

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

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

.hznie     .e2e0hmmi { list-style-type: "● "; }
.kzpcetk  .e2e0hmmi { list-style-type: "■ "; }
.zttxh3 .e2e0hmmi { list-style-type: "◆ "; }
.b2z1uq8t    .e2e0hmmi { list-style-type: "★ "; }

.hznie     .lwvsbr { list-style-type: "● "; }
.kzpcetk  .lwvsbr { list-style-type: "■ "; }
.zttxh3 .lwvsbr { list-style-type: "◆ "; }
.b2z1uq8t    .lwvsbr { list-style-type: "★ "; }

.hznie    .e2e0hmmi li::marker, .hznie    .lwvsbr li::marker,
.kzpcetk .e2e0hmmi li::marker, .kzpcetk .lwvsbr li::marker,
.zttxh3 .e2e0hmmi li::marker, .zttxh3 .lwvsbr li::marker,
.b2z1uq8t   .e2e0hmmi li::marker, .b2z1uq8t   .lwvsbr li::marker {
  color: var(--accent); font-size: 0.8em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

/* pill = solid but very rounded */
.k1xdm5x4 .obanipno { border-radius: 50px; }
.k1xdm5x4 .te65m  { border-radius: 50px; }
/* btn_pad */
.zwpgdh .obanipno { padding-left: 22px; padding-right: 22px; }
.zwpgdh .te65m  { padding-left: 12px; padding-right: 12px; }
.pfzv1kd .obanipno { padding-left: 44px; padding-right: 44px; }
.pfzv1kd .te65m  { padding-left: 24px; padding-right: 24px; }
.tx015b .obanipno { padding-left: 56px; padding-right: 56px; }
.tx015b .te65m  { padding-left: 32px; padding-right: 32px; }

/* ── btn_icon: SVG-іконки на .obanipno і .te65m (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.ttecy2n   .obanipno::after, .ttecy2n   .te65m::after,
.gapf .obanipno::after, .gapf .te65m::after,
.mgfq    .obanipno::after, .mgfq    .te65m::after,
.rurxsu    .obanipno::after, .rurxsu    .te65m::after,
.nlojaqjg    .obanipno::after, .nlojaqjg    .te65m::after,
.rph4cq     .obanipno::after, .rph4cq     .te65m::after,
.vqvwd9x    .obanipno::after, .vqvwd9x    .te65m::after,
.mc9jcklv   .obanipno::after, .mc9jcklv   .te65m::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 — кожна іконка */
.ttecy2n .obanipno::after, .ttecy2n .te65m::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");
}
.gapf .obanipno::after, .gapf .te65m::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");
}
.mgfq .obanipno::after, .mgfq .te65m::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");
}
.rurxsu .obanipno::after, .rurxsu .te65m::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");
}
.nlojaqjg .obanipno::after, .nlojaqjg .te65m::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");
}
.rph4cq .obanipno::after, .rph4cq .te65m::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");
}
.vqvwd9x .obanipno::after, .vqvwd9x .te65m::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");
}
.mc9jcklv .obanipno::after, .mc9jcklv .te65m::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 ────────*/
.nr6y8   .bxvtyec8::after, .nr6y8   .tqavm51::after,
.p9ra2 .bxvtyec8::after, .p9ra2 .tqavm51::after,
.qkkiic12    .bxvtyec8::after, .qkkiic12    .tqavm51::after,
.dy62lx    .bxvtyec8::after, .dy62lx    .tqavm51::after,
.xkee113    .bxvtyec8::after, .xkee113    .tqavm51::after,
.acu8     .bxvtyec8::after, .acu8     .tqavm51::after,
.kqxs6px    .bxvtyec8::after, .kqxs6px    .tqavm51::after,
.dfewu   .bxvtyec8::after, .dfewu   .tqavm51::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;
}
.nr6y8 .bxvtyec8::after, .nr6y8 .tqavm51::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");
}
.p9ra2 .bxvtyec8::after, .p9ra2 .tqavm51::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");
}
.qkkiic12 .bxvtyec8::after, .qkkiic12 .tqavm51::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");
}
.dy62lx .bxvtyec8::after, .dy62lx .tqavm51::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");
}
.xkee113 .bxvtyec8::after, .xkee113 .tqavm51::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");
}
.acu8 .bxvtyec8::after, .acu8 .tqavm51::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");
}
.kqxs6px .bxvtyec8::after, .kqxs6px .tqavm51::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");
}
.dfewu .bxvtyec8::after, .dfewu .tqavm51::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 ─────────────────────────────────────────────────────────*/
.ofx5atry { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


.blmgejai {
  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 */
.blmgejai > [itemprop="item"] { display: contents; }
.blmgejai:hover { background: var(--bg-hover); }
.kgcs {
  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 */
.lvec5p .kgcs { background: #1a1a1a; }
.k7d2 .kgcs { background: rgba(128,128,128,.12); }
.jrqim .kgcs { background: var(--bg-raised); }
.am2nt .kgcs { background: transparent; padding: 0; }
.j2fghxpu { max-height: 34px; max-width: 80px; object-fit: contain; }
.gl1cqsg { font-weight: 700; font-size: .85rem; color: var(--accent-light); }
.o7vu0 { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; }
.clijvi { font-weight: 700; font-size: .88rem; color: var(--text-primary); flex-shrink: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.h0mqs4 { color: var(--accent); font-size: .8rem; letter-spacing: 1px; flex-shrink: 1; min-width: 0; }
.bnzdw { display: flex; flex-direction: column; align-items: center; font-size: .78rem; flex: 1 1 0; min-width: 0; }
.t3y3 { color: var(--text-label); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.ldinko { color: var(--text-value); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.egomva { margin-left: auto; flex-shrink: 0; white-space: nowrap; }
.egomva.te65m { padding-left: 16px !important; padding-right: 16px !important; }
/* планшет / мобіль: 2-колонкова сітка вертикальних карток */
@media (max-width: 720px) {
  .ofx5atry { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .ofx5atry .blmgejai { flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px; }
  .ofx5atry .o7vu0 { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
  .ofx5atry .kgcs { width: 100%; min-width: unset; height: 52px; }
  .ofx5atry .j2fghxpu { max-height: 40px; max-width: 110px; }
  .ofx5atry .clijvi { min-width: unset; text-align: center; white-space: normal; }
  .ofx5atry .bnzdw { flex-direction: row; justify-content: space-between; width: 100%; border-top: 1px solid var(--border); padding-top: 5px; }
  .ofx5atry .egomva { width: 100%; text-align: center; margin-left: 0; }
  .lpbapf .blmgejai { row-gap: 8px !important; gap: 8px !important; }
}

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.onmhz8vr {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.tw77w {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.l8f0 {
  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;
}
.l8f0 img { max-width: 80px; max-height: 50px; object-fit: contain; }
.wjzo6kzw { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.bz466xo { flex: 1; }
.bz466xo h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.izbt604z { color: var(--c-stars); font-size: 1.1rem; }
.o3ecj9p { margin-bottom: 8px; }
.zx60j { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.demotmr::before   { content: "★ "; color: var(--accent); }
.kr1t3c::before { content: "↓ "; color: var(--accent); }
.qdkvwob::before { content: "✦ "; color: var(--accent); }
.cjabw5p8 { flex-shrink: 0; }
.ymjzg img.h08i { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.vp9kge0t { padding: 20px 24px; }
.gwgug { color: var(--text-muted); margin-bottom: 16px; }
.tlbkryu { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.suqzzty, .r9yz3 { list-style: none; font-size: 0.9rem; }
.suqzzty li { color: var(--c-pros); margin-bottom: 4px; }
.r9yz3 li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.suqzzty li::before { content: "✓"; margin-right: 5px; }
.r9yz3 li::before { content: "✗"; margin-right: 5px; }
.kos8k8x .suqzzty li::before { content: "→"; }
.kos8k8x .r9yz3 li::before { content: "–"; }
.nlmc1  .suqzzty li::before { content: "★"; }
.nlmc1  .r9yz3 li::before { content: "✕"; }
.eja9e    .suqzzty li::before { content: "◆"; }
.eja9e    .r9yz3 li::before { content: "▲"; }
.i6u2a  .suqzzty li::before { content: "▶"; }
.i6u2a  .r9yz3 li::before { content: "■"; }
.yt62lhn { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.vbidvx02 { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.khqh6 { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

/* ── Brand card (single brand, two-column hero) ─────────────────────────────*/
/* ═══════════════════════════════════════════════════════════════════════════
   BRAND CARD — shared tokens
   ═══════════════════════════════════════════════════════════════════════════ */
.oub7 {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.jcwtw {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.jcwtw img { max-width: 100%; max-height: 100%; object-fit: contain; }
.mrw11y23 { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.zeu38r76 { display: flex; align-items: center; gap: 8px; }
.zeu38r76 .izbt604z { font-size: .95rem; }
.zeu38r76 strong { font-size: 1.1rem; color: var(--text); }
.ug8gjh { border-radius: 8px; overflow: hidden; }
.ug8gjh img { width: 100%; display: block; border-radius: 8px; }
.x8ecglxe { text-align: center; flex-shrink: 0; }
.vh5bfb4t { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.u154ol { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.blu19w { font-size: .88rem; font-weight: 600; color: var(--text); }
.ehwdsjs7 .blu19w { font-size: 1.02rem; font-weight: 700; color: var(--accent); }
.oub7 .onitpbi { gap: 10px; }
.oub7 .oa3eprk, .oub7 .fz9vdle { padding: 12px; }
.oub7 .oa3eprk ul, .oub7 .fz9vdle ul { margin: 4px 0 0; padding-left: 18px; }
.oub7 .oa3eprk li, .oub7 .fz9vdle li { font-size: .85rem; margin-bottom: 3px; }
.sealt { font-size: .8rem; color: var(--text-muted); margin-top: 10px; }
.sealt strong { color: var(--text-secondary); }
.sealt .vbidvx02 { margin: 2px 4px 2px 0; }

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

/* ── LAYOUT 2: hero — full-width screenshot header ────────────────────────── */
.p53rxdbf {
  position: relative; max-height: 240px; overflow: hidden;
}
.p53rxdbf > img { width: 100%; display: block; object-fit: cover; min-height: 160px; }
.oflr {
  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;
}
.oflr .jcwtw { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.oflr .mrw11y23 { color: #fff; font-size: 1.25rem; }
.oflr .zeu38r76 strong { color: #fff; }
.oflr .zeu38r76 .izbt604z { filter: brightness(1.2); }
.oflr .x8ecglxe { margin-left: auto; white-space: nowrap; }
.fbbd5 { flex: 1; }
.txou8pg {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-alt);
}
.txou8pg .x8ecglxe { margin-left: auto; }
.azoqm4m6 { display: flex; flex-direction: column; gap: 16px; padding: 20px 24px; }
.qaw6dok .kxxbtz3 {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.qaw6dok .vh5bfb4t {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.qaw6dok .ehwdsjs7 { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .oflr { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .azoqm4m6 { padding: 16px; }
  .qaw6dok .vh5bfb4t { min-width: 50%; }
}

/* ── LAYOUT 3: magazine — editorial 3-column ──────────────────────────────── */
.n7avzpy {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.cz4ldddb { flex: 1; }
.cz4ldddb .mrw11y23 { font-size: 1.3rem; }
.p5942ct {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.aqgphxm { padding: 16px; border-right: 1px solid var(--border-alt); }
.aqgphxm .ug8gjh { height: 100%; }
.aqgphxm .ug8gjh img { height: 100%; object-fit: cover; }
.fun8tm2p { padding: 0; border-right: 1px solid var(--border-alt); }
.fun8tm2p .kxxbtz3 { display: flex; flex-direction: column; }
.fun8tm2p .vh5bfb4t { border-bottom: 1px solid var(--border-alt); }
.fun8tm2p .ehwdsjs7 { background: var(--accent-bg); }
.q08n3xhz { padding: 16px; }
.q08n3xhz .onitpbi { grid-template-columns: 1fr; }
.liu3n2 {
  padding: 12px 24px; border-top: 1px solid var(--border-alt);
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .p5942ct { grid-template-columns: 1fr; }
  .aqgphxm { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .fun8tm2p { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .n7avzpy { flex-wrap: wrap; padding: 16px; }
}

/* ── LAYOUT 4: compact — header bar → screenshot → data ──────────────────── */
.d0r98 {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border-alt);
}
.mgiaj {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.mgiaj .jcwtw { width: 72px; height: 50px; }
.mgiaj .mrw11y23 { font-size: 1rem; white-space: nowrap; }
.jklzyq { border-bottom: 1px solid var(--border-alt); max-height: 280px; overflow: hidden; }
.jklzyq img { width: 100%; display: block; object-fit: cover; }
.kklycb {
  display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; overflow: hidden;
}
.ft58k2 .kxxbtz3 { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.ft58k2 .vh5bfb4t { padding: 0; flex: 0 0 auto; gap: 6px; }
.ft58k2 .ehwdsjs7 { display: none; }
.ft58k2 .onitpbi { gap: 8px; }
.ft58k2 .oa3eprk, .ft58k2 .fz9vdle { padding: 8px; }
@media (max-width: 480px) {
  .d0r98 { flex-direction: column; align-items: stretch; }
}

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

/* ── LAYOUT 6: scorecard — big score centerpiece ──────────────────────────── */
.xc1z {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
  border-bottom: 1px solid var(--border-alt);
}
.pcx3mr63 {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; text-align: center;
}
.jqf8q {
  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;
}
.x4wbvm { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.x4wbvm .sq0d4ae2 { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.jqf8q .izbt604z { font-size: .75rem; margin-top: 2px; }
.b7jwd { padding: 12px; display: flex; align-items: center; flex: 1; }
.b7jwd .ug8gjh { width: 100%; }
.dqzl3lok {
  padding: 0; border-bottom: 1px solid var(--border-alt);
}
.bscbye .kxxbtz3 {
  display: flex; flex-wrap: wrap;
}
.bscbye .vh5bfb4t {
  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;
}
.bscbye .vh5bfb4t:last-child { border-right: none; }
.bscbye .u154ol { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.bscbye .ehwdsjs7 { background: var(--accent-bg); }
.cybqpx { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 720px) {
  .xc1z { grid-template-columns: 1fr; }
  .jqf8q { width: 100px; height: 100px; margin: 16px auto; }
  .x4wbvm { font-size: 1.4rem; }
  .b7jwd { justify-content: center; }
  .bscbye .vh5bfb4t { min-width: 50%; }
}

/* ── LAYOUT 7: stack — vertical full-width flow ──────────────────────────── */
.iektxmlz {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.wnrit6t { max-height: 240px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.wnrit6t img { width: 100%; display: block; object-fit: cover; }
.dc0yr7 { padding: 16px 24px; border-bottom: 1px solid var(--border-alt); }
.ynp4 .kxxbtz3 {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ynp4 .vh5bfb4t {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.ynp4 .ehwdsjs7 {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.ynp4 .onitpbi { margin: 0 24px; padding-top: 16px; }
.ynp4 .sealt { padding: 0 24px; }
.cj0mv0fa { padding: 16px 24px; border-top: 1px solid var(--border-alt); text-align: center; }
.cj0mv0fa .x8ecglxe { display: inline-block; }
@media (max-width: 540px) {
  .iektxmlz { flex-wrap: wrap; padding: 14px 16px; }
  .dc0yr7 { padding: 12px 16px; }
  .ynp4 .onitpbi { margin: 0 16px; }
  .ynp4 .sealt { padding: 0 16px; }
  .cj0mv0fa { padding: 12px 16px; }
}


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

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

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.uqe7r .t3y3 {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.uqe7r .ldinko {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.uqe7r .h0mqs4 { color: var(--accent); }
.uqe7r .tw77w { background: var(--accent-bg); }
.uqe7r .demotmr, .uqe7r .kr1t3c, .uqe7r .qdkvwob {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

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

/* compact: менші відступи всюди */
.z57g .blmgejai { padding: 8px 14px; gap: 12px; }
.z57g .kgcs { height: 32px; min-width: 52px; }
.z57g .j2fghxpu { max-height: 24px; }
.z57g .clijvi { font-size: 0.82rem; }
.z57g .tw77w { padding: 14px 18px; gap: 14px; }
.z57g .vp9kge0t { padding: 14px 18px; }
.z57g .l8f0 { width: 70px; }
.z57g .bz466xo h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.lpbapf .ofx5atry {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.lpbapf .blmgejai {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); row-gap: 0; column-gap: 12px;
}
.lpbapf .blmgejai:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.lpbapf .h0mqs4,
.lpbapf .x0csjxq,
.lpbapf .fmpe { border-left: 1px solid var(--border); padding-left: 10px; }
.lpbapf .clijvi { padding: 0 10px; }

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

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

/* ── casino-wide: високі горизонтальні картки з великим лого ───────────────*/
.c18z8kjt .ofx5atry { gap: 12px; }
.c18z8kjt .blmgejai {
  padding: 18px 24px; gap: 20px; border-radius: 12px;
  min-height: 80px;
}
.c18z8kjt .kgcs {
  min-width: 90px; height: 64px; padding: 6px 12px; border-radius: 10px;
}
.c18z8kjt .j2fghxpu { max-height: 52px; max-width: 120px; }
.c18z8kjt .clijvi { font-size: 1rem; }
.c18z8kjt .bnzdw { font-size: .85rem; }
.c18z8kjt .ldinko { font-size: .9rem; }
.c18z8kjt .egomva.te65m { padding: 10px 24px !important; font-size: .9rem; }

/* ── casino-jumbo: дуже великі картки, лого + інтерфейс скриншот ──────────*/
.o3b5ih8l .ofx5atry { gap: 16px; }
.o3b5ih8l .blmgejai {
  padding: 24px 28px; gap: 24px; border-radius: 14px;
  min-height: 100px; border-width: 2px;
}
.o3b5ih8l .kgcs {
  min-width: 110px; height: 80px; padding: 8px 14px; border-radius: 12px;
  background: var(--bg-raised);
}
.o3b5ih8l .j2fghxpu { max-height: 64px; max-width: 140px; }
.o3b5ih8l .clijvi { font-size: 1.1rem; font-weight: 800; }
.o3b5ih8l .h0mqs4 { font-size: .95rem; letter-spacing: 2px; }
.o3b5ih8l .bnzdw { font-size: .9rem; }
.o3b5ih8l .ldinko { font-size: .95rem; font-weight: 700; }
.o3b5ih8l .t3y3 { font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; }
.o3b5ih8l .egomva.te65m { padding: 12px 32px !important; font-size: .95rem; font-weight: 700; }

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

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.s6dlpj .x0csjxq { flex: 1.8; }
.s6dlpj .x0csjxq .ldinko {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}
.s6dlpj .x0csjxq .t3y3 { font-weight: 700; color: var(--text-primary); }
.s6dlpj .j6utl9y,
.s6dlpj .s4y52,
.s6dlpj .tzxz { flex: 0.75; opacity: 0.65; }

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

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

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

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

/* score в оглядах — ховаємо зірки */
.a6pfsc .o3ecj9p .izbt604z,
.j7t5 .o3ecj9p .izbt604z,
.pmgq .o3ecj9p .izbt604z { display: none; }

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

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

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

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.ets4t { margin-bottom: 0; }
.mrjoi2r h2.o85x54il { color: var(--accent-light); border-color: var(--accent); }
.jaf9d3h h2.o85x54il { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.qf96b7ht .gn48dd2k     { background: #052e16; border-color: #10b981; }
.qf96b7ht .t3x6hgp { background: #2d0a1e; border-color: #f43f5e; }
.qf96b7ht .yccgpzk0    { background: #1e1036; border-color: #a855f7; }
.qf96b7ht .n80e0gco strong  { color: #f1f5f9; }
.qf96b7ht .n80e0gco p       { color: #cbd5e1; }
.qf96b7ht .dyri36    .gn48dd2k     .y0c7jgq::before,
.qf96b7ht .cxtf9  .gn48dd2k     .y0c7jgq::before,
.qf96b7ht .qhtng  .gn48dd2k     .y0c7jgq::before,
.qf96b7ht .fgii9jg .gn48dd2k     .y0c7jgq::before { color: #10b981; }
.qf96b7ht .dyri36    .t3x6hgp .y0c7jgq::before,
.qf96b7ht .cxtf9  .t3x6hgp .y0c7jgq::before,
.qf96b7ht .qhtng  .t3x6hgp .y0c7jgq::before,
.qf96b7ht .fgii9jg .t3x6hgp .y0c7jgq::before { color: #f43f5e; }
.qf96b7ht .dyri36    .yccgpzk0    .y0c7jgq::before,
.qf96b7ht .cxtf9  .yccgpzk0    .y0c7jgq::before,
.qf96b7ht .qhtng  .yccgpzk0    .y0c7jgq::before,
.qf96b7ht .fgii9jg .yccgpzk0    .y0c7jgq::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.r9euis5 .gn48dd2k     { background: #2d2000; border-color: #eab308; }
.r9euis5 .t3x6hgp { background: #2d0b0b; border-color: #ef4444; }
.r9euis5 .yccgpzk0    { background: #2d1600; border-color: #f97316; }
.r9euis5 .n80e0gco strong  { color: #f1f5f9; }
.r9euis5 .n80e0gco p       { color: #cbd5e1; }
.r9euis5 .dyri36    .gn48dd2k     .y0c7jgq::before,
.r9euis5 .cxtf9  .gn48dd2k     .y0c7jgq::before,
.r9euis5 .qhtng  .gn48dd2k     .y0c7jgq::before,
.r9euis5 .fgii9jg .gn48dd2k     .y0c7jgq::before { color: #eab308; }
.r9euis5 .dyri36    .t3x6hgp .y0c7jgq::before,
.r9euis5 .cxtf9  .t3x6hgp .y0c7jgq::before,
.r9euis5 .qhtng  .t3x6hgp .y0c7jgq::before,
.r9euis5 .fgii9jg .t3x6hgp .y0c7jgq::before { color: #ef4444; }
.r9euis5 .dyri36    .yccgpzk0    .y0c7jgq::before,
.r9euis5 .cxtf9  .yccgpzk0    .y0c7jgq::before,
.r9euis5 .qhtng  .yccgpzk0    .y0c7jgq::before,
.r9euis5 .fgii9jg .yccgpzk0    .y0c7jgq::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.netq .gn48dd2k     { background: #0c1a2e; border-color: #38bdf8; }
.netq .t3x6hgp { background: #12103a; border-color: #818cf8; }
.netq .yccgpzk0    { background: #0a2020; border-color: #2dd4bf; }
.netq .n80e0gco strong  { color: #f1f5f9; }
.netq .n80e0gco p       { color: #cbd5e1; }
.netq .dyri36    .gn48dd2k     .y0c7jgq::before,
.netq .cxtf9  .gn48dd2k     .y0c7jgq::before,
.netq .qhtng  .gn48dd2k     .y0c7jgq::before,
.netq .fgii9jg .gn48dd2k     .y0c7jgq::before { color: #38bdf8; }
.netq .dyri36    .t3x6hgp .y0c7jgq::before,
.netq .cxtf9  .t3x6hgp .y0c7jgq::before,
.netq .qhtng  .t3x6hgp .y0c7jgq::before,
.netq .fgii9jg .t3x6hgp .y0c7jgq::before { color: #818cf8; }
.netq .dyri36    .yccgpzk0    .y0c7jgq::before,
.netq .cxtf9  .yccgpzk0    .y0c7jgq::before,
.netq .qhtng  .yccgpzk0    .y0c7jgq::before,
.netq .fgii9jg .yccgpzk0    .y0c7jgq::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.kvuw1 .gn48dd2k     { background: var(--accent-bg); border-color: var(--accent); }
.kvuw1 .t3x6hgp { background: var(--accent-bg-light); border-color: var(--accent-light); }
.kvuw1 .yccgpzk0    { background: var(--accent-bg); border-color: var(--accent-pale); }
.kvuw1 .dyri36    .y0c7jgq::before,
.kvuw1 .cxtf9  .y0c7jgq::before,
.kvuw1 .qhtng  .y0c7jgq::before,
.kvuw1 .fgii9jg .y0c7jgq::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.zqkgv6ih .oa3eprk ul li,
.zqkgv6ih .suqzzty li         { color: #4ade80; }
.zqkgv6ih .oa3eprk .k26l { color: #22c55e; }
.zqkgv6ih .fz9vdle ul li,
.zqkgv6ih .r9yz3 li         { color: #f87171; }
.zqkgv6ih .fz9vdle .y99lvo { color: #ef4444; }

/* blue: синій pros / amber cons */
.cw0m .oa3eprk { background: #0c1a2e; }
.cw0m .fz9vdle { background: #2d1f00; }
.cw0m .oa3eprk .k26l { color: #93c5fd; }
.cw0m .fz9vdle .y99lvo { color: #fcd34d; }
.cw0m .oa3eprk ul li,
.cw0m .suqzzty li            { color: #bfdbfe; }
.cw0m .fz9vdle ul li,
.cw0m .r9yz3 li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.io1gyn .oa3eprk { background: var(--accent-bg); }
.io1gyn .fz9vdle { background: var(--accent-bg-light); }
.io1gyn .oa3eprk .k26l { color: var(--accent-pale); }
.io1gyn .fz9vdle .y99lvo { color: var(--accent-light); }
.io1gyn .oa3eprk ul li,
.io1gyn .suqzzty li          { color: var(--text-body); }
.io1gyn .fz9vdle ul li,
.io1gyn .r9yz3 li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.qw691x .k26l::before { content: "✓ "; }
.qw691x .y99lvo::before { content: "✗ "; }

/* arrows: → / ← */
.kos8k8x .k26l::before { content: "→ "; }
.kos8k8x .y99lvo::before { content: "← "; }

/* marks: ★ / ✕ */
.nlmc1 .k26l::before { content: "★ "; }
.nlmc1 .y99lvo::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.eja9e .k26l::before { content: "◆ "; }
.eja9e .y99lvo::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.uz0m .n80e0gco { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.uz0m .gn48dd2k     { border-top-color: var(--c-tip-border); }
.uz0m .t3x6hgp { border-top-color: var(--c-warn-border); }
.uz0m .yccgpzk0    { border-top-color: #60a5fa; }

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

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

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

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

.dyri36 .y0c7jgq,
.cxtf9 .y0c7jgq,
.qhtng .y0c7jgq,
.fgii9jg .y0c7jgq { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.dyri36 .y0c7jgq::before,
.cxtf9 .y0c7jgq::before,
.qhtng .y0c7jgq::before,
.fgii9jg .y0c7jgq::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.dyri36 .gn48dd2k     .y0c7jgq::before { content: "✦"; color: var(--c-tip-border); }
.dyri36 .t3x6hgp .y0c7jgq::before { content: "▲"; color: var(--c-warn-border); }
.dyri36 .yccgpzk0    .y0c7jgq::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.cxtf9 .gn48dd2k     .y0c7jgq::before { content: "★"; color: var(--c-tip-border); }
.cxtf9 .t3x6hgp .y0c7jgq::before { content: "◆"; color: var(--c-warn-border); }
.cxtf9 .yccgpzk0    .y0c7jgq::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.qhtng .gn48dd2k     .y0c7jgq::before { content: "▶"; color: var(--c-tip-border); }
.qhtng .t3x6hgp .y0c7jgq::before { content: "■"; color: var(--c-warn-border); }
.qhtng .yccgpzk0    .y0c7jgq::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.fgii9jg .gn48dd2k     .y0c7jgq::before { content: "→"; color: var(--c-tip-border); }
.fgii9jg .t3x6hgp .y0c7jgq::before { content: "⬥"; color: var(--c-warn-border); }
.fgii9jg .yccgpzk0    .y0c7jgq::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.kmjcuh3 .to0r .nv1lm,
.kmjcuh3 .zokeujx .nv1lm  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.kmjcuh3 .unctpbmt                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.kmjcuh3 .blmgejai                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.kmjcuh3 .onmhz8vr            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.kmjcuh3 .ja9fkhhz          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.kmjcuh3 .xwnl1z                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.rma7tgt9 .to0r .nv1lm,
.rma7tgt9 .zokeujx .nv1lm,
.rma7tgt9 .unctpbmt,
.rma7tgt9 .blmgejai,
.rma7tgt9 .onmhz8vr,
.rma7tgt9 .ja9fkhhz,
.rma7tgt9 .xwnl1z,
.rma7tgt9 .djyysi7 .n80e0gco { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.ckxx4or   body, .ckxx4or   { font-size: 0.9rem; }
.ckxx4or   .uoif, .ckxx4or .rlxl7f, .ckxx4or .gosym,
.ckxx4or   .fqvb4h, .ckxx4or .wjwbh6cf { font-size: 0.9rem; }
.ckxx4or   .e2e0hmmi, .ckxx4or .iks2378 { font-size: 0.9rem; }

.fclfo7s   .uoif, .fclfo7s .rlxl7f, .fclfo7s .gosym,
.fclfo7s   .fqvb4h, .fclfo7s .wjwbh6cf { font-size: 0.9rem; }
.fclfo7s   .e2e0hmmi, .fclfo7s .iks2378 { font-size: 0.9rem; }

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

.c9e88   .uoif, .c9e88 .rlxl7f, .c9e88 .gosym,
.c9e88   .fqvb4h, .c9e88 .wjwbh6cf { font-size: 1.08rem; }
.c9e88   .e2e0hmmi, .c9e88 .iks2378 { font-size: 1.05rem; }
.c9e88   .itcvprep { font-size: 0.97rem; }

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

/* large */
.y8b2 .a5ulh9q      { font-size: 3.2rem; }
.y8b2 h2.o85x54il { font-size: 1.9rem; }
.y8b2 h3.iug6i11     { font-size: 1.4rem; }

/* display */
.sdxc .a5ulh9q      { font-size: 3.8rem; }
.sdxc h2.o85x54il { font-size: 2.2rem; }
.sdxc h3.iug6i11     { font-size: 1.6rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.aadt9   .ets4t + .ets4t::before,
.gr8u  .ets4t + .ets4t::before,
.gmxlvix   .ets4t + .ets4t::before,
.qcm5tez   .ets4t + .ets4t::before,
.ziujo   .ets4t + .ets4t::before,
.x93p3 .ets4t + .ets4t::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}

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

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

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

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

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

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

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

/* section_bg=stripe: парні секції мають bg-card */
.uxvt8v0 .cjb5 .ets4t:nth-child(even)::before,
.uxvt8v0 .ugke7 .ets4t:nth-child(even)::before,
.uxvt8v0 .iieydg5 .ets4t:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.cjb5 .ets4t + .ets4t::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 гребені */
.ugke7 .ets4t + .ets4t::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: глибока дуга */
.iieydg5 .ets4t + .ets4t::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 у формі хвилі */
.nmdv0y1p .km3o8,
.l580ycm .km3o8,
.kukrfle3 .km3o8 { overflow: hidden; }

/* wave: додатковий простір щоб хвиля не закривала CTA */
.nmdv0y1p .c5z8qz,
.l580ycm .c5z8qz { margin-bottom: 60px; }
.kukrfle3 .c5z8qz { margin-bottom: 70px; }
.nmdv0y1p .oknuoqf,
.l580ycm .oknuoqf { padding-bottom: 60px; }
.kukrfle3 .oknuoqf { padding-bottom: 70px; }

.nmdv0y1p .km3o8::before,
.l580ycm .km3o8::before,
.kukrfle3 .km3o8::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 гребінь) */
.nmdv0y1p .km3o8::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 гребені */
.l580ycm .km3o8::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: глибока дуга */
.kukrfle3 .km3o8::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 */
.my0d .gq1jzxi { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.fkrg8nqi .gq1jzxi { background: linear-gradient(45deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%); }
.wj1h2  .gq1jzxi { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.e9gqwq  .gq1jzxi { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }

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

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

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

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

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


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

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

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

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

/* Великі блочні елементи — clear float щоб не стискались */
.g0qosro .snxjmg,
.g0qosro .ofx5atry,
.ii5awg0 .snxjmg,
.ii5awg0 .ofx5atry,
.irog8ui .snxjmg,
.irog8ui .ofx5atry { clear: both; }

/* Маркери списків не мають налазити на float-картинку */
.g0qosro .e2e0hmmi,
.g0qosro .iks2378,
.ii5awg0 .e2e0hmmi,
.ii5awg0 .iks2378,
.irog8ui .e2e0hmmi,
.irog8ui .iks2378 { overflow: hidden; }


@media (max-width: 640px) {
  .g0qosro .epu59,
  .ii5awg0 .epu59,
  .irog8ui .epu59 { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1100px (задано в .yp6dv6af, .ljdyl54, .pyspw7cm) */
.fxqsl2t .yp6dv6af,
.fxqsl2t .ljdyl54,
.fxqsl2t .pyspw7cm  { max-width: 1100px; }
.fxqsl2t { --content-mw: 1100px; }
.jpi2jv7 .yp6dv6af,
.jpi2jv7 .ljdyl54,
.jpi2jv7 .pyspw7cm  { max-width: 1200px; }
.jpi2jv7 { --content-mw: 1200px; }
.vefffh .yp6dv6af,
.vefffh .ljdyl54,
.vefffh .pyspw7cm  { max-width: 1320px; }
.vefffh { --content-mw: 1320px; }

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

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

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

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

/* content-width: above — обидва класи на <body>, тому без пробілу */
.fxqsl2t.bgvs .od8pa08 { max-width: 1100px; }
.jpi2jv7.bgvs .od8pa08 { max-width: 1200px; }
.vefffh.bgvs .od8pa08 { max-width: 1320px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.fxqsl2t .thrs { max-width: 1100px; }
.jpi2jv7 .thrs { max-width: 1200px; }
.vefffh .thrs { max-width: 1320px; }

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

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.lmnydk { font-weight: 300; }
.lmnydk h2.o85x54il { font-weight: 600; }
.lmnydk h3.iug6i11     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.y3mlu { font-weight: 500; }
.y3mlu h2.o85x54il { font-weight: 800; }
.y3mlu h3.iug6i11     { font-weight: 700; }
/* fw-600: semibold */
.d0zhwjtz { font-weight: 600; }
.d0zhwjtz h2.o85x54il { font-weight: 900; }
.d0zhwjtz h3.iug6i11     { font-weight: 800; }
.d0zhwjtz .n80e0gco strong,
.d0zhwjtz .n80e0gco strong { font-weight: 600; }
/* .d0zhwjtz .rlxl7f, .d0zhwjtz .fqvb4h { font-weight: 600; } */

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

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

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

/* minimal */
.j82yfs1 .pyspw7cm { text-align: center; }
.j82yfs1 .sj5d { justify-content: center; margin-bottom: 16px; }
.j82yfs1 .uvbi { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .pyspw7cm { padding-left: 16px; padding-right: 16px; }
  .qmm0 .pyspw7cm { padding: 20px 16px; }
  .sj5d { gap: 4px 12px; }
  .uvbi { font-size: 0.78rem; }
}


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


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

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

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

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

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

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

/* dark: завжди темний, незалежно від теми */
.wq01 .wrg603      { background: #0d1117; border-bottom-color: #21262d; }
.wq01 .hlsy { color: var(--accent-light); }
.wq01 .asum { --msep-color: #8b949e; }
.wq01 .asum a { color: #8b949e; }
.wq01 .asum a:hover { color: var(--accent-light); }
.wq01 .iwst70kk { color: #8b949e; }
.wq01 .i5zj0 { background: #0d1117; border-top-color: #21262d; }
.wq01 .uvbi,
.wq01 .h9zadud3 { color: #6e7681; }
.wq01 .muy8dg a, .wq01 .sj5d a,
.wq01 .tbifmcr a, .wq01 .otwmdln a,
.wq01 .g9lfp a, .wq01 .p2bgbe7 { color: #8b949e; }
.wq01 .muy8dg a:hover, .wq01 .sj5d a:hover,
.wq01 .tbifmcr a:hover, .wq01 .otwmdln a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .wq01 .asum { background: #0d1117; border-top-color: #21262d; }
  .wq01 .asum li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.ets022 .wrg603      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.ets022 .hlsy { color: var(--accent); }
.ets022 .asum { --msep-color: #475569; }
.ets022 .asum a { color: #475569; }
.ets022 .asum a:hover { color: var(--accent); }
.ets022 .iwst70kk { color: #64748b; }
.ets022 .i5zj0 { background: #f0f4f8; border-top-color: #cbd5e1; }
.ets022 .uvbi,
.ets022 .h9zadud3 { color: #64748b; }
.ets022 .muy8dg a, .ets022 .sj5d a,
.ets022 .tbifmcr a, .ets022 .otwmdln a,
.ets022 .g9lfp a, .ets022 .p2bgbe7 { color: #374151; }
.ets022 .muy8dg a:hover, .ets022 .sj5d a:hover,
.ets022 .tbifmcr a:hover, .ets022 .otwmdln a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .ets022 .asum { background: #f0f4f8; border-top-color: #cbd5e1; }
  .ets022 .asum li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.lifakc .wrg603      { background: var(--accent); border-bottom-color: var(--accent-light); }
.lifakc .hlsy { color: #fff; }
.lifakc .asum { --msep-color: rgba(255,255,255,0.82); }
.lifakc .asum a { color: rgba(255,255,255,0.82); }
.lifakc .asum a:hover { color: #fff; }
.lifakc .iwst70kk { color: rgba(255,255,255,0.9); }
.lifakc .i5zj0 { background: var(--accent); border-top-color: var(--accent-light); }
.lifakc .uvbi,
.lifakc .h9zadud3 { color: rgba(255,255,255,0.72); }
.lifakc .muy8dg a, .lifakc .sj5d a,
.lifakc .tbifmcr a, .lifakc .otwmdln a,
.lifakc .g9lfp a, .lifakc .p2bgbe7 { color: rgba(255,255,255,0.82); }
.lifakc .muy8dg a:hover, .lifakc .sj5d a:hover,
.lifakc .tbifmcr a:hover, .lifakc .otwmdln a:hover { color: #fff; }
@media (max-width: 640px) {
  .lifakc .asum { background: var(--accent); border-top-color: var(--accent-light); }
  .lifakc .asum li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.u4yv .wrg603 {
  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);
}
.u4yv .i5zj0 {
  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) {
  .u4yv .asum {
    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 */
.erele .msry4 { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.aa9y3au .msry4 { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.lu1ce .msry4 { min-height: 72px; height: auto; }
.nmam35m .msry4 { min-height: 84px; height: auto; }

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

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


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

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.jzhcs5y, .h2bgt {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.f16ypt1 .jzhcs5y,
.f16ypt1 .h2bgt { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.muij19r .jzhcs5y,
.muij19r .h2bgt { 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; }
.yl3m0e .jzhcs5y,
.yl3m0e .h2bgt { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.nbdgpc0 .jzhcs5y,
.nbdgpc0 .h2bgt { 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 */
.yz9vxyzz   .asum a { font-weight: 500; }
.krx8j .asum a { font-weight: 600; }
.xkwb     .asum a { font-weight: 700; }
.d53uei    .asum a { font-weight: 800; letter-spacing: 0.01em; }

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

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .e9gt .iwst70kk,
  .e5lzcird .iwst70kk,
  .jkmorya .iwst70kk,
  .uqzw .iwst70kk,
  .ftkl .iwst70kk {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .e9gt .iwst70kk::before,
  .e5lzcird .iwst70kk::before,
  .jkmorya .iwst70kk::before,
  .uqzw .iwst70kk::before,
  .ftkl .iwst70kk::before { content: ""; display: block; flex-shrink: 0; }

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

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

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

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .en6xz .iwst70kk {
    padding: 5px 10px;
  }
  .en6xz .asum {
    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;
  }
  .en6xz .asum.f850is9 { opacity: 1; pointer-events: auto; }
  .en6xz .asum 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) {
  .zc70     .iwst70kk { border-radius: 0 !important; }
  .zj2d56   .iwst70kk { border-radius: 8px !important; }
  .ktg24b .iwst70kk { border-radius: 50% !important; }
  .orbxj2ti   .iwst70kk { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .h0mqs4 / .izbt604z) */
.dacj    .h0mqs4, .dacj    .izbt604z { color: #f59e0b; }
.dpemq      .h0mqs4 { font-size: 1rem; letter-spacing: 1.5px; }
.dpemq      .izbt604z   { font-size: 1.35rem; }
.o1c1t    .h0mqs4, .o1c1t    .izbt604z { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.knbwg5d     .h0mqs4, .knbwg5d     .izbt604z { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.j6a7 .h0mqs4, .j6a7 .izbt604z { color: var(--accent); letter-spacing: 2px; }
.t60hyp   .h0mqs4, .t60hyp   .izbt604z { color: #e91e63; letter-spacing: 2px; }
.z26sz27  .h0mqs4, .z26sz27  .izbt604z { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.vut0c9     .h0mqs4, .vut0c9     .izbt604z { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ── Byline slots — position control ── */
.nw54q{display:none}
.nw54q:empty,.m453jwla:empty{display:none}
.x0p6q8dc{position:relative;overflow:visible}

/* hero slot — shown for all hero positions */
.egte0963 .hovk,.via9470d .hovk,
.t9bnxdz .hovk,.zyq4hrit .hovk,
.jl0ym .hovk,.wmj39 .hovk{display:block}
.osxzwx .feocbev5{display:block}

/* shared overlay: centered container matching hero-content width (always 1100px) */
.egte0963 .hovk,.via9470d .hovk,
.t9bnxdz .hovk,.zyq4hrit .hovk,
.jl0ym .hovk{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 */
.egte0963 .hovk .m453jwla,.via9470d .hovk .m453jwla,
.t9bnxdz .hovk .m453jwla,.zyq4hrit .hovk .m453jwla,
.jl0ym .hovk .m453jwla{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 */
.egte0963 .c1cxtgj,.via9470d .c1cxtgj,
.t9bnxdz .c1cxtgj,.zyq4hrit .c1cxtgj,
.jl0ym .c1cxtgj{background:transparent!important;border:none!important;padding:0;border-radius:0;color:inherit!important}
/* top positions */
.egte0963 .hovk,.via9470d .hovk{top:12px}
.egte0963 .hovk .m453jwla{margin-right:auto}
.via9470d .hovk .m453jwla{margin-left:auto}
.via9470d .hovk{text-align:right}
/* bottom positions */
.t9bnxdz .hovk,.zyq4hrit .hovk{bottom:12px}
.t9bnxdz .hovk .m453jwla{margin-right:auto}
.zyq4hrit .hovk .m453jwla{margin-left:auto}
.zyq4hrit .hovk{text-align:right}
/* center overlay at bottom of hero */
.jl0ym .hovk{bottom:16px}
.jl0ym .hovk .m453jwla{margin:0 auto}

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

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

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

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

/* cards: mini bordered cards */
.qo64y .c1cxtgj{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}
.qo64y .h77f0::before{content:""}

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

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

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

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

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

/* ── Date background variants ── */
.ndiaz{--date-bg:var(--accent-bg)}
.mv0099ya{--date-bg:var(--accent-bg-light)}
.kflaqy{--date-bg:transparent}

/* ── Date separator variants ── */
.cews7qj9 .h77f0::before{content:""}
.xnazqz6z .h77f0::before{content:"•";opacity:.4}
.xnazqz6z .c1cxtgj + .c1cxtgj::before{content:"•";margin-right:6px;opacity:.4}
.dlbi .h77f0::before{content:"/";opacity:.35}
.dlbi .c1cxtgj + .c1cxtgj::before{content:"/";margin-right:6px;opacity:.35}
.ptx1q .h77f0::before{content:"|";opacity:.3}
.ptx1q .c1cxtgj + .c1cxtgj::before{content:"|";margin-right:6px;opacity:.3}
.qu17 .h77f0::before{content:"—";opacity:.3}
.qu17 .c1cxtgj + .c1cxtgj::before{content:"—";margin-right:6px;opacity:.3}
.qg2xjf4x .h77f0::before{content:"◆";font-size:.5em;opacity:.35}
.qg2xjf4x .c1cxtgj + .c1cxtgj::before{content:"◆";font-size:.5em;margin-right:6px;opacity:.35}
.t4d1h .h77f0::before{content:"·";opacity:.4}
.t4d1h .c1cxtgj + .c1cxtgj::before{content:"·";margin-right:6px;opacity:.4}
.mdvibz6 .h77f0::before{content:"›";opacity:.4}
.mdvibz6 .c1cxtgj + .c1cxtgj::before{content:"›";margin-right:6px;opacity:.4}
.luxpp61 .h77f0::before{content:"→";opacity:.35;font-size:.85em}
.luxpp61 .c1cxtgj + .c1cxtgj::before{content:"→";font-size:.85em;margin-right:6px;opacity:.35}


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

/* author box variants */
.cuyc .fu4j350{background:var(--surface-alt);border-radius:var(--radius, 8px);border:1px solid var(--border)}
.oa2k5 .fu4j350{border-top:3px solid var(--accent);padding-top:18px}
.qbghf .fu4j350{border-left:3px solid var(--accent);border-radius:0}
.rsfps .fu4j350{padding:20px 0}

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

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


/* ── color scheme ── */
:root {
  --accent:          #3d5b84;
  --accent-light:    #6f8db9;
  --accent-pale:     #a5c3f1;
  --grad-start:      #94b2e0;
  --grad-end:        #d4e3ff;
  --bg-page: #d7dae4;
  --bg-surface: #f9f9fe;
  --bg-card: #f2f3fa;
  --bg-card-inner: #ecedf5;
  --bg-raised: #e6e8f0;
  --bg-hover: #dfe2ec;
  --border: #aeb2bb;
  --border-alt: #777b84;
  --border-section: #aeb2bb;
  --text-primary: #2e333a;
  --text-muted: #5b5f68;
  --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: #2f3034;
  --text-sub: #45474b;
  --text-faint: #696a6f;
  --text-dim: #8f9095;
  --text-label: #5d5e63;
  --text-value: #3a3b3f;
  --accent-bg:       #d4e3ff;
  --accent-bg-light: #bcd6ff;
  --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: 60%; }

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

.oxkz .aq2j, .oxkz .jlytj2y { min-height: 320px; }

.ftl8yx .bxvtyec8::after,.ftl8yx .tqavm51::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; }

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

.mslx .c1cxtgj::before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:5px;font-size:1em;opacity:.55}.mslx .c1cxtgj:first-of-type::before{content:"\f06e"}.mslx .c1cxtgj:last-of-type::before{content:"\f4fc"}