/* =========================================================
   Light theme · green accent · border + shadow
   ========================================================= */

:root {
    /* accent */
    --green-50:  #EDF8F1;
    --green-100: #D6EFE0;
    --green-200: #AEDFC2;
    --green-300: #7FCC9F;
    --green-400: #3DB874;
    --green-500: #159D55; /* main accent */
    --green-600: #0F8044;
    --green-700: #0A6234;

    /* neutrals */
    --ink:       #0F1A14;
    --ink-2:     #2E4338;
    --muted:     #6B7F73;
    --bg:        #F4F8F5;
    --surface:   #FFFFFF;
    --surface-2: #FAFCFB;
    --border:    #DCE6DF;
    --border-2:  #C4D5CA;

    /* radii */
    --r-sm: 10px;
    --r:    16px;
    --r-lg: 22px;
    --r-pill: 999px;

    /* border + shadow system */
    --shadow-1: 0 1px 2px rgba(15, 26, 20, .05), 0 10px 22px -14px rgba(15, 26, 20, .20);
    --shadow-2: 0 2px 4px rgba(15, 26, 20, .06), 0 22px 40px -20px rgba(15, 26, 20, .30);
    --shadow-3: 0 3px 6px rgba(15, 26, 20, .07), 0 34px 60px -26px rgba(15, 26, 20, .35);
    --shadow-accent: 0 8px 22px -10px rgba(21, 157, 85, .55);
    --ring: 0 0 0 4px var(--green-100);

    /* layout */
    --container: 1220px;
    --gutter: 20px;
    --header-h: 76px;

    --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-2);
    background: var(--bg);
    background-image:
        radial-gradient(900px 420px at 88% -12%, var(--green-50), transparent 65%),
        radial-gradient(700px 360px at -10% 8%, #EFF5F1, transparent 60%);
    background-repeat: no-repeat;
    overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green-500); }

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .6em;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
    outline: 2px solid var(--green-500);
    outline-offset: 2px;
    border-radius: 6px;
}

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

/* =========================================================
   Buttons
   ========================================================= */

