/* ===== Fonts ===== */
/* Шрифт Beau подключается из CDN (fonts.cdnfonts.com) через <link> в template.php.
   CDN отдаёт одно начертание (weight 400), поэтому Medium/Bold синтезируются
   браузером из него через font-weight. Локальные @font-face с unicode-range убраны,
   чтобы не ограничивать набор символов. */

/* ===== Variables & Reset ===== */
:root {
  --accent: #00b4d8;
  --accent-dark: #0077b6;
  --dark: #023047;
  --text: #4DA9EA;
  --muted: #4DA9EA;
  --bg: #082B43;
  --bg-soft: #f4f9fb;
  --radius: 14px;
  --max: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Beau", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: #D0FDFF;
  line-height: 1.6;
  background: var(--bg);
}

/* Заголовки — Bold */
.hero__title,
.section__title,
.card__title,
.footer__col h4,
h1, h2, h3, h4, h5, h6 {
  font-family: "Beau", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  color: #F3DEC1;
  line-height: 1.4;
  padding: 10px 0;
}

p {
  padding: 0 0 10px 0;
}

/* Списки (в т.ч. из контента) */
ul, ol {
  margin: 0 0 16px;
  padding-left: 1.5em;      /* отступ под маркеры */
}
ul { list-style: disc; }
ol { list-style: decimal; }
ul ul, ol ol, ul ol, ol ul {
  margin-bottom: 0;         /* вложенные списки без лишнего отступа снизу */
}
li {
  padding-left: 6px;        /* отступ текста от маркера */
  margin-bottom: 8px;
  line-height: 1.6;
}
li::marker {
  color: #F3DEC1;           /* цвет маркера/номера */
  font-weight: 700;
}

/* Кнопки — Medium */
.btn,
.header__cta {
  font-family: "Beau", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
}

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform .15s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--accent-dark); border: 2px solid var(--accent); }
.btn--ghost:hover { background: var(--accent); color: #fff; }
.btn--sm { padding: 9px 18px; font-size: .9rem; }

/* Кнопка hero: заливка + декоративная рамка из 3 частей */
.btn--hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 48px;
  border-radius: 30px;
  overflow: hidden;               /* обрезаем всё, что выходит за пределы кнопки */
  color: #fff;
  background: url('../img/hero-btn-bg.png') center / 90% 90% no-repeat;
}
/* рамка: завитки по краям + линии сверху/снизу (Centre) */
.btn--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url('../img/left-hero.png')  left center  / auto 100% no-repeat,
    url('../img/hero-right.png') right center / auto 100% no-repeat,
    url('../img/Centre.png')     center       / 100% 100% no-repeat;
}


