/*
Theme Name: Bolivia Apueston
Text Domain: bolivia-apueston
Version: 0.1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  background: #0b1220;
  color: #e5e7eb;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.6;
}

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  background: #0b1220;
  color: #e5e7eb;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1e293b;
  padding-top: 20px;
  padding-bottom: 20px;
}

.header-inner {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  display: block;
  height: 28px;
  width: auto;
}

.brand-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.header-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.header-menu > li {
  position: relative;
  margin: 0;
  padding: 0;
}

.header-menu > li > a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 6px;
  border-radius: 10px;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: #cbd5f5;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.header-menu > li > a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.header-menu > li.menu-item-has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.75;
}

.header-menu > li.menu-item-has-children > a {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.header-menu > li.menu-item-has-children > a:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.header-menu > li.current-menu-item > a,
.header-menu > li.current-menu-ancestor > a {
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: #ffffff;
}

.header-menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 8px;
  border-radius: 14px;
  background: #0b1220;
  border: 1px solid #1e293b;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  display: none;
}

.header-menu .sub-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
  color: #cbd5f5;
  transition: background 150ms ease, color 150ms ease;
  white-space: normal;
}

.header-menu .sub-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.header-menu .sub-menu .current-menu-item > a,
.header-menu .sub-menu .current-menu-ancestor > a {
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: #ffffff;
}

.header-menu > li:hover > .sub-menu,
.header-menu > li:focus-within > .sub-menu {
  display: block;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.burger-lines {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 2px;
  transition: background 180ms ease;
}

.burger-lines::before,
.burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 2px;
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}

.burger-lines::before {
  top: -6px;
}

.burger-lines::after {
  top: 6px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(360px, 92vw);
  background: #0b1220;
  border-left: 1px solid #1e293b;
  transform: translateX(100%);
  transition: transform 220ms ease;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav {
  flex: 1 1 auto;
  overflow: auto;
  padding-right: 4px;
}

.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.mobile-menu > li > a {
  display: flex;
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  font-size: 14px;
}

.mobile-menu .sub-menu {
  list-style: none;
  margin: 6px 0 10px 0;
  padding: 0 0 0 10px;
  display: grid;
  gap: 6px;
}

.mobile-menu .sub-menu a {
  display: flex;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #cbd5f5;
  font-size: 13px;
}

.is-menu-open .mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

.is-menu-open .mobile-panel {
  transform: translateX(0);
}

.is-menu-open .burger-lines {
  background: transparent;
}

.is-menu-open .burger-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.is-menu-open .burger-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .burger {
    display: inline-flex;
    margin-left: auto;
  }
}

html.is-menu-open {
  overflow: hidden;
}

@media (min-width: 1025px) {
  .mobile-panel,
  .mobile-overlay {
    display: none;
  }
}

.header-menu > li {
  position: relative;
}

.header-menu > li > .sub-menu {
  z-index: 999;
}

/* 1) Убираем "дыру" между пунктом и dropdown */
.header-menu .sub-menu {
  top: 100%;
  margin-top: 10px;
}

/* 2) Делаем "hover bridge" — невидимая зона, чтобы курсор не терял hover */
.header-menu > li.menu-item-has-children::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 14px;
}

/* 3) Открываем dropdown не только по hover li, но и по hover самого dropdown */
.header-menu > li:hover > .sub-menu,
.header-menu > li:focus-within > .sub-menu,
.header-menu > li > .sub-menu:hover {
  display: block;
}







.site-footer {
  background: #090e18;
  border-top: 1px solid #1e293b;
  padding: 56px 0 36px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ───────────────── footer top ───────────────── */

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

/* бренд слева */

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 520px;
}

.footer-brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: radial-gradient(
      120% 120% at 30% 20%,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.04)
    );
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.footer-brand-logo .custom-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-logo img {
  max-width: 32px;
  max-height: 32px;
  width: auto;
  height: auto;
}