.btn,
.btn--hero {
    --btn-bg: var(--green-500);
    --btn-color: #fff;
    --btn-border: var(--green-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1px solid var(--btn-border);
    border-radius: var(--r-pill);
    background: var(--btn-bg);
    color: var(--btn-color);
    font: inherit;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: var(--shadow-accent);
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.btn:hover,
.btn--hero:hover {
    color: var(--btn-color);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(21, 157, 85, .6);
}

.btn:active,
.btn--hero:active { transform: translateY(0); box-shadow: var(--shadow-1); }

/* outlined / secondary */
.btn--secondary {
    --btn-bg: var(--surface);
    --btn-color: var(--ink);
    --btn-border: var(--border-2);
    box-shadow: var(--shadow-1);
}
.btn--secondary:hover {
    --btn-border: var(--green-300);
    color: var(--green-700);
    box-shadow: var(--shadow-2);
}

/* filled accent for the register CTA */
.btn--register {
    --btn-bg: var(--green-500);
    --btn-color: #fff;
    --btn-border: var(--green-600);
    box-shadow: var(--shadow-accent);
}
.btn--register:hover { color: #fff; }

.btn--login { --btn-bg: var(--surface-2); }

/* hero CTA */
.btn--hero {
    padding: 15px 30px;
    font-size: 17px;
    margin-top: 6px;
    align-self: flex-start;
}
.btn--hero .btn-left,
.btn--hero .btn-right { display: inline-flex; align-items: center; }
.btn--hero .btn-right::before {
    content: "→";
    font-size: 18px;
    line-height: 1;
    transition: transform .2s ease;
}
.btn--hero:hover .btn-right::before { transform: translateX(3px); }
[dir="rtl"] .btn--hero .btn-right::before { content: "←"; }
[dir="rtl"] .btn--hero:hover .btn-right::before { transform: translateX(-3px); }

/* =========================================================
   Header
   ========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 60;
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(15, 26, 20, .02), 0 12px 24px -22px rgba(15, 26, 20, .45);
}

.header > .container {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: var(--header-h);
}

.header__logo { margin-inline-end: auto; }
.header__logo a { display: block; }
.header__logo-img { width: auto; max-height: 40px; }

.header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.header__link {
    position: relative;
    padding: 9px 14px;
    border-radius: var(--r-pill);
    color: var(--ink-2);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.header__link:hover,
.header__link.is-active {
    color: var(--green-700);
    background: var(--green-50);
    border-color: var(--green-100);
    box-shadow: var(--shadow-1);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-inline-start: 8px;
}
.header__actions .btn { padding: 10px 18px; font-size: 15px; }

/* hamburger */
.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow-1);
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.hamburger:hover { border-color: var(--green-300); box-shadow: var(--shadow-2); }
.hamburger:active { transform: scale(.96); }
.hamburger__icon { width: 22px; height: 16px; color: var(--ink); }
.hamburger:hover .hamburger__icon { color: var(--green-600); }

/* =========================================================
   Sidebar (mobile menu) + overlay
   ========================================================= */

.overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(15, 26, 20, .45);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}
.overlay.is-active { opacity: 1; visibility: visible; }

.sidebar {
    position: fixed;
    top: 0;
    inset-inline-end: 0;
    z-index: 80;
    width: min(320px, 86vw);
    height: 100%;
    padding: 24px 20px;
    background: var(--surface);
    border-inline-start: 1px solid var(--border);
    box-shadow: var(--shadow-3);
    transform: translateX(102%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
}
[dir="rtl"] .sidebar { transform: translateX(-102%); }
.sidebar.is-active,
[dir="rtl"] .sidebar.is-active { transform: translateX(0); }

.sidebar__close {
    position: absolute;
    top: 14px;
    inset-inline-end: 14px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    color: var(--ink);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.sidebar__close:hover { color: var(--green-600); border-color: var(--green-300); box-shadow: var(--shadow-2); }

.sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 58px;
}

.sidebar__link {
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface-2);
    color: var(--ink-2);
    font-weight: 600;
    box-shadow: var(--shadow-1);
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.sidebar__link:hover {
    color: var(--green-700);
    background: var(--green-50);
    border-color: var(--green-200);
    transform: translateX(-3px);
}
[dir="rtl"] .sidebar__link:hover { transform: translateX(3px); }

/* =========================================================
   Hero — banner left, H1 + intro right (first screen)
   ========================================================= */

.hero {
    padding: 36px 0 20px;
}

/* no banner image — text takes the full width */
.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

/* banner image uploaded in the admin panel */
.hero__grid--media {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    min-height: min(440px, calc(100vh - var(--header-h) - 70px));
}

/* banner */
.hero__media { position: relative; }
.hero__media::after {
    content: "";
    position: absolute;
    inset: 18px -14px -16px 18px;
    border-radius: var(--r-lg);
    background: var(--green-100);
    opacity: .55;
    z-index: 0;
}
.hero__bg {
    position: relative;
    z-index: 1;
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
    padding: clamp(18px, 3vw, 32px);
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--green-50);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-3);
}

/* scrim — keeps the banner text readable on any image */
.hero__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 26, 20, .8), rgba(15, 26, 20, .25) 58%, transparent);
    pointer-events: none;
}
.hero__bg > * { position: relative; z-index: 1; }
/* no overlay content (e.g. the mobile-only banner) — no scrim */
.hero__bg:not(:has(.hero-text:not(:empty), .btn--hero))::before { content: none; }

/* banner text — shown inside the banner instead of the content column */
.hero-text {
    color: #fff;
    line-height: 1.5;
    text-shadow: 0 1px 10px rgba(15, 26, 20, .55);
    font-weight: 700;
    font-size: 28px;
}
.hero-text:empty { display: none; }
.hero-text p { margin: 0 0 .6em; }
.hero-text p:last-child { margin-bottom: 0; }