/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, #01173C 0%, #082B43 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo { display: inline-flex; align-items: center; font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.logo img {
  display: block;
  height: auto;
  width: 100%;
  max-width: 80px;
}
.logo span { color: var(--accent); }
.logo--light { color: #fff; }

 /* Кнопка хедера с градиентным бордером */
.header__cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px 5px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  color: #fff;
  /* заливка (padding-box) + градиентный бордер (border-box) */
  background:
    radial-gradient(69.4% 100% at 50.35% 0%, #034087 56.5%, #13B2C1 100%) padding-box,
    linear-gradient(356.08deg, #FFFEEB -203.65%, #824C21 -153.81%, #F9DC82 -141.25%, #9E6E31 -126.84%, #F9DC82 -63.76%, #F9DC82 -43.03%, #EDC433 -22.81%, #F9DC82 6.93%, #9E6E31 22.92%, #F9DC82 42.45%, #F9DC82 103.1%, #F9DC82 126.1%, #E3D27F 144.81%) border-box;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__cta:hover {
  background:
    radial-gradient(69.4% 100% at 50.35% 0%, #034087 56.5%, #13B2C1 100%) padding-box,
    linear-gradient(356.08deg, #FFFEEB -203.65%, #824C21 -153.81%, #F9DC82 -141.25%, #9E6E31 -126.84%, #F9DC82 -63.76%, #F9DC82 -43.03%, #EDC433 -22.81%, #F9DC82 6.93%, #9E6E31 22.92%, #F9DC82 42.45%, #F9DC82 103.1%, #F9DC82 126.1%, #E3D27F 144.81%) border-box;
}

.nav { display: flex; gap: 28px; }
.nav__link { color: #cfe0ec; font-weight: 500; transition: color .2s; }
.nav__link:hover { color: var(--accent); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

/* ===== Hero ===== */
.hero {
  /* фон-картинку задаёт .hero__bg (инлайн-стиль в template.php, динамический баннер);
     здесь только позиционирование/масштаб, чтобы инлайн background-image не перебивался */
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  margin-top: -20px;
}
/* контент над мобильным градиент-оверлеем */
.hero__inner { position: relative; z-index: 1; }
.hero__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}
.hero__content { flex: 0 0 60%; max-width: 60%; }
.hero__title { font-family: "Beau", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; color: #F3DEC1; text-shadow: 2px 1px 1px black; }
.hero__subtitle { font-size: 1.1rem; color: #F3DEC1; max-width: 520px;text-shadow: 2px 1px 1px black; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__visual { flex: 1; display: flex; justify-content: center; }
.hero__blob {
  width: 320px; height: 320px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 42% 58% 63% 37% / 42% 45% 55% 58%;
  animation: morph 8s ease-in-out infinite;
  box-shadow: 0 30px 60px rgba(0, 119, 182, .3);
}
@keyframes morph {
  0%, 100% { border-radius: 42% 58% 63% 37% / 42% 45% 55% 58%; }
  50% { border-radius: 58% 42% 37% 63% / 55% 58% 42% 45%; }
}

/* ===== Sections ===== */
.section__title { font-family: "Beau", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.4rem); text-align: center; color: #F3DEC1; }
.section__title--left { text-align: left; }
.section__subtitle { text-align: center; color: var(--muted); margin-top: 8px; margin-bottom: 48px; }

/* ===== Features ===== */
.features { padding: 20px 0; background: #023047;}

/* Ссылки внутри контента / перелинковка (page.content).
   Глобальный a{color:inherit;text-decoration:none} убирает вид ссылок,
   поэтому возвращаем яркий цвет, подчёркивание и hover. */
.features a:not(.btn):not(.header__cta) {
  color: #F9DC82;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(249, 220, 130, .5);
  font-weight: 500;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.features a:not(.btn):not(.header__cta):hover {
  color: #FFF3D0;
  text-decoration-color: #FFF3D0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: var(--bg-soft);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid #e7eef2;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 30px rgba(2, 48, 71, .08); }
.card__icon { font-size: 2rem; margin-bottom: 14px; }
.card__title { font-family: "Beau", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; font-weight: 700; color: #F3DEC1; margin-bottom: 8px; }
.card__text { color: var(--muted); }

/* ===== About ===== */
.about { padding: 90px 0; background: var(--bg-soft); }
.about__inner { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
.about__text { flex: 1 1 400px; }
.about__text p { color: var(--muted); margin-top: 16px; }
.about__stats { flex: 1 1 260px; display: flex; gap: 20px; flex-wrap: wrap; }
.stat {
  flex: 1 1 100px;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid #e7eef2;
}
.stat__num { display: block; font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.stat__label { color: var(--muted); font-size: .9rem; }

/* ===== Footer ===== */
.footer {background: linear-gradient(180deg, #01173C 0%, #082B43 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);; padding-top: 56px; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer__desc { color: #8fb4c8; margin-top: 12px; max-width: 280px; }
.footer__col h4 { color: #fff; margin-bottom: 14px; }
.footer__col a { display: block; color: #8fb4c8; margin-bottom: 8px; transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0; font-size: .85rem; color: #7ea3ba; }

/* ===== Images (адаптив) ===== */

img {
  max-width: 100%;
  max-height: 670px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  padding: 20px 0;
}

/* ===== Tables (lexical) ===== */
.lexical-table-container {
  width: 100%;
  margin: 24px 0;
  overflow-x: auto;                 /* горизонтальный скролл на узких экранах */
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
}
.lexical-table {
  width: 100%;
  min-width: 480px;                 /* чтобы контент не сжимался в кашу */
  border-collapse: collapse;
  color: #D0FDFF;
  background: rgba(255, 255, 255, .02);
}
.lexical-table-row:nth-child(even) .lexical-table-cell {
  background: rgba(255, 255, 255, .04);
}
.lexical-table-cell {
  padding: 12px 16px !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  text-align: left;
  vertical-align: top;
}
/* первая колонка — как заголовок строки */
.lexical-table-cell:first-child {
  font-family: "Beau", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  color: #F3DEC1;
  background: rgba(255, 255, 255, .05);
  white-space: nowrap;
}
.lexical-table-cell p { margin: 0; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: #082B43;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav.open { max-height: 320px; }
  .header__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav__link { padding: 14px 20px; border-top: 1px solid rgba(255, 255, 255, .06); }
  .burger { display: flex; }
  /* бургер превращается в крестик, когда меню открыто */
  .header__inner:has(.nav.open) .burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header__inner:has(.nav.open) .burger span:nth-child(2) { opacity: 0; }
  .header__inner:has(.nav.open) .burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  /* кнопки Play/Register фиксируются внизу экрана */
  .header__actions {
    position: fixed;
    left: 0; right: 0;
    top: 65px;
    z-index: -1;
    display: flex;
    gap: 10px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, #01173C 0%, #082B43 100%);
    border-top: 1px solid rgba(255, 255, 255, .1);
  }
  .header__actions .header__cta {
    flex: 1;
    justify-content: center;
  }
  /* чтобы фиксированная панель не перекрывала контент/футер */
  body { padding-bottom: 72px; }
  .hero__inner { flex-direction: column-reverse; padding: 0 20px; text-align: center; }
  .hero {
    margin-top: 0;
    align-items: flex-end;
    /* картинку (mobile.webp / page.bannerMobile) задаёт .hero__bg инлайн-стилем */
  }
  /* градиент снизу для читаемости текста поверх картинки — оверлеем,
     чтобы не затирать background-image из .hero__bg */
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, #01173C 0%, rgba(1, 23, 60, .85) 22%, rgba(1, 23, 60, 0) 55%);
  }
  .hero__content { flex-basis: auto; max-width: 100%; }
  .hero__subtitle { margin: 0; }
  .hero__actions { justify-content: center; }
  .hero__blob { width: 220px; height: 220px; }
  .footer__inner { grid-template-columns: 1fr; }
  .lexical-table { min-width: 420px; }
  .lexical-table-cell { padding: 10px 12px !important; font-size: .9rem; }
  .lexical-table-cell:first-child { white-space: normal; }
}
ol, ul {
  padding: 20px 25px 20px 30px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #fff;
  background: radial-gradient(69.4% 100% at 50.35% 0%, #003752 56.5%, #0f2b46 100%) padding-box, linear-gradient(356.08deg, #FFFEEB -203.65%, #824C21 -153.81%, #F9DC82 -141.25%, #9E6E31 -126.84%, #F9DC82 -63.76%, #F9DC82 -43.03%, #EDC433 -22.81%, #F9DC82 6.93%, #9E6E31 22.92%, #F9DC82 42.45%, #F9DC82 103.1%, #F9DC82 126.1%, #E3D27F 144.81%) border-box;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.faq-block__item {
  border-radius: 8px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.02)!important;
  border: 1px solid transparent!important;
  color: #fff;
  background: radial-gradient(69.4% 100% at 50.35% 0%, #003752 56.5%, #0f2b46 100%) padding-box, linear-gradient(356.08deg, #FFFEEB -203.65%, #824C21 -153.81%, #F9DC82 -141.25%, #9E6E31 -126.84%, #F9DC82 -63.76%, #F9DC82 -43.03%, #EDC433 -22.81%, #F9DC82 6.93%, #9E6E31 22.92%, #F9DC82 42.45%, #F9DC82 103.1%, #F9DC82 126.1%, #E3D27F 144.81%) border-box!important;
}
.lexical-table-cell p {
  padding: 0!important;
}

/* --- Slots Block Styles --- */
.slots-wrapper {
  margin: 30px 0;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  align-items: start;
}
.slot-card {
  text-align: center;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 1;
}
.slot-image {
  border-radius: 6px;
  overflow: hidden;
}
.slot-image img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.slot-name {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: calc(100% - 16px);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  background: #450C88;
  color: #FFFFFF;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
}
.slot-card:hover .slot-name{
  opacity: 1;
}
.slot-card:hover::before {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
}
@media (max-width: 600px) {
  .slots-grid {
    gap: 10px;
  }
  .slot-name {
    font-size: 12px;
  }
}


/* --- Review Block Styles --- */
#review-block {
  margin: 32px 0;
  background: #151b3a;
  border-radius: 14px;
  padding: 20px 16px 16px;
  overflow: hidden;
}
#review-block .review-block__header {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 16px;
  padding: 0 24px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}
.review-block__header span:first-child{
  padding-left: 32px;
}
.review-block__header span:nth-child(2){
  text-align: center;
}
#review-block .review-block__row {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
#review-block .review-block__row:last-child{
  margin: 0;
}
#review-block .review-block__row:hover {
  background: rgba(255, 255, 255, 0.05);
}
#review-block .review-block__row--highlighted {
  background: rgba(80, 100, 200, 0.18);
  border-color: rgba(100, 120, 220, 0.25);
}
#review-block .review-block__row--highlighted:hover {
  background: rgba(80, 100, 200, 0.24);
}
#review-block .review-block__label {
  position: absolute;
  top: -1px;
  left: 0;
  width: 120px;
  transform: rotate(-46deg) translate(-36px, -11px);
  height: 20px;
  padding: 0;
  font-size: 7px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 20px;
  color: #fff;
}
#review-block .review-block__casino {
  display: flex;
  align-items: center;
  gap: 12px;
}
#review-block .review-block__number {
  font-weight: 700;
  font-size: 15px;
  min-width: 20px;
  color: rgba(255, 255, 255, 0.7);
}
#review-block .review-block__logo-wrapper{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 90px;
}
#review-block .review-block__logo {
  object-fit: contain;
  box-shadow: none;
  max-height: 90px;
  margin: 0;
}
#review-block .review-block__name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  flex-grow: 1;
}
#review-block .review-block__bonus {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
#review-block .review-block__bonus:has(span:nth-child(2)) span:first-child{
  color: #FFDA03;
}
#review-block .review-block__bonus strong,
#review-block .review-block__bonus b {
  color: #fff;
  font-weight: 700;
}
#review-block .review-block__code {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
#review-block .review-block__action {
  display: flex;
  justify-content: flex-end;
}
#review-block .review-block__button {
  display: inline-block;
  padding: 12px 32px;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}
#review-block .review-block__button:hover {
  background: #d81b60;
  transform: translateY(-1px);
}
@media (max-width: 750px) and (min-width: 601px) {
  #review-block .review-block__header {
    grid-template-columns: 1fr 1fr;
  }
  #review-block .review-block__row {
    grid-template-columns: 1fr 1fr;
  }
  .review-block__action {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  #review-block .review-block__button {
    width: 100%;
  }
}
@media (max-width: 600px) {
  #review-block {
    padding: 8px;
  }
  #review-block .review-block__header {
    display: none;
  }
  #review-block .review-block__row {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 20px 16px;
  }
  #review-block .review-block__logo-wrapper {
    height: auto;
  }
  #review-block .review-block__casino {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
  #review-block .review-block__name {
    font-size: 15px;
  }
  #review-block .review-block__bonus {
    font-size: 15px;
  }
  #review-block .review-block__action {
    justify-content: center;
  }
  #review-block .review-block__button {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
  }
}