.footer-brand-fallback {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: #ffffff;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}

/* меню справа */

.footer-nav {
  display: flex;
  justify-content: flex-end;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  text-align: right;
}

.footer-menu a {
  font-size: 13px;
  font-weight: 500;
  color: #cbd5f5;
  transition: color 150ms ease;
}

.footer-menu a:hover {
  color: #ffffff;
}

.footer-menu .current-menu-item > a {
  color: #ffffff;
  font-weight: 700;
}

/* ───────────────── footer info ───────────────── */

.footer-info {
  border-top: 1px solid #1e293b;
  padding-top: 24px;

  display: grid;
  gap: 8px;

  font-size: 13px;
  color: #cbd5f5;
}

.footer-info-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer-info-text a {
  color: #93c5fd;
}

.footer-info-text a:hover {
  color: #bfdbfe;
}

/* ───────────────── footer bottom ───────────────── */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;

  border-top: 1px solid #1e293b;
  padding-top: 20px;
}

.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 32px;
  min-width: 48px;
  padding: 0 12px;

  border-radius: 999px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.4);

  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.footer-copy {
  font-size: 13px;
  color: #94a3b8;
}

/* ───────────────── responsive ───────────────── */

@media (max-width: 1024px) {
  .footer-top {
    flex-direction: column;
    gap: 28px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-menu {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}











.site-main {
  padding-top: 32px;
  padding-bottom: 64px;
}

.page-content {
  padding-top: 8px;
  padding-bottom: 40px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 72px 16px;
  border-bottom: 1px solid #1e293b;
  background: #0b1220;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("/wp-content/uploads/apuestas-en-linea-en-bolivia-seguridad-legalidad-y-mejores-opciones.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 20% 30%, rgba(37, 99, 235, 0.22), transparent 60%),
    linear-gradient(to bottom, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.82));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  width: 100%;
  text-align: left;
}

.hero-title {
  margin: 0 0 12px 0;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.hero-text {
  margin: 0 0 22px 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(229, 231, 235, 0.9);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.post-card {
  border: 1px solid #1e293b;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.post-card-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.post-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.post-card-img--placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(600px 300px at 20% 30%, rgba(37, 99, 235, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.04);
}

.post-card-body {
  padding: 14px 14px 16px 14px;
  display: grid;
  gap: 10px;
}

.post-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(203, 213, 245, 0.9);
}

.post-card-author {
  color: rgba(147, 197, 253, 0.95);
}

.post-card-author:hover {
  color: #bfdbfe;
}

.post-card-dot {
  opacity: 0.7;
}

.post-card-title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  padding-top: 8px;
}

.post-card-title a {
  color: #ffffff;
}

.post-card-title a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.post-card-excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(203, 213, 245, 0.9);
}

.post-card-link {
    position: absolute;
    display: inline-flex;
    justify-self: end;
    font-size: 12px;
    font-weight: 700;
    color: rgb(255 255 255 / 95%);
    background: rgba(37, 99, 235, 0.15);
    text-transform: uppercase;
    padding: 0px 10px;
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.4);
}