/* text column */
.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
}

/* publication date — quiet line at the bottom of the hero */
.hero__subtitle {
    color: #aedfc2;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}
.hero__subtitle p { margin: 0; }

.hero__title {
    margin: 0;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.1;
}

/* --- intro: the first paragraph lifted out of the content --- */
.hero__intro {
    width: 100%;
    padding: 20px 22px;
    border: 1px solid var(--border);
    border-inline-start: 4px solid var(--green-500);
    border-radius: var(--r);
    background: var(--surface);
    box-shadow: var(--shadow-2);
}
.hero__intro:empty { display: none; }

.hero__intro-text { color: var(--ink-2); }
.hero__intro-text p { margin: 0 0 .8em; }
.hero__intro-text p:last-child { margin-bottom: 0; }

/* =========================================================
   Content
   ========================================================= */

.content { padding: 46px 0 60px; }

.content > .container {
    padding-block: 34px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-2);
    max-width: calc(var(--container) - 40px);
    padding-inline: clamp(20px, 4vw, 48px);
}

.content > .container > :first-child { margin-top: 0; }

.content h1 { font-size: clamp(28px, 3.6vw, 42px); }

.content h2 {
    position: relative;
    margin-top: 1.7em;
    padding-inline-start: 16px;
    font-size: clamp(23px, 2.4vw, 30px);
}
.content h2::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: .18em;
    bottom: .18em;
    width: 5px;
    border-radius: var(--r-pill);
    background: var(--green-500);
    box-shadow: var(--shadow-accent);
}

.content h3 { margin-top: 1.5em; font-size: clamp(20px, 2vw, 24px); }
.content h4 { margin-top: 1.4em; font-size: 19px; }

.content ul,
.content ol { margin: 0 0 1.2em; padding-inline-start: 1.3em; }
.content li { margin-bottom: .5em; }
.content ul { list-style: none; padding-inline-start: 0; }
.content ul li {
    position: relative;
    padding-inline-start: 30px;
}
.content ul li::before {
    content: "";
    position: absolute;
    inset-inline-start: 4px;
    top: .62em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 4px var(--green-100);
}
.content ol li::marker { color: var(--green-600); font-weight: 700; }

.content img {
    box-shadow: var(--shadow-2);
    margin: 0 auto 1.4em;
}

.content blockquote {
    margin: 0 0 1.4em;
    padding: 20px 24px;
    border: 1px solid var(--green-100);
    border-inline-start: 4px solid var(--green-500);
    border-radius: var(--r);
    background: var(--green-50);
    color: var(--ink-2);
    box-shadow: var(--shadow-1);
}

.content a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

.lexical-table {
    width: 100%;
    margin: 0 0 1.5em;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    background: #d6eee0;
    transition: background 0.2s, border-color 0.2s;
    box-shadow: var(--shadow-1);
}
.lexical-table th,
.lexical-table td {
    padding: 13px 16px;
    text-align: start;
    border: 1px solid var(--border)!important;
}
.lexical-table thead th {
    background: var(--green-50);
    color: var(--green-700);
    font-weight: 700;
    border-bottom: 1px solid var(--green-200);
}
.lexical-table tbody tr:last-child td { border-bottom: 0; }
.lexical-table tbody tr:nth-child(even) td { background: var(--surface-2); }

.lexical-table { overflow-x: auto; margin: 0 0 1.5em; }
.lexical-table table { margin: 0; }

/* native details as an accordion inside the content */
.content details {
    margin: 0 0 1em;
    padding: 4px 20px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    background: var(--surface);
    box-shadow: var(--shadow-1);
}
.content details[open] { border-color: var(--green-200); box-shadow: var(--shadow-2); }
.content summary { padding: 14px 0; font-weight: 700; color: var(--ink); cursor: pointer; }

/* =========================================================
   Footer
   ========================================================= */