/* --- Author block --- */
.content .author-block {
  margin: 24px 0;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.02);
}
.content .author-block__inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.content .author-block--no-bio .author-block__inner {
  align-items: center;
}
.content .author-block--no-bio .author-block__name {
  margin-bottom: 0;
}
.content .author-block__photo {
  flex-shrink: 0;
  align-self: flex-start;
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  max-width: 72px;
  max-height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
}
.content .author-block--no-bio .author-block__photo {
  align-self: center;
}
.content .author-block__photo img {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  padding: 0;
  aspect-ratio: 1;
}
.content .author-block__body {
  min-width: 0;
  flex: 1;
}
.content .author-block__name {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 6px;
}
.content .author-block__bio {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.85;
}


/* --- FAQ block (no font-family; inherits theme) --- */
.faq-block {
  margin: 28px 0;
  max-width: 100%;
}
.faq-block__item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.02);
}
.faq-block__item:last-child {
  margin-bottom: 0;
}
.faq-block__summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 14px;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  padding-right: 32px;
}
.faq-block__summary::-webkit-details-marker {
  display: none;
}
.faq-block__summary::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  opacity: 0.55;
}
.faq-block__item[open] .faq-block__summary::after {
  transform: translateY(-25%) rotate(-135deg);
}
.faq-block__summary:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 6px;
}
.faq-block__question {
  all: unset !important;
}
.faq-block__answer {
  padding: 0 14px 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  line-height: 1.55;
}
.faq-block__answer > *:first-child {
  margin-top: 12px;
}


.content .post-date {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.8;
}
.content .post-date__label {
  margin-inline-end: 0.35em;
}
.content .post-date time {
  font-weight: 500;
}