.post-card-link:hover {
  color: #bfdbfe;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 460px;
  }

  .hero-title {
    font-size: 36px;
  }

  .posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 56px 16px;
    min-height: 420px;
  }

  .hero-title {
    font-size: 30px;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }
}







  .royal-banner {
    width: 100%;
    margin: 56px auto;
    background: linear-gradient(135deg, #f7f9ff, #eef3ff);
    border-radius: 28px;
    border: 1px solid #dde4ff;
    box-shadow: 0 30px 80px rgba(40, 60, 120, 0.18);
    color: #0b1220;
    overflow: hidden;
  }

  .royal-inner {
    display: grid;
    grid-template-columns: 220px 1fr 320px;
    gap: 26px;
    padding: 34px;
    align-items: center;
  }

  .royal-logo {
    height: 140px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e3e9ff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .royal-logo img {
    width: 70%;
    height: auto;
    object-fit: contain;
  }

  .royal-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .royal-eyebrow {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 900;
    color: #4f6cff;
  }

  .royal-title {
    font-size: 2.2rem;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0b1220;
  }

  .royal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px 18px;
    font-size: 1rem;
    line-height: 1.6;
    color: #334155;
  }

  .royal-grid b {
    color: #0b1220;
    font-weight: 700;
  }

  .royal-cta {
    background: linear-gradient(180deg, #ffffff, #f4f7ff);
    border: 1px solid #dde4ff;
    border-radius: 22px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    box-shadow: 0 20px 50px rgba(60, 90, 200, 0.15);
  }

  .royal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(90deg, #4f6cff, #6fa8ff);
    box-shadow: 0 18px 44px rgba(79,108,255,0.45);
    transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  }

  .royal-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow: 0 26px 70px rgba(79,108,255,0.55);
  }

  @media (max-width: 980px) {
    .royal-inner {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 26px;
    }

    .royal-content {
      align-items: center;
    }

    .royal-grid {
      grid-template-columns: 1fr;
      text-align: left;
    }

    .royal-cta {
      max-width: 440px;
      margin: 0 auto;
    }

    .royal-title {
      font-size: 1.7rem;
    }
  }



  .compare-list {
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: #fff;
  }

  .compare-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px 26px;
    box-shadow: 0 10px 26px rgba(30, 50, 120, 0.08);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: start;
	color: #fff;
  }

  .compare-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .compare-brand {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
  }

  .compare-tag {
    font-size: 0.95rem;
    color: #777e88;
  }

  .compare-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #c0cbd9;
  }

  .compare-right b {
    color: #fff;
    font-weight: 700;
  }

  @media (max-width: 900px) {
    .compare-card {
      grid-template-columns: 1fr;
      text-align: left;
    }
  }







.fx-faq {
padding: 50px;
    background: radial-gradient(900px 450px at 10% 20%, rgba(99, 102, 241, 0.35), transparent 55%), radial-gradient(900px 450px at 90% 10%, rgba(34, 211, 238, 0.25), transparent 55%), radial-gradient(900px 450px at 80% 90%, rgba(244, 114, 182, 0.18), transparent 60%), #070b18;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
}

.fx-faq__header {
  max-width: 760px;
  margin-bottom: 28px;
}

.fx-faq__title {
  margin: 0 0 10px 0;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.fx-faq__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(226,232,240,0.9);
}

.fx-faq__list {
  display: grid;
  gap: 14px;
}

.fx-faq__item {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 14px 50px rgba(0,0,0,0.35);
}

.fx-faq__item[open] {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.09);
}

.fx-faq__summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  cursor: pointer;
  user-select: none;
}

.fx-faq__summary::-webkit-details-marker {
  display: none;
}

.fx-faq__badge {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: rgba(8, 10, 20, 0.95);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  flex: 0 0 auto;
}

.fx-faq__question {
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.25;
  flex: 1 1 auto;
  min-width: 0;
}

.fx-faq__chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(226,232,240,0.9);
  border-bottom: 2px solid rgba(226,232,240,0.9);
  transform: rotate(45deg);
  transition: transform 220ms ease;
  flex: 0 0 auto;
}

.fx-faq__item[open] .fx-faq__chev {
  transform: rotate(-135deg);
}

.fx-faq__panel {
  padding: 0 18px 18px 70px;
  color: rgba(226,232,240,0.92);
  font-size: 14px;
  line-height: 1.75;
}

.fx-faq__panel p {
  margin: 0 0 10px 0;
}

.fx-faq__panel p:last-child {
  margin-bottom: 0;
}