.footer {
    margin-top: auto;
    padding: 46px 0 36px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    box-shadow: 0 -12px 30px -26px rgba(15, 26, 20, .5);
}

.footer > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.footer__link {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    background: var(--surface-2);
    color: var(--ink-2);
    font-size: 15px;
    font-weight: 600;
    box-shadow: var(--shadow-1);
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.footer__link:hover {
    color: var(--green-700);
    background: var(--green-50);
    border-color: var(--green-200);
    box-shadow: var(--shadow-2);
}

.footer__licenses .age-badge {
    display: block;
    width: 44px;
    height: 44px;
    padding: 6px;
    color: #D7262B;
    font-family: var(--font);
    letter-spacing: -.02em;
}

.footer__disclaimer,
.footer__copyright {
    max-width: 880px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}
.footer__disclaimer {
    padding: 16px 20px;
    border: 1px dashed var(--border-2);
    border-radius: var(--r);
    background: var(--surface-2);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {
    .hero__grid { gap: 30px; }
    .header__link { padding: 8px 11px; font-size: 14px; }
}

@media (max-width: 991.98px) {
    /* row 1: logo · burger — row 2: the auth buttons, full width under the bar */
    .header > .container {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 10px 12px;
        min-height: 0;
        padding-block: 10px;
    }
    .header__nav { display: none; }
    .header__logo {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        min-width: 0;
        margin-inline: 0;
    }
    .hamburger {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        display: inline-flex;
        flex: none;
    }
    .header__actions {
        grid-column: 1 / -1;
        grid-row: 2;
        gap: 8px;
        margin-inline-start: 0;
        padding-top: 10px;
        border-top: 1px solid var(--border);
    }
    /* no titles coming from the CMS — drop the row instead of leaving a divider */
    .header__actions:not(:has(.btn)) {
        display: none;
    }
    .header__actions .btn { flex: 1 1 auto; }
    .hero__grid,
    .hero__grid--media {
        grid-template-columns: 1fr;
        gap: 26px;
        min-height: 0;
    }
    .hero__media::after { inset: 14px -10px -12px 14px; }
    .hero__bg { aspect-ratio: 16 / 9; }
    .hero__content { align-items: stretch; }
    .btn--hero { align-self: stretch; }
}

@media (max-width: 767.98px) {
    :root { --header-h: 66px; --gutter: 16px; }
    body { font-size: 15px; }
    .header__actions .btn { padding: 9px 14px; font-size: 14px; white-space: nowrap; }
    .header__logo-img { max-height: 32px; }
    .hero { padding: 24px 0 8px; }
    .hero__intro { padding: 16px 18px; }
    .content { padding: 28px 0 40px; }
    .content > .container { border-radius: var(--r); }
    .footer { padding: 34px 0 28px; }
}

@media (max-width: 420px) {
    .header__actions { gap: 6px; }
    .header__actions .btn { padding: 8px 10px; font-size: 13px; }
    .header__logo-img { max-height: 28px; }
    .hero__title { font-size: 27px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
}

@media print {
    .header, .sidebar, .overlay, .hamburger, .btn, .btn--hero { display: none !important; }
    body { background: #fff; }
    .content > .container { border: 0; box-shadow: none; }
}

#review-block {
    margin: 32px 0;
    border-radius: 14px;
    padding: 20px 16px 16px;
    overflow: hidden;
    background: var(--green-100)!important;
}

#review-block .review-block__row {
    background-color: var(--green-50)!important;
    border: 1px solid var(--border)!important;
}

#review-block .review-block__bonus,
#review-block .review-block__code,
#review-block .review-block__name,
#review-block .review-block__header,
#review-block .review-block__number {
    color: var(--green-700)!important;
}

#review-block .review-block__button {
    background: var(--green-500)!important;
    border-color: var(--green-600)!important;
    border-radius: 25px!important;
    box-shadow: var(--shadow-accent)!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;
}