.fx-faq__item--c1 .fx-faq__badge { background: #60a5fa; }
.fx-faq__item--c2 .fx-faq__badge { background: #34d399; }
.fx-faq__item--c3 .fx-faq__badge { background: #fbbf24; }
.fx-faq__item--c4 .fx-faq__badge { background: #a78bfa; }
.fx-faq__item--c5 .fx-faq__badge { background: #fb7185; }
.fx-faq__item--c6 .fx-faq__badge { background: #22d3ee; }
.fx-faq__item--c7 .fx-faq__badge { background: #f472b6; }

@media (max-width: 640px) {
  .fx-faq {
    padding: 72px 0;
  }

  .fx-faq__title {
    font-size: 28px;
  }

  .fx-faq__panel {
    padding-left: 18px;
  }
}

.bet-banners {

}

.bet-banners__container {
  display: grid;
  gap: 18px;
  padding: 0;
}

.bet-banner {
  position: relative;
  border-radius: 22px;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.4);
  overflow: hidden;
}

.bet-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at 10% 20%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}

.bet-banner__content {
  position: relative;
  max-width: 780px;
}

.bet-banner__label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

.bet-banner__title {
  margin: 0 0 10px 0;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.bet-banner__text {
  margin: 0 0 18px 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(226,232,240,0.95);
  padding-top: 25px;
}

.bet-banner__button {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  color: #0b1220;
  background: #facc15;
  box-shadow: 0 10px 30px rgba(250,204,21,0.45);
}

.bet-banner__button:hover {
  transform: translateY(-1px);
}

.bet-banner__button--ghost {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  box-shadow: none;
}

/* Акценты */

.bet-banner--primary {
  background:
    radial-gradient(700px 260px at 80% 10%, rgba(250,204,21,0.25), transparent 60%),
    rgba(255,255,255,0.06);
  border-color: rgba(250,204,21,0.45);
}

.bet-banner--accent-1 {
  border-color: rgba(34,211,238,0.45);
}

.bet-banner--accent-2 {
  border-color: rgba(52,211,153,0.45);
}

.bet-banner--accent-3 {
  border-color: rgba(96,165,250,0.45);
}

.bet-banner--accent-4 {
  border-color: rgba(244,114,182,0.45);
}

/* Адаптив */

@media (max-width: 768px) {
  .bet-banners {
    padding: 72px 0;
  }

  .bet-banner {
    padding: 22px;
  }

  .bet-banner__title {
    font-size: 22px;
  }
}

#special {
	background: radial-gradient(700px 260px at 80% 10%, rgb(21 100 250 / 25%), transparent 60%), rgba(255, 255, 255, 0.06) !important;
    border-color: rgb(255 255 255 / 11%) !important;
}











/* ================= SINGLE POST ================= */

.single-layout {
  max-width: 1000px;
}

/* cover */

.single-cover {
  margin-bottom: 32px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.single-cover-img {
  width: 100%;
  height: auto;
  display: block;
}

/* header */

.single-header {
  margin-bottom: 32px;
}

.single-title {
  margin: 0 0 14px 0;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.single-meta {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
}

.single-meta-author {
  color: #93c5fd;
  font-weight: 600;
}

.single-meta-author:hover {
  color: #bfdbfe;
}

/* content */

.single-content {
  font-size: 16px;
  line-height: 1.85;
  color: #e5e7eb;
}

.single-content p {
  margin: 0 0 22px 0;
}

.single-content h2 {
  margin: 48px 0 16px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.single-content h3 {
  margin: 32px 0 12px;
  font-size: 22px;
  font-weight: 700;
}

.single-content ul,
.single-content ol {
  margin-bottom: 22px;
  padding-left: 22px;
}

.single-content li {
  margin-bottom: 8px;
}

.single-content a {
  color: #93c5fd;
  text-decoration: underline;
}

.single-content blockquote {
  margin: 32px 0;
  padding-left: 20px;
  border-left: 3px solid #2563eb;
  color: #cbd5f5;
}

/* author box */

.author-box {
  margin-top: 72px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 22px;
}

.author-box-avatar img {
  border-radius: 999px;
}

.author-box-content {
  display: flex;
  flex-direction: column;
}

.author-box-name {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.author-box-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
  margin-bottom: 14px;
}

.author-box-button {
  align-self: flex-start;
  height: 40px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.author-box-button:hover {
  background: rgba(255,255,255,0.12);
}

/* related */

.related-posts {
  margin-top: 80px;
}

.related-title {
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* responsive */

@media (max-width: 768px) {
  .single-title {
    font-size: 28px;
  }

  .author-box {
    flex-direction: column;
  }
}

















.pagination {
  margin-top: 48px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #cbd5f5;
}

.pagination a:hover {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.pagination .current {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}
















  :root {
    --ui-bg: #0a0e12;
    --ui-elev: #111823;
    --ui-ink: #e8eef7;
    --ui-ink-2: #93a0b3;
    --ui-ac-1: #22d3ee;
    --ui-ac-2: #60a5fa;
    --ui-chip: #1b2330;
    --ui-ok: #22c55e;
    --ui-bad: #ef4444;
    --ui-warn: #f59e0b;
    --ui-br: 18px;
    --ui-gap: clamp(12px, 2.2vw, 22px);
    --ui-shadow: 0 0.6px 0.6px rgba(0, 0, 0, 0.18),
      0 14px 36px rgba(0, 0, 0, 0.35);
  }
  @media (prefers-color-scheme: light) {
    :root {
      --ui-bg: #f7fafc;
      --ui-elev: #ffffff;
      --ui-ink: #0f172a;
      --ui-ink-2: #475569;
      --ui-chip: #eef2f7;
      --ui-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), 0 18px 36px rgba(0, 0, 0, 0.08);
    }
  }

  /* ===== Тексты ===== */
  .t-Eyebrow__a11yCaps {
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ui-ink-2);
    font-size: 0.78rem;
  }
  .t-TitleDisplay__K4 {
    margin: 0.2em 0 0.35em;
    font-size: clamp(1.5rem, 2.2vw + 0.8rem, 2.4rem);
    line-height: 1.12;
  }
  .t-Lead__mutedL {
    color: var(--ui-ink-2);
    max-width: 70ch;
  }

  /* ===== СЕТКА → FLEX с растяжением последней строки ===== */
  .g-AutofitGrid__12--d\:auto {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ui-gap);
  }
  /* Элементы растягиваются — последняя строка без пустот */
  .g-AutofitGrid__12--d\:auto > * {
    flex: 1 1 clamp(260px, 100% - var(--ui-gap), 480px);
    min-width: clamp(260px, 100% - var(--ui-gap), 480px);
  }
  @media (min-width: 640px) {
    .g-AutofitGrid__12--d\:auto > * {
      flex-basis: calc(50% - var(--ui-gap));
      min-width: calc(50% - var(--ui-gap));
    }
  }
  @media (min-width: 980px) {
    .g-AutofitGrid__12--d\:auto > * {
      min-width: calc(33.333% - var(--ui-gap));
    }
  }

  /* ===== Карточка ===== */
  .ftbCard__Club--elevXL {
    position: relative;
    background: linear-gradient(
      180deg,
      color-mix(in oklab, var(--ui-elev), #fff 2%),
      var(--ui-elev)
    );
    border: 1px solid color-mix(in oklab, var(--ui-elev), #fff 10%);
    border-radius: var(--ui-br);
    box-shadow: var(--ui-shadow);
    overflow: hidden;
    isolation: isolate;
    container-type: inline-size;
  }
  .ftbCard__pad--M { padding: 18px; }

  /* Шапка карточки */
  .ftbCard__headerGrid--crestTitle {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 12px;
    align-items: center;
  }

  .l-ViewportWrap__x5R .ftbCard__crestBx--gRad {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* ===== ЛОГОТИП В <figure> (img как основа, текст — fallback) ===== */
  .ftbCard__crestBx--gRad {
    width: 88px;
    aspect-ratio: 1/1;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: conic-gradient(
      from 180deg,
      color-mix(in oklab, var(--ui-ac-1), #000 34%),
      color-mix(in oklab, var(--ui-ac-2), #000 38%)
    );
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.08);
    overflow: hidden;
  }
  .ftbCard__crestBx--gRad > img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
  }
  .ftbCard__crestBx--gRad:has(img[src]:not([src=""])) .u-crestText { display: none; }
  .u-crestText {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 0.04em;
  }

  /* Заголовки */
  .ftbCard__titleWrap--tight h3 { margin: 0; font-size: 1.6rem; }
  .ftbCard__titleWrap--tight .ftbCard__subtitle--muted { color: var(--ui-ink-2); font-size: 0.92rem; }

  /* Бейдж */
  .ftbCard__badge--rank {
    position: absolute;
    inset: auto 12px 12px auto;
    padding: 0.42rem 0.66rem;
    font-weight: 900;
    font-size: 1.3rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ui-ac-1), var(--ui-ac-2));
    color: #07131a;
    letter-spacing: 0.02em;
  }

  /* Чипы */
  .ftbCard__metaList--chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 0;
  }
  .ftbChip__kv--soft {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--ui-chip);
    border: 1px solid color-mix(in oklab, var(--ui-chip), #000 12%);
    color: var(--ui-ink-2);
    font-weight: 650;
	font-size: 12px;
  }

  /* Факты */
  .ftbCard__inlineFacts--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
  }
  .ftbFact__item--kv strong { display: block; font-size: 0.82rem; color: var(--ui-ink-2); }
  .ftbFact__item--kv span { font-weight: 700; }

  /* Дивидер */
  .ftbCard__divider--hair {
    height: 1px;
    background: color-mix(in oklab, var(--ui-elev), #fff 14%);
    margin: 12px 0;
  }

  /* Форма (W/D/L) */
  .ftbCard__formWrap--row { display: flex; gap: 8px; flex-wrap: wrap; }
  .ftbForm__ball--W, .ftbForm__ball--D, .ftbForm__ball--L {
    width: 28px; aspect-ratio: 1/1; border-radius: 50%;
    display: grid; place-items: center; font-weight: 900;
  }
  .ftbForm__ball--W { background: color-mix(in oklab, var(--ui-ok), #000 0%); }
  .ftbForm__ball--D { background: color-mix(in oklab, var(--ui-warn), #000 6%); }
  .ftbForm__ball--L { background: color-mix(in oklab, var(--ui-bad), #000 0%); }

  /* Footer CTA */
  .ftbCard__footerGrid--cta {
    display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 50px;
  }
  .ftbCTA__btn--ghost {
    appearance: none; -webkit-appearance: none; border: none; cursor: pointer; background: transparent; color: var(--ui-ink);
    border-radius: 999px; padding: 10px 14px; font-weight: 800;
    border: 1px solid color-mix(in oklab, var(--ui-elev), #fff 16%);
  }
  .ftbCTA__btn--ghost:focus { outline: 2px solid color-mix(in oklab, var(--ui-ac-2), transparent 60%); outline-offset: 2px; }

  /* Контейнерные адаптации */
  @container (max-width: 360px) {
    .ftbCard__headerGrid--crestTitle { grid-template-columns: 64px 1fr; }
    .ftbCard__crestBx--gRad { width: 64px; }
  }


.compare-logo {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background-size: cover;
background: linear-gradient(145deg, #cacaca, #f0f0f0);
box-shadow: 20px 20px 60px #bebebe42, -20px -20px 60px #ffffff08;
}

.compare-flex {
	display: flex;
    gap: 15px;
    flex-direction: row;
    align-items: center;
}













.comments {
  margin-top: 80px;
}

.comments-title {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.comment-note {
  margin: 0 0 16px;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
}

.comment-required {
  color: #60a5fa;
  font-weight: 800;
}

.comment-list {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
}

.comment {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.comment-body {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 16px;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
}

.comment-author img {
  border-radius: 999px;
}

.comment-meta {
  font-size: 12px;
  color: #94a3b8;
  margin: 6px 0 10px;
}

.comment-content {
  font-size: 14px;
  line-height: 1.6;
  color: #e5e7eb;
}

.comment-reply-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  color: #93c5fd;
}

.comment-reply-link:hover {
  color: #bfdbfe;
}

.comment-form-custom {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.comment-field--full {
  grid-column: 1 / -1;
}

.comment-field label {
  display: block;
  font-size: 12px;
  color: #cbd5f5;
  font-weight: 700;
  margin-bottom: 8px;
}

.comment-field input,
.comment-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 14px;
}

.comment-field textarea {
  resize: vertical;
  min-height: 120px;
}

.comment-consent {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  font-size: 13px;
  color: #94a3b8;
}

.comment-consent input {
  transform: translateY(1px);
  margin-right: 8px;
}

.comment-submit {
  grid-column: 1 / -1;
  justify-self: start;
  height: 42px;
  padding: 0 18px;
  border-radius: 14px;
  background: #2563eb;
  border: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.comment-submit:hover {
  background: #1d4ed8;
}

.comment-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .comment {
    flex-direction: column;
  }
  .comment-form-custom {
    grid-template-columns: 1fr;
  }
}

.comment-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.comment-modal.is-open {
  display: block;
}

.comment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(10px);
}

.comment-modal-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100% - 32px));
  border-radius: 20px;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 28px 60px rgba(0,0,0,0.55);
  padding: 16px;
}

.comment-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.comment-modal-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #ffffff;
  font-weight: 900;
}

.comment-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
}

.comment-modal-content {
  padding: 14px 4px 6px;
}

.comment-modal-title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.comment-modal-text {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.55;
}

.comment-modal-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 12px;
}

.comment-modal-btn {
  height: 40px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.35);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

html.is-modal-open,
html.is-modal-open body {
  overflow: hidden;
}



.site-search-fab {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(37, 99, 235, 0.42);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10020;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.site-search-fab:hover {
  transform: translateY(-50%) scale(1.04);
  background: rgba(37, 99, 235, 0.26);
  border-color: rgba(37, 99, 235, 0.6);
}

.site-search-fab:active {
  transform: translateY(-50%) scale(0.98);
}

.site-search-fab-ic {
  opacity: 0.95;
}

.site-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(0px);
  opacity: 0;
  pointer-events: none;
  z-index: 10010;
  transition: opacity 220ms ease, backdrop-filter 220ms ease;
}

.site-search-panel {
  position: fixed;
  top: 50%;
  right: 18px;
  transform: translate(120%, -50%);
  width: min(420px, calc(100% - 36px));
  border-radius: 20px;
  background: rgba(11, 18, 32, 0.92);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 28px 70px rgba(0,0,0,0.55);
  z-index: 10030;
  padding: 16px;
  transition: transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.site-search-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.site-search-panel-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 16px;
  color: #ffffff;
}

.site-search-close {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
}

.site-search-form {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.site-search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.site-search-input {
  width: 100%;
  height: 46px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  padding: 0 14px;
  font-size: 14px;
}

.site-search-submit {
  height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.45);
  background: rgba(37, 99, 235, 0.18);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.site-search-submit:hover {
  background: rgba(37, 99, 235, 0.28);
}

.site-search-hint {
  font-size: 12px;
  color: #94a3b8;
}

.site-search-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.site-search-link {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: #cbd5f5;
  font-size: 13px;
  font-weight: 700;
}

.site-search-link:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.18);
}

html.is-search-open .site-search-overlay {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

html.is-search-open .site-search-panel {
  transform: translate(0, -50%);
}

html.is-search-open,
html.is-search-open body {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .site-search-fab {
    right: 14px;
  }
  .site-search-panel {
    right: 14px;
  }
}

@media (max-width: 640px) {
  .site-search-row {
    grid-template-columns: 1fr;
  }
  .site-search-submit {
    width: 100%;
  }
}







/* ================= AUTHOR CARD ================= */

.author-card {
  margin: 0 0 28px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.author-card-top {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.author-card-avatar img {
  width: 112px;
  height: 112px;
  border-radius: 999px;
  display: block;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.author-card-main {
  flex: 1;
  min-width: 0;
}

.author-card-name {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.author-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 12px;
}

.author-card-link {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(37,99,235,0.14);
  border: 1px solid rgba(37,99,235,0.35);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.author-card-link:hover {
  background: rgba(37,99,235,0.22);
  border-color: rgba(37,99,235,0.50);
}

.author-card-dot {
  opacity: 0.65;
}

.author-card-count {
  font-weight: 700;
}

.author-card-bio {
  font-size: 14px;
  line-height: 1.7;
  color: #cbd5f5;
  max-width: 75ch;
}

/* WYSIWYG from ACF */

.author-card-wysiwyg {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #e5e7eb;
  font-size: 15px;
  line-height: 1.85;
}

.author-card-wysiwyg p {
  margin: 0 0 16px;
}

.author-card-wysiwyg h2 {
  margin: 22px 0 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.author-card-wysiwyg h3 {
  margin: 18px 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.author-card-wysiwyg a {
  color: #93c5fd;
  text-decoration: underline;
}

.author-card-wysiwyg ul,
.author-card-wysiwyg ol {
  padding-left: 20px;
  margin: 0 0 16px;
}

.author-card-wysiwyg li {
  margin-bottom: 8px;
}

.author-card-wysiwyg blockquote {
  margin: 18px 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #cbd5f5;
}

/* Responsive */

@media (max-width: 768px) {
  .author-card {
    padding: 18px;
  }

  .author-card-top {
    flex-direction: column;
  }

  .author-card-avatar img {
    width: 96px;
    height: 96px;
  }

  .author-card-name {
    font-size: 24px;
  }
}











/* ================= TYPOGRAPHY RESET ================= */

:root {
  --text-main: #e5e7eb;
  --text-muted: #94a3b8;
  --text-strong: #ffffff;

  --heading-letter-spacing: -0.03em;
  --heading-line-height: 1.15;
  --body-line-height: 1.75;
}

/* Base */

body {
  color: var(--text-main);
  font-size: 16px;
  line-height: var(--body-line-height);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ================= HEADINGS ================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-strong);
  font-weight: 900;
  letter-spacing: var(--heading-letter-spacing);
  line-height: var(--heading-line-height);
  margin: 0 0 0.6em;
}

/* Individual sizes */

h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

h5 {
  font-size: 1.05rem;
}

h6 {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ================= PARAGRAPHS ================= */

p {
  margin: 0 0 1.2em;
  color: var(--text-main);
  font-size: 1rem;
}

/* Slightly smaller text blocks (optional utility) */
.small,
.text-small {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ================= LINKS ================= */

a {
  color: #93c5fd;
  text-decoration: none;
}

a:hover {
  color: #bfdbfe;
}

/* ================= LISTS ================= */

ul,
ol {
  margin: 0 0 1.2em;
  padding-left: 1.25em;
}

li {
  margin-bottom: 0.5em;
}

/* ================= STRONG / EM ================= */

strong {
  font-weight: 800;
  color: var(--text-strong);
}

em {
  font-style: italic;
}

/* ================= BLOCKQUOTE ================= */

blockquote {
  margin: 1.8em 0;
  padding: 1em 1.2em;
  border-left: 4px solid rgba(37, 99, 235, 0.6);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  color: #cbd5f5;
}

blockquote p:last-child {
  margin-bottom: 0;
}

/* ================= HR ================= */

hr {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 2.5em 0;
}

/* ================= FIGURE / IMG ================= */

figure {
  margin: 2em 0;
}

figcaption {
  margin-top: 0.5em;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ================= RESPONSIVE TWEAK ================= */

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}











.bet-banner__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bet-banner__head img {
  display: block;
  max-width: 65px;
  height: auto;
}

.bet-banner__title {
  margin: 0;
}

.photo-x img {
	border-radius: 22px;
}

.link-archive-x {
    color: #ffffff;
    background: #dc3e3e;
    padding: 0px 10px;
    border-radius: 15px;
}







@media (max-width: 1024px) {
    .hero-content .badge {
        font-size: 10px;
    }
}