/* =============================================================== *
 * Spinoko Home Redesign 2026
 *
 * Two sections — hero (dark) + top list (light) — with mobile / desktop
 * layout variants. Mobile-first; desktop styles kick in at min-width
 * 1024px. Scoped under `.pkt-home` so no rule can leak into the rest of
 * the site (we still load this stylesheet only on the opt-in template,
 * but the scope is belt-and-braces).
 * =============================================================== */

body.pkt-body {
    --pkt-bg-dark: #2a0610;
    --pkt-bg-light: #f6f2ec;
    --pkt-text-dark: #1b1316;
    --pkt-text-muted: #5f5249;
    --pkt-text-soft: #8a7b6f;
    --pkt-accent: #f4c145;
    --pkt-accent-dark: #e0a020;
    --pkt-brand: #9a1226;
    --pkt-brand-dark: #6e0f1d;
    --pkt-green: #1fb866;
    --pkt-green-dark: #1f8a4d;
    --pkt-card-border: #ece3d8;
    --pkt-cream: #f3e9dd;
}

.pkt-home {
    font-family: 'Manrope', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--pkt-bg-light);
    color: var(--pkt-text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

.pkt-home * { box-sizing: border-box; }

@keyframes pkt-bolt { 0%, 92%, 100% { opacity: 1; } 94% { opacity: .3; } 96% { opacity: 1; } }

.pkt-scroll::-webkit-scrollbar { height: 0; width: 0; }
.pkt-scroll { scrollbar-width: none; }

/* ─── Hero section ─────────────────────────────────────────────── */

.pkt-hero {
    position: relative;
    background: var(--pkt-bg-dark);
}
.pkt-hero__bg {
    position: absolute; inset: 0;
    overflow: hidden;
}
.pkt-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.26;
    display: block;
}
.pkt-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(34,6,16,0.8) 0%, rgba(40,7,18,0.55) 42%, rgba(34,6,16,1) 100%);
}
.pkt-hero__glow {
    position: absolute; inset: 0;
    background: radial-gradient(58% 44% at 50% 16%, rgba(244,193,69,0.08) 0%, rgba(244,193,69,0) 65%);
}

.pkt-hero__topbar {
    position: relative; z-index: 5;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pkt-hero__topbar > .pkt-hero__burger    { justify-self: start; }
.pkt-hero__topbar > .pkt-hero__logo-link { justify-self: center; }
.pkt-hero__logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0; /* kill the inline-flex baseline gap under the img */
}
.pkt-hero__topbar-right {
    justify-self: end;
    display: flex; align-items: center;
    gap: 8px;
}
.pkt-hero__burger,
.pkt-hero__age {
    display: grid; place-items: center;
    width: 42px; height: 42px;
    color: var(--pkt-cream);
}
.pkt-hero__age {
    border-radius: 50%;
    border: 2px solid var(--pkt-accent);
    color: var(--pkt-accent);
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 12px;
}
.pkt-hero__logo { height: 34px; width: auto; display: block; }

.pkt-hero__nav {
    display: none;
}

.pkt-hero__body {
    position: relative; z-index: 4;
    padding: 78px 16px 0;
    text-align: center;
}
.pkt-hero__update {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(244,193,69,0.1);
    border: 1px solid rgba(244,193,69,0.3);
    color: var(--pkt-accent);
    font-family: 'Sora', sans-serif;
    font-weight: 600; font-size: 11px;
    letter-spacing: 0.03em; text-transform: uppercase;
}
.pkt-hero__update svg { animation: pkt-bolt 4s infinite; }

.pkt-hero__h1 {
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 28px;
    line-height: 1.1; letter-spacing: -0.02em;
    color: #fff;
    margin: 16px 0 0;
}
.pkt-hero__h1 mark {
    background: none;
    color: var(--pkt-accent);
}
.pkt-hero__lead {
    font-size: 14px; line-height: 1.5;
    color: rgba(243,233,221,0.78);
    margin: 12px 0 0;
}

.pkt-hero__chips {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.pkt-hero__chip {
    display: flex; align-items: center; gap: 6px;
    padding: 7px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.11);
    color: var(--pkt-cream);
    font-weight: 600; font-size: 12.5px;
}

.pkt-hero__top3-label {
    display: flex; align-items: center; justify-content: center;
    gap: 10px;
    margin: 42px 0 12px;
}
.pkt-hero__top3-rule {
    height: 1px; width: 28px;
}
.pkt-hero__top3-rule--left  { background: linear-gradient(90deg, transparent, var(--pkt-accent)); }
.pkt-hero__top3-rule--right { background: linear-gradient(90deg, var(--pkt-accent), transparent); }
.pkt-hero__top3-text {
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 13px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--pkt-accent);
}

.pkt-hero__top3 {
    position: relative; z-index: 4;
    display: flex; gap: 12px;
    overflow-x: auto;
    padding: 14px 16px 30px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.pkt-top3-card {
    position: relative;
    flex: 0 0 224px;
    scroll-snap-align: center;
    border-radius: 16px;
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
}
.pkt-top3-card--gold {
    background: linear-gradient(180deg, #fffdf8, #fff6e6);
    border: 2px solid var(--pkt-accent);
    box-shadow: 0 16px 36px -18px rgba(0,0,0,0.6);
}
.pkt-top3-card--glass {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.pkt-top3-card__badge {
    position: absolute; top: -12px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 11px;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
    color: #2c060e;
}
.pkt-top3-card__badge--gold {
    background: linear-gradient(135deg, var(--pkt-accent), var(--pkt-accent-dark));
    letter-spacing: 0.06em;
    box-shadow: 0 6px 14px -4px rgba(224,160,32,0.7);
}
.pkt-top3-card__badge--silver {
    background: rgba(243,233,221,0.92);
}

.pkt-top3-card__logo {
    height: 52px; border-radius: 10px;
    margin-top: 6px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.pkt-top3-card__logo-img,
.pkt-top3-card__logo img {
    max-width: 80%;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.pkt-top3-card__name {
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 15px;
    margin-top: 12px;
}
.pkt-top3-card--gold  .pkt-top3-card__name { color: var(--pkt-text-dark); }
.pkt-top3-card--glass .pkt-top3-card__name { color: #fff; }

.pkt-top3-card__bonus {
    font-size: 13px;
    margin-top: 3px;
    line-height: 1.4;
}
.pkt-top3-card--gold  .pkt-top3-card__bonus { color: #6b5d52; padding-bottom: 9px;}
.pkt-top3-card--glass .pkt-top3-card__bonus { color: rgba(243,233,221,0.72); }
.pkt-top3-card--glass .pkt-top3-card__bonus strong { color: var(--pkt-accent); }
.pkt-top3-card--gold  .pkt-top3-card__bonus strong { color: var(--pkt-text-dark); }

.pkt-top3-card__pill {
    display: inline-block;
    margin-top: 7px;
    font-size: 11px; font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
}
.pkt-top3-card__pill--green {
    color: var(--pkt-green-dark);
    background: #eafaf0;
    border: 1px solid #cdeedc;
}
.pkt-top3-card__pill--gold {
    color: var(--pkt-accent);
    background: rgba(244,193,69,0.14);
}

.pkt-top3-card__cta {
    display: block;
    text-align: center;
    margin-top: auto;
    padding: 13px;
    border-radius: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 15px;
    text-decoration: none;
}
.pkt-top3-card__cta--red {
    background: linear-gradient(135deg, var(--pkt-brand-dark), var(--pkt-brand));
    color: #fff;
    box-shadow: 0 10px 20px -8px rgba(154,18,38,0.7);
}
.pkt-top3-card__cta--gold {
    background: linear-gradient(135deg, var(--pkt-accent), var(--pkt-accent-dark));
    color: #2c060e;
    font-weight: 800;
}

.pkt-list {
    padding: 22px 16px 60px;
}

.pkt-list.pkt-list--from-block {
    padding: 0;
    margin: 0;
    max-width: none;
}

.pkt-list__h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 24px;
    line-height: 1.12; letter-spacing: -0.02em;
    color: var(--pkt-text-dark);
    margin: 0;
}
.pkt-list__lead {
    font-size: 14.5px; line-height: 1.55;
    color: var(--pkt-text-muted);
    margin: 10px 0 0;
}

.pkt-sort {
    display: flex; align-items: center;
    gap: 7px;
    margin: 18px -16px 14px;
    padding: 2px 16px 8px;
    font-size: 0;
}
.pkt-sort__label {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Sora', sans-serif;
    font-weight: 600; font-size: 13px;
    color: var(--pkt-text-soft);
    white-space: nowrap;
    flex-shrink: 0;
}
.pkt-sort__chips {
    display: flex; gap: 7px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.pkt-sort__chip {
    appearance: none;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    font-weight: 600; font-size: 13.5px;
    padding: 9px 15px;
    border-radius: 10px;
    border: 1.5px solid var(--pkt-card-border);
    background: #fff;
    color: var(--pkt-text-muted);
    white-space: nowrap;
    flex-shrink: 0;
    transition: all .15s ease;
}
.pkt-sort__chip:hover {
    border-color: var(--pkt-text-soft);
}
.pkt-sort__chip.is-active {
    border-color: var(--pkt-brand);
    background: linear-gradient(135deg, var(--pkt-brand-dark), var(--pkt-brand));
    color: #fff;
}

.pkt-list__cards {
    display: flex; flex-direction: column;
    gap: 10px;
}

.pkt-hero--cover .pkt-hero__body--cover {
    padding-bottom: 12px;
    text-align: center;
    position: relative; z-index: 4;
}
.pkt-hero--cover .pkt-hero__top3-label {
    margin: 18px 0 8px;
}
.pkt-hero--cover .pkt-hero__top3 {
    padding-top: 11px;
}
.pkt-hero--cover .pkt-hero__h1 {
    margin-top: 0;
    text-wrap: balance;
}
.pkt-hero--cover .pkt-hero__lead {
    max-width: 56ch;
    margin: 14px auto 0;
}
@media (min-width: 1024px) {
    .pkt-hero--cover .pkt-hero__body--cover {
        max-width: 1240px;
        margin: 0 auto;
        padding: 86px 28px 14px;
    }
    .pkt-hero--cover .pkt-hero__h1 {
        font-size: clamp(34px, 4.8vw, 49px);
        line-height: 1.05;
        max-width: 22ch;
        margin-left: auto; margin-right: auto;
    }
    .pkt-hero--cover .pkt-hero__lead {
        font-size: clamp(15px, 1.3vw, 17.5px);
        margin-top: 18px;
    }
}


.pkt-row {
    position: relative;
    background: #fff;
    border: 1px solid var(--pkt-card-border);
    border-radius: 14px;
    padding: 12px 13px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    scroll-margin-top: 90px;
}
.admin-bar .pkt-row { scroll-margin-top: 122px; }
@media screen and (max-width: 782px) {
    .admin-bar .pkt-row { scroll-margin-top: 136px; }
}
.pkt-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -22px rgba(44,6,14,0.4);
    border-color: var(--pkt-accent);
}

/* Mobile row layout */
.pkt-row__top {
    display: flex; align-items: center;
    gap: 11px;
}
.pkt-row__logo-wrap {
    position: relative;
    flex-shrink: 0;
}
.pkt-row__logo {
    width: 84px; height: 54px;
    border-radius: 10px;
    background-color: #0d0d0f;
    padding: 7px 9px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
/* <picture> element sits between the flex parent and the <img>. By
 * default <picture> is inline and takes the intrinsic width of its
 * <img> child (the width="..." attribute the optimizer writes from
 * the original image). On narrow containers that intrinsic width
 * overflows, gets clipped by overflow:hidden, and the visible <img>
 * appears stuck to the left. `display: contents` makes <picture>
 * itself layout-invisible, so the <img> becomes the direct flex
 * child of the logo container and centres properly. */
.pkt-row__logo picture,
.pkt-row__logo-desktop picture,
.pkt-top3-card__logo picture {
    display: contents;
}
.pkt-row__logo-img,
.pkt-row__logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.pkt-row__rank-badge {
    position: absolute; top: -6px; left: -6px;
    display: grid; place-items: center;
    min-width: 20px; height: 20px;
    padding: 0 4px;
    border-radius: 999px;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 11px;
    box-shadow: 0 2px 6px -1px rgba(0,0,0,0.3);
}
.pkt-row__name-wrap {
    flex: 1; min-width: 0;
}
.pkt-row__name {
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 15px;
    color: var(--pkt-text-dark);
}
.pkt-row__stars-line {
    display: flex; align-items: center; gap: 7px;
    margin-top: 3px;
}
.pkt-stars {
    position: relative;
    display: inline-block;
    font-size: 13px; letter-spacing: 1.5px;
    line-height: 1;
}
.pkt-stars__bg { color: #e7ddd0; }
.pkt-stars__fg {
    position: absolute; top: 0; left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--pkt-accent);
}
.pkt-row__verdict {
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 10.5px;
    letter-spacing: 0.03em; text-transform: uppercase;
}
.pkt-row__score {
    display: flex; align-items: baseline; gap: 1px;
    flex-shrink: 0;
}
.pkt-row__score-num {
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 22px;
    line-height: 1;
    color: var(--pkt-text-dark);
}
.pkt-row__score-max {
    font-size: 11px; font-weight: 600;
    color: #b1a394;
}
.pkt-row__bonus-label {
    margin-top: 11px;
}
.pkt-row__bonus-line {
    display: flex; align-items: baseline; flex-wrap: wrap;
    gap: 8px;
}

/* Mobile bonus-block layout (< 1024px): split into 2 columns — bonus
 * stack (label + amount + wager) on the left, pills tower on the right.
 * Width-wise the right column hugs the widest pill, the left grabs all
 * remaining space. Wrapped in max-width so the desktop 4-col row grid
 * (which expects bonus-block to be a single block-flow column) stays
 * untouched. */
@media (max-width: 1023.98px) {
    .pkt-row__bonus-block {
        display: grid;
        grid-template-columns: 1fr auto;
        column-gap: 10px;
        align-items: center;
        margin-top: 9px;
    }
    .pkt-row__bonus-label,
    .pkt-row__bonus-row {
        grid-column: 1;
    }
    .pkt-row__bonus-label { margin-top: 0; }
    .pkt-row__bonus-block > .pkt-row__pills-row {
        grid-column: 2;
        grid-row: 1 / span 2;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        flex-wrap: nowrap;
        gap: 6px;
        margin-top: 0;
    }
}
.pkt-row__bonus {
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 16px;
    color: var(--pkt-text-dark);
    line-height: 1.15;
}
.pkt-row__wager {
    font-size: 11px; font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    white-space: nowrap;
}
.pkt-row__wager--green {
    color: var(--pkt-green-dark);
    background: #eafaf0;
    border: 1px solid #cdeedc;
}
.pkt-row__wager--amber {
    color: #9a3b16;
    background: #fbe6cf;
    border: 1px solid #f3d3b3;
}

.pkt-row__pills {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-top: 9px;
}
.pkt-row__pill {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11.5px; font-weight: 600;
    padding: 4px 8px;
    border-radius: 7px;
    white-space: nowrap;
}
.pkt-row__pill--gold {
    color: #9a6a12;
    background: #fdf3df;
    border: 1px solid #f3e2bb;
}
.pkt-row__pill--green {
    color: var(--pkt-green-dark);
    background: #eafaf0;
    border: 1px solid #cdeedc;
}
.pkt-row__pill--neutral {
    color: #6b5d52;
    background: #f2ece3;
    border: 1px solid #e6dccd;
}

.pkt-row__features {
    display: none; /* hidden on mobile; shown on desktop */
}

.pkt-row__cta-line {
    display: flex; align-items: center;
    gap: 12px;
    margin-top: 12px;
}
.pkt-row__review {
    display: flex; align-items: center; gap: 5px;
    font-size: 13px; font-weight: 600;
    color: var(--pkt-brand);
    text-decoration: none;
    white-space: nowrap;
}
.pkt-row__review:hover { text-decoration: underline; }
.pkt-row__play {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--pkt-brand-dark), var(--pkt-brand));
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 18px -9px rgba(154,18,38,0.7);
}

.pkt-row__rank-col,
.pkt-row__logo-col,
.pkt-row__rating-desktop {
    display: none;
}

/* Show-more + disclaimer */
.pkt-list__more {
    display: flex; align-items: center; justify-content: center;
    width: 100%;
    gap: 9px;
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    border: 1.5px solid #d8c9b8;
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 15px;
    color: var(--pkt-brand-dark);
    text-decoration: none;
}
.pkt-list__more:hover {
    border-color: var(--pkt-brand-dark);
    background: #fff8ef;
}
.pkt-list__more {
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.pkt-list__more:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(110,15,29,0.08);
}
.pkt-list__more-count {
    display: inline-grid;
    place-items: center;
    min-width: 26px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(244,193,69,0.18);
    color: var(--pkt-accent-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.pkt-list__more-chev {
    transition: transform .18s ease;
}
.pkt-list__more:hover .pkt-list__more-chev {
    transform: translateY(2px);
}
.pkt-list__more-wrap.is-leaving {
    overflow: hidden;
    animation: pkt-collapse-out .32s ease forwards;
}
@keyframes pkt-collapse-out {
    0%   { max-height: 120px; opacity: 1; margin-top: 20px; }
    100% { max-height: 0;     opacity: 0; margin-top: 0;     }
}

.pkt-row--hidden { display: none; }
.pkt-row--revealing {
    animation: pkt-row-reveal .42s cubic-bezier(.2, .8, .25, 1) both;
}
@keyframes pkt-row-reveal {
    0%   { opacity: 0; transform: translateY(14px); }
    100% { opacity: 1; transform: translateY(0);    }
}
@media (prefers-reduced-motion: reduce) {
    .pkt-row--revealing { animation: none; }
    .pkt-list__more-wrap.is-leaving { animation: none; max-height: 0; opacity: 0; }
}
.pkt-list__disclaimer {
    display: flex; align-items: center; justify-content: center;
    gap: 9px;
    margin-top: 26px;
    color: #9a8d80;
    font-size: 12.5px;
    text-align: center;
}
.pkt-list__disclaimer-badge {
    display: grid; place-items: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1.5px solid #c3b5a6;
    font-weight: 700; font-size: 10px;
    color: var(--pkt-text-soft);
    flex-shrink: 0;
}

/* ─── Desktop (≥ 1024px) ───────────────────────────────────────── */

@media (min-width: 1024px) {
    .pkt-hero__topbar { display: none; }
    .pkt-hero__nav {
        position: relative; z-index: 5;
        max-width: 1240px; margin: 0 auto;
        padding: 15px 28px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        display: flex; align-items: center; justify-content: space-between;
        gap: 24px;
    }
    .pkt-hero__nav-brand img { height: 46px; width: auto; display: block; }
    .pkt-hero__nav-actions { display: flex; align-items: center; gap: 14px; }
    .pkt-hero__nav-age {
        display: grid; place-items: center;
        width: 38px; height: 38px;
        border-radius: 50%;
        border: 2px solid var(--pkt-accent);
        color: var(--pkt-accent);
        font-family: 'Sora', sans-serif;
        font-weight: 700; font-size: 12px;
    }

    .pkt-hero__body {
        max-width: 1240px; margin: 0 auto;
        /* Top padding pushes body content below the fixed nav (~76px)
         * with a small visual gap. */
        padding: 86px 28px 7px;
    }
    .pkt-hero__h1 {
        font-size: clamp(29px, 4.3vw, 50px);
        line-height: 1.06;
        max-width: 17ch;
        margin-left: auto; margin-right: auto;
        text-wrap: balance;
    }
    .pkt-hero__lead {
        font-size: clamp(14px, 1.3vw, 16.5px);
        max-width: 56ch;
        margin-left: auto; margin-right: auto;
    }
    .pkt-hero__chip { font-size: 13px; padding: 7px 13px; }
    .pkt-hero__top3-text { font-size: 15px; letter-spacing: 0.16em; }
    .pkt-hero__top3-rule { width: 40px; }
    .pkt-hero__top3-label { margin: 30px 0 16px; }

    .pkt-hero__top3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 1240px; margin: 0 auto;
        padding: 0 28px 44px;
        overflow: visible;
    }
    .pkt-top3-card { flex: none; }
    .pkt-top3-card--gold {
        box-shadow: 0 22px 50px -20px rgba(0,0,0,0.6);
    }
    .pkt-top3-card__logo {
        height: 80px;
    }
    .pkt-top3-card__logo .pkt-top3-card__logo-img,
    .pkt-top3-card__logo img {
        max-height: 64px;
        max-width: 85%;
    }

    /* Top list section */
    .pkt-list {
        max-width: 1240px; margin: 0 auto;
        padding: 30px 28px 25px;
    }
    .pkt-list__h2 { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.1; }
    .pkt-list__head { max-width: 760px; }
    .pkt-list__lead { font-size: 16px; line-height: 1.6; margin: 14px 0 0; }

    .pkt-sort {
        margin: 22px 0 14px;
        padding: 0;
        flex-wrap: wrap;
        gap: 10px;
    }
    .pkt-sort__label { font-size: 14px; margin-right: 4px; }
    .pkt-sort__chips { display: contents; }
    .pkt-sort__chip { font-size: 14px; padding: 9px 16px; border-radius: 11px; }

    /* Row → 4-column grid */
    .pkt-row {
        display: grid;
        grid-template-columns: 48px 172px 1fr 198px;
        gap: 18px;
        align-items: center;
        padding: 14px 20px 14px 14px;
        border-radius: 16px;
        box-shadow: 0 1px 0 rgba(0,0,0,0.02);
    }

    .pkt-row__top,
    .pkt-row__cta-line {
        display: none;
    }

    .pkt-row__rank-col {
        display: flex; flex-direction: column; align-items: center; gap: 4px;
    }
    .pkt-row__rank-col-num {
        font-family: 'Sora', sans-serif;
        font-weight: 800; font-size: 26px;
        line-height: 1;
    }
    .pkt-row__rank-col-label {
        font-size: 10px; font-weight: 700;
        letter-spacing: 0.1em;
        color: #c3b5a6;
    }
    .pkt-row__rank-badge { display: none; }

    .pkt-row__logo-col {
        display: flex; flex-direction: column; gap: 8px;
    }
    .pkt-row__logo-desktop {
        height: 72px;
        border-radius: 12px;
        background-color: #0d0d0f;
        border: 1px solid var(--pkt-card-border);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
        display: flex; align-items: center; justify-content: center;
        overflow: hidden;
        padding: 7px;
    }
    .pkt-row__logo-desktop .pkt-row__logo-img,
    .pkt-row__logo-desktop img {
        max-height: 58px;
        max-width: 90%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }
    .pkt-row__review-desktop {
        display: flex; align-items: center; justify-content: center;
        gap: 6px;
        font-size: 13px; font-weight: 600;
        color: var(--pkt-brand);
        text-decoration: none;
    }

    .pkt-row__logo,
    .pkt-row__name-wrap,
    .pkt-row__score,
    .pkt-row__review,
    .pkt-row__name {
        display: none;
    }
    .pkt-row__bonus-block {
        display: block;
    }
    .pkt-row__bonus-label {
        font-size: 11px; font-weight: 700;
        letter-spacing: 0.09em;
        color: #b1a394;
        text-transform: uppercase;
    }
    .pkt-row__bonus-row {
        display: flex; align-items: baseline; flex-wrap: wrap;
        gap: 10px;
        margin-top: 3px;
    }
    .pkt-row__bonus { font-size: 19px; }
    .pkt-row__pills-row {
        display: flex; flex-wrap: wrap;
        gap: 7px;
        margin-top: 11px;
    }
    .pkt-row__pill { font-size: 12px; padding: 4px 9px; border-radius: 8px; }

    .pkt-row__features {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 5px 22px;
        margin-top: 12px;
    }
    .pkt-list--from-block .pkt-row__features {
        grid-template-columns: 1fr;
    }
    .pkt-row__feature {
        display: flex; align-items: flex-start; gap: 7px;
        font-size: 13.5px;
        color: #4a3f37;
        line-height: 1.35;
    }
    .pkt-row__feature svg { flex-shrink: 0; margin-top: 2px; }

    .pkt-row__rating-desktop {
        display: flex; flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding-left: 18px;
        border-left: 1px solid #f0e8dd;
    }
    .pkt-row__rating-name {
        font-family: 'Sora', sans-serif;
        font-weight: 700; font-size: 14px;
        letter-spacing: 0.02em;
        color: var(--pkt-text-dark);
        text-align: center;
    }
    .pkt-row__rating-card {
        background: #faf6ef;
        border: 1px solid #eee0cd;
        border-radius: 13px;
        padding: 10px 8px 11px;
        display: flex; flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .pkt-row__rating-card .pkt-stars { font-size: 15px; letter-spacing: 2px; }
    .pkt-row__rating-card .pkt-row__score-num { font-size: 28px; }
    .pkt-row__rating-card .pkt-row__score-max { font-size: 14px; }
    .pkt-row__rating-card .pkt-row__verdict { font-size: 11px; letter-spacing: 0.05em; }
    .pkt-row__rating-card .pkt-row__score { display: flex; }
    .pkt-row__play-desktop {
        display: block; width: 100%;
        text-align: center;
        padding: 12px 18px;
        border-radius: 11px;
        background: linear-gradient(135deg, var(--pkt-brand-dark), var(--pkt-brand));
        color: #fff;
        font-family: 'Sora', sans-serif;
        font-weight: 700; font-size: 15px;
        text-decoration: none;
        box-shadow: 0 10px 22px -10px rgba(154,18,38,0.75);
        transition: filter .15s ease;
    }
    .pkt-row__play-desktop:hover { filter: brightness(1.12); }
    .pkt-row__play { display: none; }

    .pkt-list__more {
        display: inline-flex;
        width: auto;
        padding: 15px 32px;
        border-radius: 13px;
        font-size: 15px;
        margin: 30px auto 0;
    }
    .pkt-list__more-wrap {
        display: flex; justify-content: center;
        margin-top: 30px;
    }
    .pkt-list__disclaimer { font-size: 13px; margin-top: 34px; }
    .pkt-list__disclaimer-badge { width: 30px; height: 30px; font-size: 11px; }
}

/* ─── Author box ───────────────────────────────────────────────── */

.pkt-author {
    padding: 0 16px 24px;
}
.pkt-author__card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    background: #fff;
    border: 1px solid var(--pkt-card-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px -40px rgba(44,6,14,0.5);
}
.pkt-author__rail {
    position: relative;
    background: linear-gradient(165deg, #3a0a14 0%, #2a0610 58%, #1f0610 100%);
    color: var(--pkt-cream);
    padding: 30px 26px 28px;
    display: flex; flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.pkt-author__rail-glow {
    position: absolute;
    top: -50px; left: 50%;
    transform: translateX(-50%);
    width: 280px; height: 220px;
    background: radial-gradient(circle, rgba(244,193,69,0.18), transparent 70%);
    pointer-events: none;
}
.pkt-author__eyebrow {
    position: relative;
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244,193,69,0.85);
}
.pkt-author__avatar-wrap {
    position: relative;
    width: 112px; height: 112px;
    margin-top: 18px;
}
.pkt-author__avatar {
    width: 112px; height: 112px;
    border-radius: 50%;
    background: linear-gradient(150deg, #8a1224, #45101a);
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.12), 0 0 0 5px var(--pkt-accent), 0 16px 32px -12px rgba(0,0,0,0.65);
    display: grid; place-items: center;
}
.pkt-author__avatar--initials {
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 36px;
    color: var(--pkt-accent);
}
.pkt-author__verified-dot {
    position: absolute;
    right: 3px; bottom: 5px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #1f9d57;
    display: grid; place-items: center;
    box-shadow: 0 0 0 3px var(--pkt-bg-dark);
}
.pkt-author__name {
    position: relative;
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 22px;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 16px 0 0;
}
.pkt-author__title {
    position: relative;
    font-family: 'Sora', sans-serif;
    font-weight: 600; font-size: 14px;
    color: var(--pkt-accent);
    margin-top: 4px;
}
.pkt-author__verified-pill {
    position: relative;
    display: inline-flex; align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-size: 11.5px; font-weight: 700;
    color: #7ee0a6;
    background: rgba(31,157,87,0.16);
    border: 1px solid rgba(126,224,166,0.3);
    padding: 5px 11px;
    border-radius: 999px;
}
.pkt-author__social {
    position: relative;
    display: flex; gap: 10px;
    margin-top: 20px;
}
.pkt-author__social-link {
    display: grid; place-items: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--pkt-cream);
    transition: all .15s ease;
}
.pkt-author__social-link:hover {
    background: var(--pkt-accent);
    color: var(--pkt-bg-dark);
    border-color: var(--pkt-accent);
}

.pkt-author__content {
    padding: 28px 24px 30px;
}
.pkt-author__about-eyebrow {
    display: inline-flex; align-items: center;
    gap: 8px;
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pkt-brand);
}
.pkt-author__bio {
    font-size: 15.5px; line-height: 1.65;
    color: #4a3f37;
    margin: 16px 0 0;
}
.pkt-author__quote {
    position: relative;
    margin: 20px 0 0;
    padding: 4px 0 4px 20px;
    border-left: 3px solid var(--pkt-accent);
}
.pkt-author__quote p {
    font-family: 'Sora', sans-serif;
    font-weight: 600; font-size: 16px;
    line-height: 1.5;
    color: var(--pkt-text-dark);
    font-style: italic;
    margin: 0;
}
.pkt-author__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}
.pkt-author__stat {
    background: #faf6ef;
    border: 1px solid #f0e6d6;
    border-radius: 14px;
    padding: 14px 16px;
}
.pkt-author__stat-val {
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 25px;
    line-height: 1;
    color: var(--pkt-brand);
}
.pkt-author__stat-label {
    font-size: 12px; font-weight: 600;
    color: #6b5d52;
    margin-top: 6px;
    line-height: 1.3;
}
.pkt-author__specialties {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f3ece2;
}
.pkt-author__spec-eyebrow {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b1a394;
}
.pkt-author__spec-list {
    display: flex; flex-wrap: wrap;
    gap: 8px;
    margin-top: 13px;
}
.pkt-author__spec {
    display: inline-flex; align-items: center;
    gap: 7px;
    font-size: 13px; font-weight: 600;
    color: var(--pkt-text-muted);
    background: #f6f1e9;
    border: 1px solid #e8dccd;
    padding: 7px 13px;
    border-radius: 9px;
}
.pkt-author__spec-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--pkt-accent);
}

/* ─── Newsletter ───────────────────────────────────────────────── */

.pkt-newsletter {
    padding: 16px 16px 36px;
}
.pkt-newsletter__card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(120deg, #240510 0%, #4a0c18 52%, #6e0f1d 100%);
    box-shadow: 0 34px 80px -40px rgba(44,6,14,0.75);
}
.pkt-newsletter__glow {
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    pointer-events: none;
}
.pkt-newsletter__glow--top {
    top: -80px; right: -40px;
    background: radial-gradient(circle, rgba(244,193,69,0.22), transparent 68%);
}
.pkt-newsletter__glow--bottom {
    bottom: -120px; left: -60px;
    background: radial-gradient(circle, rgba(154,18,38,0.5), transparent 70%);
}
.pkt-newsletter__bolt {
    position: absolute;
    right: -30px; top: 50%;
    transform: translateY(-50%) rotate(8deg);
    width: 220px; height: 220px;
    color: rgba(244,193,69,0.06);
    pointer-events: none;
}
.pkt-newsletter__row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
    align-items: center;
}

.pkt-newsletter__eyebrow {
    display: inline-flex; align-items: center;
    gap: 8px;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(244,193,69,0.14);
    border: 1px solid rgba(244,193,69,0.35);
    color: var(--pkt-accent);
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.pkt-newsletter__h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: clamp(24px, 5vw, 30px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 16px 0 0;
}
.pkt-newsletter__lead {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(243,233,221,0.78);
    margin: 14px 0 0;
}
.pkt-newsletter__benefits {
    display: flex; flex-direction: column;
    gap: 13px;
    margin-top: 22px;
}
.pkt-newsletter__benefit {
    display: flex; align-items: center;
    gap: 12px;
}
.pkt-newsletter__benefit-icon {
    display: grid; place-items: center;
    width: 38px; height: 38px;
    border-radius: 11px;
    background: rgba(244,193,69,0.14);
    border: 1px solid rgba(244,193,69,0.3);
    flex-shrink: 0;
}
.pkt-newsletter__benefit-text {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--pkt-cream);
}

.pkt-newsletter__form-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 18px;
    padding: 24px 22px;
}
.pkt-newsletter__form-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 17px;
    color: #fff;
}
.pkt-newsletter__form-sub {
    font-size: 13px;
    color: rgba(243,233,221,0.62);
    margin-top: 5px;
}
.pkt-newsletter__hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important; height: 1px !important;
    overflow: hidden !important;
}
.pkt-newsletter__email-label {
    display: block;
    font-size: 11.5px; font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(244,193,69,0.8);
    margin: 18px 0 8px;
}
.pkt-newsletter__email {
    width: 100%; box-sizing: border-box;
    padding: 14px 15px;
    border-radius: 11px;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.22);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color .15s ease;
}
.pkt-newsletter__email:focus { border-color: var(--pkt-accent); }
.pkt-newsletter__email::placeholder { color: rgba(243,233,221,0.4); }
.pkt-newsletter__button {
    appearance: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    gap: 9px;
    width: 100%;
    margin-top: 12px;
    padding: 15px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--pkt-accent), var(--pkt-accent-dark));
    color: var(--pkt-bg-dark);
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 15.5px;
    box-shadow: 0 14px 28px -12px rgba(244,193,69,0.7);
    transition: filter .15s ease, transform .15s ease;
}
.pkt-newsletter__button:hover {
    filter: brightness(1.07);
    transform: translateY(-1px);
}
.pkt-newsletter__privacy {
    display: flex; align-items: center;
    gap: 7px;
    margin-top: 13px;
    font-size: 12px;
    color: rgba(243,233,221,0.55);
}
.pkt-newsletter__error {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(212,77,77,0.18);
    color: #ffcfcf;
    font-size: 12.5px;
}
.pkt-newsletter__proof {
    display: flex; align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.pkt-newsletter__avatars {
    display: flex;
}
.pkt-newsletter__avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 2px solid #3a0a14;
    display: grid; place-items: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 11px;
}
.pkt-newsletter__avatar:not(:first-child) { margin-left: -10px; }
.pkt-newsletter__avatar--a { background: linear-gradient(140deg, #8a1224, #45101a); color: var(--pkt-accent); }
.pkt-newsletter__avatar--b { background: linear-gradient(140deg, #1f6d52, #0f3a2c); color: #fff; }
.pkt-newsletter__avatar--c { background: linear-gradient(140deg, #5a3d8a, #2c1f45); color: #fff; }
.pkt-newsletter__avatar--d { background: linear-gradient(140deg, #c98a12, #8a5d0c); color: #fff; font-size: 10px; }
.pkt-newsletter__proof-text {
    font-size: 12px;
    color: rgba(243,233,221,0.7);
    line-height: 1.35;
}
.pkt-newsletter__proof-text strong { color: #fff; }

.pkt-newsletter__thanks {
    text-align: center;
    padding: 14px 4px;
}
.pkt-newsletter__form-card .pkt-newsletter__thanks { display: none; }
.pkt-newsletter__form-card.is-submitted .pkt-newsletter__form-wrap { display: none; }
.pkt-newsletter__form-card.is-submitted .pkt-newsletter__thanks {
    display: block;
    /* Subtle pop so the success state lands with feedback. */
    animation: pkt-nl-thanks-in 0.42s cubic-bezier(.22,.8,.28,1) both;
}
@keyframes pkt-nl-thanks-in {
    0%   { opacity: 0; transform: scale(0.96); }
    100% { opacity: 1; transform: scale(1);    }
}

.pkt-newsletter__button-spinner {
    display: none;
    animation: pkt-nl-spin 0.9s linear infinite;
}
.pkt-newsletter__button.is-loading {
    pointer-events: none;
    opacity: 0.85;
    cursor: progress;
}
.pkt-newsletter__button.is-loading .pkt-newsletter__button-arrow { display: none; }
.pkt-newsletter__button.is-loading .pkt-newsletter__button-spinner { display: inline-block; }
@keyframes pkt-nl-spin {
    100% { transform: rotate(360deg); }
}

.pkt-newsletter__thanks-check {
    display: grid; place-items: center;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(31,157,87,0.18);
    border: 1px solid rgba(126,224,166,0.4);
    margin: 0 auto;
}
.pkt-newsletter__thanks-title {
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 20px;
    color: #fff;
    margin-top: 16px;
}
.pkt-newsletter__thanks-sub {
    font-size: 14px; line-height: 1.55;
    color: rgba(243,233,221,0.72);
    margin-top: 8px;
}

/* ─── Footer ───────────────────────────────────────────────────── */

.pkt-footer {
    background: var(--pkt-bg-dark);
    color: var(--pkt-cream);
    position: relative;
}
.pkt-footer__accent {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(244,193,69,0.5), transparent);
}
.pkt-footer__inner {
    padding: 40px 16px 0;
}
.pkt-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.09);
}
.pkt-footer__logo {
    height: 40px; width: auto;
    display: block;
}
.pkt-footer__tagline {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(243,233,221,0.6);
    margin: 16px 0 0;
    max-width: 320px;
}
.pkt-footer__payments-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(244,193,69,0.72);
    margin-top: 18px;
}
.pkt-footer__payments-list {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.pkt-footer__payment {
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 12px;
    color: rgba(243,233,221,0.75);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 11px;
    border-radius: 7px;
}
.pkt-footer__col-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 13px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff;
}
.pkt-footer__col-rule {
    width: 24px; height: 2px;
    background: var(--pkt-accent);
    margin: 9px 0 16px;
}
.pkt-footer__col-links {
    display: flex; flex-direction: column;
    gap: 11px;
}
.pkt-footer__col-links a {
    font-size: 14px;
    color: rgba(243,233,221,0.72);
    text-decoration: none;
    transition: color .15s ease;
}
.pkt-footer__col-links a:hover { color: var(--pkt-accent); }
.pkt-footer__contacts {
    display: flex; flex-direction: column;
    gap: 13px;
}
.pkt-footer__contact {
    display: inline-flex; align-items: center;
    gap: 9px;
    font-size: 14px;
    color: rgba(243,233,221,0.72);
    text-decoration: none;
    transition: color .15s ease;
}
.pkt-footer__contact:hover { color: var(--pkt-accent); }
.pkt-footer__contact svg { flex-shrink: 0; }
.pkt-footer__contact-more {
    display: inline-flex; align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--pkt-accent);
    text-decoration: none;
    margin-top: 2px;
    transition: gap .15s ease;
}
.pkt-footer__contact-more:hover { gap: 11px; }

.pkt-footer__responsibility {
    display: flex; flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0;
}
.pkt-footer__resp-left {
    display: flex; align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.pkt-footer__age {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(214,77,77,0.85);
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 13px;
    color: #f0c9c9;
}
.pkt-footer__resp-logo {
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 13px;
    letter-spacing: 0.06em;
    color: rgba(243,233,221,0.55);
}
.pkt-footer__resp-logo--img {
    display: inline-flex; align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    line-height: 0;
}
.pkt-footer__resp-img {
    height: 26px;
    width: auto;
    max-width: 96px;
    opacity: 0.78;
    filter: grayscale(1) brightness(1.15);
    transition: opacity 0.18s ease, filter 0.18s ease;
}
a.pkt-footer__resp-logo--img:hover .pkt-footer__resp-img {
    opacity: 1;
    filter: grayscale(0) brightness(1);
}
.pkt-footer__resp-text {
    display: flex; align-items: center;
    gap: 9px;
    max-width: 380px;
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(243,233,221,0.55);
}
.pkt-footer__resp-text svg { color: rgba(243,233,221,0.45); flex-shrink: 0; }

.pkt-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.09);
    padding: 18px 0 26px;
    display: flex; align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.pkt-footer__copyright {
    font-size: 12.5px;
    color: rgba(243,233,221,0.5);
}
.pkt-footer__bottom-links {
    display: flex; gap: 18px;
    flex-wrap: wrap;
}
.pkt-footer__bottom-links a {
    font-size: 12.5px;
    color: rgba(243,233,221,0.5);
    text-decoration: none;
    transition: color .15s ease;
}
.pkt-footer__bottom-links a:hover { color: var(--pkt-accent); }

/* ─── Desktop overrides for new sections ───────────────────────── */

@media (min-width: 1024px) {
    .pkt-author {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 28px 28px;
    }
    .pkt-author__card {
        grid-template-columns: 300px 1fr;
    }
    .pkt-author__rail {
        padding: 34px 26px 30px;
    }
    .pkt-author__content {
        padding: 32px 36px 34px;
    }

    .pkt-newsletter {
        max-width: 1240px;
        margin: 0 auto;
        padding: 16px 28px 60px;
    }
    .pkt-newsletter__card {
        border-radius: 26px;
    }
    .pkt-newsletter__bolt {
        right: 30px;
        width: 300px;
        height: 300px;
    }
    .pkt-newsletter__row {
        grid-template-columns: 1.12fr 0.88fr;
        gap: 46px;
        padding: 46px 48px;
    }
    .pkt-newsletter__h2 { font-size: clamp(28px, 3vw, 35px); }
    .pkt-newsletter__lead { font-size: 15.5px; max-width: 46ch; }
    .pkt-newsletter__form-card { padding: 26px 24px; }

    .pkt-footer__inner {
        max-width: 1240px;
        margin: 0 auto;
        padding: 54px 28px 0;
    }
    .pkt-footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 36px;
        padding-bottom: 42px;
    }
    .pkt-footer__grid--cols-0 {
        /* New Footer has no columns configured — brand spans full row. */
        grid-template-columns: 1fr;
    }
    .pkt-footer__grid--cols-2 {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    .pkt-footer__grid--cols-3 {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    .pkt-footer__grid--cols-4 {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    }
    .pkt-footer__logo { height: 46px; }
    .pkt-footer__responsibility {
        padding: 28px 0;
    }
    .pkt-footer__resp-left { gap: 26px; }
}

/* ─── Page content section (Gutenberg blocks) ─────────────────── */

.pkt-content {
    padding: 8px 16px 32px;
}
.pkt-content__inner {
    max-width: 760px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: var(--pkt-text-dark);
}
.pkt-content__inner > * + * { margin-top: 1rem; }
.pkt-content__inner h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: clamp(22px, 3vw, 30px);
    line-height: 1.2; letter-spacing: -0.01em;
    margin-top: 2rem;
}
.pkt-content__inner h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: clamp(18px, 2.4vw, 22px);
    line-height: 1.25;
    margin-top: 1.5rem;
}
.pkt-content__inner h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 17px;
    margin-top: 1.25rem;
}
.pkt-content__inner p, .pkt-content__inner ul, .pkt-content__inner ol {
    font-size: 16px;
    color: var(--pkt-text-muted);
}
.pkt-content__inner a {
    color: var(--pkt-brand);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.pkt-content__inner a:hover { color: var(--pkt-brand-dark); }
.pkt-content__inner blockquote {
    border-left: 4px solid var(--pkt-accent);
    padding: .25rem 0 .25rem 1rem;
    margin: 1.25rem 0;
    font-style: italic;
}
.pkt-content__inner img,
.pkt-content__inner figure {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.pkt-content__inner ul, .pkt-content__inner ol {
    padding-left: 1.5rem;
}

@media (min-width: 1024px) {
    .pkt-content { padding: 12px 28px 48px; }
    .pkt-content__inner { max-width: 880px; font-size: 17px; }
}

.pkt-content__inner h2,
.pkt-content__inner h3,
.pkt-content__inner h4 {
    scroll-margin-top: 80px;
}

.pkt-content__inner h2 {
    position: relative;
    padding-left: 18px;
    margin-top: 2.5rem;
}
.pkt-content__inner h2::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 4px;
    height: 0.7em;
    background: var(--pkt-accent);
    border-radius: 2px;
    box-shadow: 0 0 0 3px rgba(244,193,69,0.18);
}
.pkt-content__inner .luckyaff-column h2 {
    padding-left: 0;
    margin-top: 0;
}
.pkt-content__inner .luckyaff-column h2::before { content: none; }

.pkt-content__inner h2 + p {
    font-size: 17px;
    color: var(--pkt-text-dark);
    font-weight: 500;
}

.pkt-content__inner p strong,
.pkt-content__inner li strong {
    color: var(--pkt-brand-dark);
    font-weight: 700;
}

/* Only plain content lists get the gold-dot treatment. Any UL/OL with a
 * class attribute belongs to a self-styled block (luckyaff features,
 * payment-method tiles, casino-feature icons, provider lists, similar-
 * casino grids, FAQ blocks, etc.) and already paints its own bullets /
 * checkmarks — so we leave classed lists alone and only decorate the
 * vanilla `<ul>` / `<ol>` emitted by paragraph copy. */
.pkt-content__inner ul:not([class]) {
    list-style: none;
    padding-left: 0;
}
.pkt-content__inner ul:not([class]) > li {
    position: relative;
    padding-left: 1.5rem;
    margin: 0.45rem 0;
    color: var(--pkt-text-muted);
}
.pkt-content__inner ul:not([class]) > li::before {
    content: '';
    position: absolute;
    left: 2px; top: 0.65em;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--pkt-accent);
    box-shadow: 0 0 0 3px rgba(244,193,69,0.16);
}
.pkt-content__inner ol:not([class]) {
    padding-left: 1.4rem;
}
.pkt-content__inner ol:not([class]) > li {
    color: var(--pkt-text-muted);
    margin: 0.4rem 0;
}
.pkt-content__inner ol:not([class]) > li::marker {
    color: var(--pkt-brand);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.pkt-content__inner .wp-block-table {
    margin: 1.75rem 0;
}
.pkt-content__inner .wp-block-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff !important;
    background-image: none !important;
    border: 1px solid var(--pkt-card-border);
    border-radius: 14px;
    overflow: hidden;
    font-size: 15px;
}
.pkt-content__inner blockquote.wp-block-quote .wp-block-table {
    overflow-x: auto;
    margin: 0.8rem 0 0;
}
.pkt-content__inner blockquote.wp-block-quote .wp-block-table table {
    border-radius: 10px;
    font-size: 14px;
}
.pkt-content__inner .wp-block-table thead {
    background: var(--pkt-cream);
}
.pkt-content__inner .wp-block-table thead th {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pkt-text-dark);
    padding: 13px 16px;
    border-bottom: 1px solid var(--pkt-card-border);
    text-align: left;
}
.pkt-content__inner .wp-block-table tbody td {
    padding: 12px 16px;
    color: var(--pkt-text-muted);
    border-bottom: 1px solid var(--pkt-card-border);
}
.pkt-content__inner .wp-block-table tbody tr:last-child td { border-bottom: 0; }
.pkt-content__inner .wp-block-table tbody td strong { color: var(--pkt-text-dark); }
.pkt-content__inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd)  { background: transparent; }
.pkt-content__inner .wp-block-table.is-style-stripes tbody tr:nth-child(even) { background: rgba(243,233,221,0.4); }

.pkt-content__inner blockquote.wp-block-quote {
    position: relative;
    background: linear-gradient(135deg, #fbf3e3 0%, #f3e8d4 100%);
    border: 1.5px solid rgba(244, 193, 69, 0.32);
    border-radius: 4px 18px 18px 18px;
    padding: 1.35rem 1.6rem 1.35rem 1.6rem;
    margin: 1.9rem 0;
    font-style: normal;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 8px 24px -14px rgba(110, 15, 29, 0.18);
    overflow: hidden;
}
.pkt-content__inner blockquote.wp-block-quote::before {
    content: '\201D'; /* RIGHT DOUBLE QUOTATION MARK */
    position: absolute;
    top: -18px;
    right: 6px;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-size: 110px;
    line-height: 1;
    color: var(--pkt-accent);
    opacity: 0.32;
    pointer-events: none;
    user-select: none;
}

.pkt-content__inner blockquote.wp-block-quote p {
    color: var(--pkt-text-dark);
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    position: relative; /* sits above the decorative ::before quote */
}
.pkt-content__inner blockquote.wp-block-quote p + p { margin-top: 0.65rem; }

.pkt-content__inner blockquote.wp-block-quote strong {
    color: var(--pkt-brand-dark);
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    letter-spacing: 0.005em;
    background-image: linear-gradient(to top,
        rgba(244, 193, 69, 0.45) 0%,
        rgba(244, 193, 69, 0.45) 22%,
        transparent 22%);
    padding-right: 2px;
}
.pkt-content__inner blockquote.wp-block-quote cite {
    display: block;
    margin-top: 0.65rem;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pkt-text-soft);
    position: relative;
}

.pkt-content__inner .luckyaff-notice {
    background: var(--pkt-cream) !important;
    border: 1px solid var(--pkt-card-border) !important;
    border-left: 4px solid var(--pkt-brand) !important;
    border-radius: 14px !important;
    color: var(--pkt-text-dark) !important;
    padding: 0 !important;  /* inner regions handle padding */
    overflow: hidden;
}
.pkt-content__inner .luckyaff-notice .luckyaff-notice__title {

    background: transparent !important;
    color: var(--pkt-brand-dark) !important;
    font-family: 'Sora', sans-serif !important;
    font-weight: 800 !important;
    font-size: 14.5px !important;
    letter-spacing: 0.02em !important;
    padding: 14px 18px 6px !important;
    margin: 0 !important;
    line-height: 1.35 !important;
}
.pkt-content__inner .luckyaff-notice .luckyaff-notice__body {
    background: transparent !important;
    color: var(--pkt-text-muted) !important;
    padding: 0 18px 14px !important;
    font-style: normal !important;  /* override bodyItalic editor setting */
    line-height: 1.6;
}
.pkt-content__inner .luckyaff-notice .luckyaff-notice__body p {
    color: var(--pkt-text-muted) !important;
    margin: 0 0 0.5rem;
}
.pkt-content__inner .luckyaff-notice .luckyaff-notice__body p:last-child { margin: 0; }
.pkt-content__inner .luckyaff-notice .luckyaff-notice__body strong {
    color: var(--pkt-brand-dark) !important;
}

.pkt-content__inner .luckyaff-infobox {
    border-radius: 18px !important;
    border-width: 1.5px !important;
    background: #fff !important;
    box-shadow: 0 6px 18px rgba(27,19,22,0.05);
    padding: 1.35rem 1.6rem !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pkt-content__inner .luckyaff-infobox:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(27,19,22,0.08);
}
.pkt-content__inner .luckyaff-infobox__icon-wrap {
    background: rgba(244,193,69,0.14) !important;
    color: var(--pkt-brand) !important;
    width: 64px !important;
    height: 64px !important;
    padding: 14px !important;
}
.pkt-content__inner .luckyaff-infobox__title {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    color: var(--pkt-text-dark);
    letter-spacing: -0.005em;
}
.pkt-content__inner .luckyaff-infobox__text { color: var(--pkt-text-muted); }
.pkt-content__inner .luckyaff-infobox__text strong { color: var(--pkt-brand-dark); }

.pkt-content__inner .luckyaff-iconlist {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}
.pkt-content__inner .luckyaff-iconlist .luckyaff-listitem {
    color: var(--pkt-text-muted);
    margin: 0.55rem 0;
}
.pkt-content__inner .luckyaff-iconlist .luckyaff-listitem strong {
    color: var(--pkt-brand-dark);
}

.pkt-content__inner .luckyaff-image img {
    border-radius: 12px;
}
.pkt-content__inner .luckyaff-image[class*="mask"] img,
.pkt-content__inner .luckyaff-image--rounded img,
.pkt-content__inner .luckyaff-image--hexagon img {
    filter: drop-shadow(0 8px 22px rgba(27,19,22,0.08));
}

.pkt-content__inner .review-grid {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.pkt-content__inner .review-grid .grid-item {
    background: #fff !important;
    border: 1px solid var(--pkt-card-border) !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 10px rgba(27,19,22,0.04) !important;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.pkt-content__inner .review-grid .grid-item:hover {
    border-color: rgba(154,18,38,0.22) !important;
    box-shadow: 0 10px 28px rgba(27,19,22,0.08) !important;
    transform: translateY(-2px);
}
.pkt-content__inner .review-grid .grid-item .bg-light {
    background-color: var(--pkt-cream) !important;
    padding: 18px 16px 14px !important;
}
.pkt-content__inner .review-grid .grid-item .bg-light img {
    border-radius: 10px;
}
.pkt-content__inner .review-grid .grid-item .bg-light a[class*="flex-center"],
.pkt-content__inner .review-grid .grid-item .bg-light .text-dark.uppercase {
    color: var(--pkt-brand) !important;
    font-family: 'Sora', sans-serif !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
}
.pkt-content__inner .review-grid .grid-item .text-neutral {
    color: var(--pkt-text-soft) !important;
    font-family: 'Sora', sans-serif;
    font-size: 11px !important;
    letter-spacing: 0.08em;
}
.pkt-content__inner .review-grid .grid-item .text-2xl {
    font-family: 'Sora', sans-serif !important;
    font-size: clamp(15px, 1.6vw, 18px) !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    color: var(--pkt-text-dark);
    padding: 0 6px !important;
}
.pkt-content__inner .review-grid .grid-item .text-dark.text-center {
    padding-top: 14px;
    padding-bottom: 14px;
}
.pkt-content__inner .review-grid .grid-item .text-star,
.pkt-content__inner .review-grid .grid-item .text-star svg,
.pkt-content__inner .review-grid .grid-item .text-star i,
.pkt-content__inner .review-grid .grid-item .text-star span {
    color: var(--pkt-accent) !important;
    fill: var(--pkt-accent) !important;
}
.pkt-content__inner .review-grid .grid-item .text-star strong,
.pkt-content__inner .review-grid .grid-item .text-star b,
.pkt-content__inner .review-grid .grid-item .text-star .stars-value,
.pkt-content__inner .review-grid .grid-item .text-star .stars__value {
    color: var(--pkt-text-dark) !important;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
}
.pkt-content__inner .review-grid .grid-item a[href*="kategoria"],
.pkt-content__inner .review-grid .grid-item a[href*="pelit"],
.pkt-content__inner .review-grid .grid-item .flex.flex-wrap a,
.pkt-content__inner .review-grid .grid-item .flex-wrap a {
    color: var(--pkt-text-muted) !important;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
}
.pkt-content__inner .review-grid .grid-item .flex.flex-wrap a:hover,
.pkt-content__inner .review-grid .grid-item .flex-wrap a:hover {
    color: var(--pkt-brand) !important;
}
/* "Kaikki pelit" — brand red link for the all-games popup trigger. */
.pkt-content__inner .review-grid .grid-item a[data-str="all_games_popup_link"],
.pkt-content__inner .review-grid .grid-item .all-games-link {
    color: var(--pkt-brand) !important;
    font-weight: 700;
}

.pkt-content__inner ul.review-table {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.pkt-content__inner .review-table .table-item {
    background: #fff !important;
    border: 1px solid var(--pkt-card-border) !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 10px rgba(27,19,22,0.04) !important;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.pkt-content__inner .review-table .table-item:hover {
    border-color: rgba(154,18,38,0.22) !important;
    box-shadow: 0 10px 28px rgba(27,19,22,0.08) !important;
    transform: translateY(-2px);
}
.pkt-content__inner .review-table[data-highlight="true"] .table-item:first-child {
    border: 2px solid var(--color-table-highlight, var(--pkt-accent)) !important;
    box-shadow: 0 4px 16px rgba(244,193,69,0.18) !important;
}
.pkt-content__inner .review-table .table-item .bg-light {
    background-color: var(--pkt-cream) !important;
    padding: 18px 16px !important;
}
.pkt-content__inner .review-table .table-item .bg-light img {
    border-radius: 10px;
}
.pkt-content__inner .review-table .table-item .bg-light a[class*="flex-center"],
.pkt-content__inner .review-table .table-item .bg-light .text-dark.uppercase {
    color: var(--pkt-brand) !important;
    font-family: 'Sora', sans-serif !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
}
.pkt-content__inner .review-table .table-item .text-neutral {
    color: var(--pkt-text-soft) !important;
    font-family: 'Sora', sans-serif;
    font-size: 11px !important;
    letter-spacing: 0.08em;
}
.pkt-content__inner .review-table .table-item .text-2xl {
    font-family: 'Sora', sans-serif !important;
    font-size: clamp(16px, 2vw, 20px) !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    color: var(--pkt-text-dark);
}
.pkt-content__inner .review-table .table-item .text-success {
    color: var(--pkt-green-dark) !important;
}
/* Casino name */
.pkt-content__inner .review-table .table-item .table--name {
    font-family: 'Sora', sans-serif;
    color: var(--pkt-text-dark);
    font-weight: 700 !important;
    font-size: 14.5px !important;
    letter-spacing: 0.04em;
}
.pkt-content__inner .review-table .table-item .text-star,
.pkt-content__inner .review-table .table-item .text-star svg,
.pkt-content__inner .review-table .table-item .text-star span {
    color: var(--pkt-accent) !important;
    fill: var(--pkt-accent) !important;
}
.pkt-content__inner .review-table .table-item .text-star strong {
    color: var(--pkt-text-dark) !important;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
}
.pkt-content__inner .review-table .table-item .button-casino__outline {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 14px 18px !important;
    background-color: var(--pkt-brand) !important;
    background-image: linear-gradient(180deg, var(--pkt-brand) 0%, var(--pkt-brand-dark) 100%) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 12px !important;
    font-family: 'Sora', sans-serif !important;
    font-weight: 800 !important;
    font-size: 15.5px !important;
    letter-spacing: 0.01em !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: none !important;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18) !important;
    transition: filter .18s ease, box-shadow .18s ease !important;
}
.pkt-content__inner .review-table .table-item .button-casino__outline:hover {
    filter: brightness(1.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 6px 18px rgba(110,15,29,0.25) !important;
}

.pkt-content__inner .review-grid .grid-item .button-casino:not(.button-casino__outline) {
    display: block !important;
    width: 100% !important;
    padding: 14px 18px !important;
    margin-top: auto !important;
    background-color: var(--pkt-brand) !important;
    background-image: linear-gradient(180deg, var(--pkt-brand) 0%, var(--pkt-brand-dark) 100%) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 0 0 16px 16px !important;
    font-family: 'Sora', sans-serif !important;
    font-weight: 800 !important;
    font-size: 15.5px !important;
    letter-spacing: 0.01em !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: none !important;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
    transition: filter .18s ease, box-shadow .18s ease !important;
}
.pkt-content__inner .review-grid .grid-item .button-casino:not(.button-casino__outline):hover {
    filter: brightness(1.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 6px 18px rgba(110,15,29,0.25);
}

.pkt-content__inner button.button-casino__outline,
.pkt-content__inner .button-casino.button-casino__outline {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content !important;
    max-width: 340px;
    margin: 24px auto 16px !important;
    padding: 14px 30px !important;
    background: #fff !important;
    background-image: none !important;
    color: var(--pkt-brand-dark) !important;
    border: 1.5px solid #d8c9b8 !important;
    border-radius: 12px !important;
    font-family: 'Sora', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(27,19,22,0.04) !important;
    transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease !important;
}
.pkt-content__inner button.button-casino__outline:hover,
.pkt-content__inner .button-casino.button-casino__outline:hover {
    border-color: var(--pkt-brand-dark) !important;
    background: #fff8ef !important;
    color: var(--pkt-brand) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(110,15,29,0.08) !important;
}

.pkt-content__inner .listing-tools {
    margin: 1.25rem 0 0.85rem;
    gap: 8px;
    justify-content: flex-start !important;
}

.pkt-content__inner .listing-tools > span:first-child {
    font-family: 'Sora', sans-serif !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pkt-text-soft) !important;
    display: inline-flex; align-items: center;
    gap: 6px;
    padding: 0 8px 0 0 !important;
}
.pkt-content__inner .listing-tools > span:first-child svg {
    color: var(--pkt-accent);
    width: 14px; height: 14px;
}

.pkt-content__inner .spinoko-listing--sort-button {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 9px 16px !important;
    margin: 0 !important;
    background: #fff !important;
    color: var(--pkt-text-dark) !important;
    border: 1.5px solid var(--pkt-card-border) !important;
    border-radius: 999px !important;
    font-family: 'Sora', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    letter-spacing: 0.01em !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease !important;
}
.pkt-content__inner .spinoko-listing--sort-button:hover {
    border-color: var(--pkt-brand) !important;
    color: var(--pkt-brand) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(110,15,29,0.08) !important;
}

.pkt-content__inner .spinoko-listing--sort-button.sorted {
    background: var(--pkt-brand) !important;
    background-image: linear-gradient(180deg, var(--pkt-brand) 0%, var(--pkt-brand-dark) 100%) !important;
    border-color: var(--pkt-brand-dark) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(110,15,29,0.22) !important;
}
.pkt-content__inner .spinoko-listing--sort-button.sorted:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(110,15,29,0.32) !important;
    filter: brightness(1.05);
}

.pkt-content__inner .spinoko-listing--sort-button .arrow {
    display: inline-block;
    width: 12px; height: 12px;
    padding-left: 0 !important;
    position: relative;
    color: inherit;
}
.pkt-content__inner .spinoko-listing--sort-button.sorted .arrow::before {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 6px; height: 6px;
    border-right: 2px solid var(--pkt-accent);
    border-bottom: 2px solid var(--pkt-accent);
    transform: translate(-50%, -65%) rotate(45deg); /* down arrow (desc) */
    transition: transform .18s ease;
}
.pkt-content__inner .spinoko-listing--sort-button.sorted.asc .arrow::before,
.pkt-content__inner .spinoko-listing--sort-button.sorted[data-direction="asc"] .arrow::before {
    transform: translate(-50%, -35%) rotate(-135deg);
}

.pkt-content__inner .luckyaff-row {
    margin: 1.75rem 0;
}
.pkt-content__inner .luckyaff-row .luckyaff-column > :first-child {
    margin-top: 0;
}

.pkt-content__inner .faqs {
    list-style: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 1.25rem 0 1.5rem;
}
.pkt-content__inner .faqs .faq {
    border: 1px solid var(--pkt-card-border);
    border-top: 1px solid var(--pkt-card-border);  /* override theme's border-t reset */
    border-radius: 14px;
    background: #fff;
    margin: 0 0 10px;
    padding: 0;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    overflow: hidden;
}
.pkt-content__inner .faqs .faq:hover {
    border-color: rgba(154,18,38,0.22);
    box-shadow: 0 4px 14px rgba(27,19,22,0.05);
}
.pkt-content__inner .faqs .faq-question {
    position: relative;
    padding: 16px 56px 16px 20px;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--pkt-text-dark);
    line-height: 1.4;
}
.pkt-content__inner .faqs .faq-question.faq-question__toggle:hover {
    background: rgba(244,193,69,0.04);
}
.pkt-content__inner .faqs .faq-question .font-bold {
    font-weight: 700;
}
.pkt-content__inner .faqs .faq-question > span:last-child {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pkt-accent);
    transition: transform .18s ease;
    line-height: 0;
}
.pkt-content__inner .faqs .faq-question .faq-arrow svg,
.pkt-content__inner .faqs .faq-question .faq-arrow {
    width: 22px;
    height: 22px;
    color: inherit;
}
.pkt-content__inner .faqs .faq-question .faq-arrow.hidden { display: none; }

.pkt-content__inner .faqs .faq:has(.faq-answer:not(.hidden)) .faq-question > span:last-child {
    transform: translateY(-50%) rotate(180deg);
}
.pkt-content__inner .faqs .faq-answer {
    padding: 0 20px 18px;
    color: var(--pkt-text-muted);
    font-size: 15px;
    line-height: 1.65;
}
.pkt-content__inner .faqs .faq-answer.hidden { display: none; }
.pkt-content__inner .faqs .faq-answer p { margin: 0 0 0.5rem; color: inherit; }
.pkt-content__inner .faqs .faq-answer p:last-child { margin-bottom: 0; }
.pkt-content__inner .faqs .faq-answer a {
    color: var(--pkt-brand);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pkt-content__inner p a:not([class]) {
    background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
    background-size: 0 100%;
    background-repeat: no-repeat;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    transition: text-decoration-color .18s ease;
}

@media (min-width: 1024px) {
    .pkt-content__inner h2 { margin-top: 3rem; padding-left: 20px; }
    .pkt-content__inner h2::before { width: 5px; height: 0.75em; }
    .pkt-content__inner h2 + p { font-size: 16px; }
    .pkt-content__inner .wp-block-table table { font-size: 16px; }
    .pkt-content__inner .luckyaff-infobox { padding: 1.5rem 1.85rem !important; }
}

/* ─── Header menu (desktop nav + mobile drawer) ────────────────── */

.pkt-hero__nav-menu {
    display: none;
}
.pkt-hero__nav-list,
.pkt-hero__drawer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Desktop nav links — visible at ≥ 1024px */
@media (min-width: 1024px) {
    .pkt-hero__nav-menu {
        display: flex;
        flex: 1;
        justify-content: center;
    }
    .pkt-hero__nav-list {
        display: flex;
        align-items: center;
        gap: 22px;
    }
    .pkt-hero__nav-list > li {
        position: relative;
    }
    .pkt-hero__nav-list a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 8px 4px;
        font-family: 'Sora', sans-serif;
        font-weight: 600;
        font-size: 15px;
        color: var(--pkt-cream);
        text-decoration: none;
        transition: color .15s ease;
    }
    .pkt-hero__nav-list a:hover,
    .pkt-hero__nav-list .current-menu-item > a,
    .pkt-hero__nav-list .current-menu-ancestor > a {
        color: var(--pkt-accent);
    }
    .pkt-hero__nav-list a .spinoko-menu-icon-wrap { color: var(--pkt-accent); }
    .pkt-hero__nav-list .menu-item-has-children > a::after {
        content: "";
        display: inline-block;
        width: 6px; height: 6px;
        margin-left: 4px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translateY(-2px);
        opacity: .7;
    }
    .pkt-hero__nav-list .sub-menu {
        list-style: none;
        margin: 0;
        padding: 8px;
        position: absolute;
        top: calc(100% + 14px); /* gap absorbs the caret + hover bridge */
        left: 50%;
        min-width: 260px;
        background:
            linear-gradient(180deg,
                rgba(46, 12, 22, 0.96) 0%,
                rgba(34, 6, 16, 0.97) 100%);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        border: 1px solid rgba(244, 193, 69, 0.18);
        border-radius: 16px;
        box-shadow:
            0 24px 60px -20px rgba(0, 0, 0, 0.7),
            0 8px 16px -8px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(8px) scale(0.97);
        transform-origin: top center;
        transition:
            opacity .22s cubic-bezier(.22,.8,.28,1),
            transform .26s cubic-bezier(.22,.8,.28,1),
            visibility 0s linear .22s;
        z-index: 60;
    }
    .pkt-hero__nav-list .sub-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 12px; height: 12px;
        background: linear-gradient(135deg, rgba(46, 12, 22, 0.96), rgba(40, 9, 19, 0.97));
        border-top: 1px solid rgba(244, 193, 69, 0.18);
        border-left: 1px solid rgba(244, 193, 69, 0.18);
        border-top-left-radius: 3px;
        z-index: -1;
    }
    .pkt-hero__nav-list .sub-menu::after {
        content: '';
        position: absolute;
        left: 0; right: 0;
        top: -14px;
        height: 14px;
        background: transparent;
    }
    .pkt-hero__nav-list li:hover > .sub-menu,
    .pkt-hero__nav-list li:focus-within > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0) scale(1);
        transition:
            opacity .22s cubic-bezier(.22,.8,.28,1),
            transform .26s cubic-bezier(.22,.8,.28,1),
            visibility 0s linear;
    }
    .pkt-hero__nav-list .sub-menu li {
        list-style: none;
        margin: 0;
        position: relative;
    }
    .pkt-hero__nav-list .sub-menu a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px 10px 16px;
        font-family: 'Sora', sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: rgba(243, 233, 221, 0.78);
        text-decoration: none;
        border-radius: 10px;
        position: relative;
        white-space: nowrap;
        transition:
            color .16s ease,
            background-color .18s ease,
            padding-left .22s cubic-bezier(.22,.8,.28,1);
    }
    .pkt-hero__nav-list .sub-menu a::before {
        content: '';
        position: absolute;
        left: 6px;
        top: 50%;
        width: 3px;
        height: 60%;
        background: var(--pkt-accent);
        border-radius: 3px;
        transform: translateY(-50%) scaleY(0);
        transform-origin: center;
        transition: transform .22s cubic-bezier(.22,.8,.28,1);
    }
    .pkt-hero__nav-list .sub-menu a:hover,
    .pkt-hero__nav-list .sub-menu a:focus-visible {
        color: var(--pkt-cream);
        background-color: rgba(244, 193, 69, 0.08);
        padding-left: 22px;
    }
    .pkt-hero__nav-list .sub-menu a:hover::before,
    .pkt-hero__nav-list .sub-menu a:focus-visible::before {
        transform: translateY(-50%) scaleY(1);
    }
    .pkt-hero__nav-list .sub-menu .current-menu-item > a,
    .pkt-hero__nav-list .sub-menu .current-menu-ancestor > a {
        color: var(--pkt-accent);
        background-color: rgba(244, 193, 69, 0.10);
        padding-left: 22px;
    }
    .pkt-hero__nav-list .sub-menu .current-menu-item > a::before,
    .pkt-hero__nav-list .sub-menu .current-menu-ancestor > a::before {
        transform: translateY(-50%) scaleY(1);
    }
    .pkt-hero__nav-list .sub-menu a .spinoko-menu-icon-wrap {
        color: var(--pkt-accent);
        margin-right: 2px;
        flex-shrink: 0;
    }
    .pkt-hero__nav-list li:hover > .sub-menu > li,
    .pkt-hero__nav-list li:focus-within > .sub-menu > li {
        animation: pkt-submenu-item-in .28s cubic-bezier(.22,.8,.28,1) backwards;
    }
    .pkt-hero__nav-list li:hover > .sub-menu > li:nth-child(1),
    .pkt-hero__nav-list li:focus-within > .sub-menu > li:nth-child(1) { animation-delay: 0.02s; }
    .pkt-hero__nav-list li:hover > .sub-menu > li:nth-child(2),
    .pkt-hero__nav-list li:focus-within > .sub-menu > li:nth-child(2) { animation-delay: 0.05s; }
    .pkt-hero__nav-list li:hover > .sub-menu > li:nth-child(3),
    .pkt-hero__nav-list li:focus-within > .sub-menu > li:nth-child(3) { animation-delay: 0.08s; }
    .pkt-hero__nav-list li:hover > .sub-menu > li:nth-child(4),
    .pkt-hero__nav-list li:focus-within > .sub-menu > li:nth-child(4) { animation-delay: 0.11s; }
    .pkt-hero__nav-list li:hover > .sub-menu > li:nth-child(5),
    .pkt-hero__nav-list li:focus-within > .sub-menu > li:nth-child(5) { animation-delay: 0.14s; }
    .pkt-hero__nav-list li:hover > .sub-menu > li:nth-child(6),
    .pkt-hero__nav-list li:focus-within > .sub-menu > li:nth-child(6) { animation-delay: 0.17s; }
    .pkt-hero__nav-list li:hover > .sub-menu > li:nth-child(n+7),
    .pkt-hero__nav-list li:focus-within > .sub-menu > li:nth-child(n+7) { animation-delay: 0.2s; }
    @keyframes pkt-submenu-item-in {
        0%   { opacity: 0; transform: translateX(-4px); }
        100% { opacity: 1; transform: translateX(0); }
    }
    .pkt-hero__burger { display: none; }
}

/* Mobile burger button — visible < 1024px */
.pkt-hero__burger {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--pkt-cream);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background .15s ease;
}
.pkt-hero__burger:hover { background: rgba(255, 255, 255, .08); }
.pkt-hero__burger:focus-visible {
    outline: 2px solid var(--pkt-accent);
    outline-offset: 2px;
}

/* Mobile drawer (≤ 1023px) */
.pkt-hero__drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 360px);
    height: 100vh;
    height: 100dvh;
    background: var(--pkt-bg-dark);
    border-left: 1px solid rgba(255, 255, 255, .08);
    box-shadow: none;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1),
                box-shadow .35s ease;
    z-index: 1000;
    padding: 64px 18px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.pkt-hero__drawer.is-open {
    transform: translateX(0);
    box-shadow: -20px 0 40px -10px rgba(0, 0, 0, .5);
}
.pkt-hero__drawer-close {
    position: absolute;
    top: 14px;
    right: 14px;
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--pkt-cream);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background .15s ease;
}
.pkt-hero__drawer-close:hover { background: rgba(255, 255, 255, .08); }
.pkt-hero__drawer-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pkt-hero__drawer-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--pkt-cream);
    text-decoration: none;
    border-radius: 8px;
    transition: background .15s ease, color .15s ease;
}
.pkt-hero__drawer-list a:hover,
.pkt-hero__drawer-list .current-menu-item > a {
    color: var(--pkt-accent);
    background: rgba(244, 193, 69, .08);
}
.pkt-hero__drawer-list .spinoko-menu-icon-wrap { color: var(--pkt-accent); }
.pkt-hero__drawer-list .sub-menu {
    list-style: none;
    margin: 4px 0 8px 24px;
    padding: 0;
    border-left: 2px solid rgba(244, 193, 69, .3);
    padding-left: 10px;
}
.pkt-hero__drawer-list .sub-menu a {
    padding: 10px 12px;
    font-size: 14px;
    color: rgba(243, 233, 221, .72);
}
.pkt-hero__drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.pkt-hero__drawer-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}
@media (min-width: 1024px) {
    .pkt-hero__drawer,
    .pkt-hero__drawer-overlay { display: none; }
}

.pkt-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 80;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: 0 6px 22px rgba(0,0,0,0);
    transition:
        background-color 0.32s cubic-bezier(.22,.8,.28,1),
        border-color 0.32s ease,
        box-shadow 0.32s ease,
        backdrop-filter 0.32s ease,
        top 0.2s ease;
}
.pkt-header.is-scrolled {
    background-color: rgba(34, 6, 16, 0.92);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom-color: rgba(244,193,69,0.12);
    box-shadow: 0 6px 22px rgba(0,0,0,0.18);
}

.admin-bar .pkt-header { top: 32px; }
.admin-bar .pkt-hero__body { padding-top: calc(78px + 32px); }
.admin-bar .pkt-hero__drawer { top: 32px; height: calc(100vh - 32px); height: calc(100dvh - 32px); }
.admin-bar .pkt-hero__drawer-overlay { top: 32px; }
@media (min-width: 1024px) {
    .admin-bar .pkt-hero__body { padding-top: calc(86px + 32px); }
}
@media screen and (max-width: 782px) {
    .admin-bar .pkt-header { top: 46px; }
    .admin-bar .pkt-hero__body { padding-top: calc(78px + 46px); }
    .admin-bar .pkt-hero__drawer { top: 46px; height: calc(100vh - 46px); height: calc(100dvh - 46px); }
    .admin-bar .pkt-hero__drawer-overlay { top: 46px; }
}
.pkt-header .pkt-hero__topbar { border-bottom: 0; }
.pkt-header .pkt-hero__nav    { border-bottom: 0; }

.pkt-header.is-scrolled .pkt-hero__logo,
.pkt-header.is-scrolled .pkt-hero__nav-brand img {
    transform: scale(0.94);
    transition: transform 0.32s cubic-bezier(.22,.8,.28,1);
}
.pkt-hero__logo,
.pkt-hero__nav-brand img {
    transition: transform 0.32s cubic-bezier(.22,.8,.28,1);
    transform-origin: left center;
}

.pkt-hero__cta {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--pkt-accent);
    color: #1b1316;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(244,193,69,0.32);
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease, opacity .22s ease;
    opacity: 0;
}
.pkt-hero__cta:hover {
    transform: translateY(-1px);
    background: var(--pkt-accent-dark);
    box-shadow: 0 6px 18px rgba(224,160,32,0.42);
}

@media (max-width: 1023.98px) {
    .pkt-header.is-scrolled .pkt-hero__topbar {
        display: flex;
        justify-content: flex-start;
        gap: 10px;
    }
    .pkt-header.is-scrolled .pkt-hero__logo-link {
        order: 1;
        margin-right: auto; /* pushes everything else to the right */
        justify-self: auto; /* clear the grid alignment */
    }
    .pkt-header.is-scrolled .pkt-hero__topbar-right {
        order: 3;
        justify-self: auto;
    }
    .pkt-header.is-scrolled .pkt-hero__age {
        display: none;
    }
    .pkt-header.is-scrolled .pkt-hero__cta {
        display: inline-flex;
        opacity: 1;
        order: 2;
        animation: pkt-cta-pop 0.36s cubic-bezier(.22,.8,.28,1) both;
    }
    .pkt-header.is-scrolled .pkt-hero__burger {
        order: 4;
        width: 38px; height: 38px;
    }
}

.pkt-hero__search,
.pkt-hero__nav-search {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    padding: 0;
    border-radius: 50%;
    background: rgba(244, 193, 69, 0.08);
    border: 1.5px solid rgba(244, 193, 69, 0.28);
    color: var(--pkt-cream);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease,
                color 0.15s ease, transform 0.15s ease;
}
.pkt-hero__search:hover,
.pkt-hero__nav-search:hover {
    background: rgba(244, 193, 69, 0.16);
    border-color: var(--pkt-accent);
    color: var(--pkt-accent);
    transform: scale(1.05);
}
.pkt-hero__search:focus-visible,
.pkt-hero__nav-search:focus-visible {
    outline: 2px solid var(--pkt-accent);
    outline-offset: 2px;
}
.pkt-hero__nav-search { display: none; }
@media (min-width: 1024px) {
    .pkt-hero__search { display: none; }
    .pkt-hero__nav-search {
        display: grid;
        place-items: center;
    }
}

@keyframes pkt-cta-pop {
    0%   { transform: translateY(4px) scale(0.92); opacity: 0; }
    100% { transform: translateY(0)   scale(1);    opacity: 1; }
}

/* Print + reduced motion */
@media (prefers-reduced-motion: reduce) {
    .pkt-hero__update svg { animation: none; }
    .pkt-row { transition: none; }
    .pkt-hero__drawer { transition: none; }
    .pkt-header,
    .pkt-header.is-scrolled .pkt-hero__logo,
    .pkt-header.is-scrolled .pkt-hero__nav-brand img {
        transition: background-color 0.18s ease;
        transform: none;
    }
}


/* =============================================================== *
 * Casino Cover 2026 - single-casino review page.
 *
 * Three sections live below the shared .pkt-header:
 *   1. .pkt-hero--review - brand hero (gold logo crest, name h1,
 *      stars + verdict, bonus headline, Pelaa CTA, T&C line, pill row).
 *   2. .pkt-review-grid - 3-card Info / Pros / Cons grid (matches
 *      the redesign card language; mobile stack -> desktop 3-col).
 *   3. .pkt-review-bottom - final cloaked Pelaa CTA + legal line.
 *
 * The_content() between (2) and (3) inherits the existing
 * `.pkt-content__inner` typography rules - no review-specific overrides.
 * =============================================================== */

/* --- Review hero ---------------------------------------------- */

.pkt-hero__body--review {
    position: relative; z-index: 4;
    text-align: center;
    padding: 90px 16px 28px;
}

.pkt-review-hero__crest {
    display: flex; justify-content: center;
    margin-bottom: 18px;
}
.pkt-review-hero__logo {
    width: 168px; height: 96px;
    border-radius: 16px;
    border: 2px solid var(--pkt-accent);
    box-shadow: 0 18px 36px -16px rgba(0,0,0,0.55);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    padding: 10px 14px;
}
.pkt-review-hero__logo picture { display: contents; }
.pkt-review-hero__logo-img,
.pkt-review-hero__logo img {
    max-width: 100%;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.pkt-review-hero__h1 {
    margin: 0 auto;
    text-wrap: balance;
    max-width: 22ch;
}

.pkt-review-hero__rating {
    display: flex; flex-wrap: wrap;
    justify-content: center; align-items: center;
    gap: 10px;
    margin-top: 16px;
}
.pkt-review-hero__rating .pkt-stars {
    font-size: 22px;
    line-height: 1;
}
.pkt-review-hero__score {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    color: #fff;
}
.pkt-review-hero__score-num { font-size: 22px; }
.pkt-review-hero__score-max {
    font-size: 13px;
    color: rgba(243,233,221,0.55);
    margin-left: 1px;
}
.pkt-review-hero__verdict {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
}

.pkt-review-hero__bonus-wrap {
    margin: 24px auto 0;
    max-width: 480px;
}
.pkt-review-hero__bonus-label {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pkt-accent);
    background: rgba(244,193,69,0.10);
    border: 1px solid rgba(244,193,69,0.28);
    padding: 4px 12px;
    border-radius: 999px;
}
.pkt-review-hero__bonus {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 4.4vw, 32px);
    line-height: 1.15;
    color: #fff;
    margin-top: 10px;
    text-wrap: balance;
}

.pkt-review-hero__pills {
    display: flex; flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 18px auto 0;
    max-width: 580px;
}
.pkt-review-hero__pill {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(243,233,221,0.92);
}
.pkt-review-hero__pill--gold { color: var(--pkt-accent); border-color: rgba(244,193,69,0.32); background: rgba(244,193,69,0.10); }
.pkt-review-hero__pill--green { color: #5ce39b; border-color: rgba(31,184,102,0.32); background: rgba(31,184,102,0.10); }
.pkt-review-hero__pill--neutral { color: rgba(243,233,221,0.78); }

.pkt-review-hero__cta-wrap {
    margin: 26px auto 0;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.pkt-review-hero__cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pkt-brand-dark), var(--pkt-brand));
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 16px 32px -10px rgba(154,18,38,0.6);
    transition: transform .18s ease, box-shadow .18s ease;
    cursor: pointer;
}
.pkt-review-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(154,18,38,0.7);
}
.pkt-review-hero__cta--closed {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(243,233,221,0.6);
    cursor: not-allowed;
    box-shadow: none;
}
.pkt-review-hero__terms {
    display: block;
    font-size: 11.5px;
    color: rgba(243,233,221,0.55);
    line-height: 1.5;
    text-align: center;
}
.pkt-review-hero__terms a,
.pkt-review-hero__terms .terms-trigger {
    color: rgba(243,233,221,0.72);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}
.pkt-review-hero__terms--link { font-size: 12.5px; }

/* --- Review grid (Info / Pros / Cons) ------------------------ */

.pkt-review-grid {
    background: var(--pkt-bg-light);
    padding: 22px 16px 8px;
}
.pkt-review-grid__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.pkt-info-card {
    background: #fff;
    border: 1px solid var(--pkt-card-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px -12px rgba(44,6,14,0.18);
}
.pkt-info-card__head {
    display: flex; align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.pkt-info-card__head-icon {
    display: grid; place-items: center;
    width: 24px; height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
}
.pkt-info-card--info .pkt-info-card__head {
    background: var(--pkt-cream);
    color: var(--pkt-text-dark);
}
.pkt-info-card--info .pkt-info-card__head-icon {
    background: var(--pkt-accent);
    color: #2c060e;
}
.pkt-info-card--pros .pkt-info-card__head {
    background: rgba(31,184,102,0.10);
    color: var(--pkt-green-dark);
}
.pkt-info-card--pros .pkt-info-card__head-icon {
    background: var(--pkt-green);
    color: #fff;
}
.pkt-info-card--cons .pkt-info-card__head {
    background: rgba(154,18,38,0.08);
    color: var(--pkt-brand-dark);
}
.pkt-info-card--cons .pkt-info-card__head-icon {
    background: var(--pkt-brand);
    color: #fff;
}

.pkt-info-card__list {
    list-style: none;
    margin: 0;
    padding: 12px 16px 16px;
}
.pkt-info-card__row {
    display: flex; align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--pkt-card-border);
    font-size: 14px;
}
.pkt-info-card__row:last-child { border-bottom: 0; }
.pkt-info-card__row-label {
    color: var(--pkt-text-muted);
    flex-shrink: 0;
}
.pkt-info-card__row-value {
    font-weight: 700;
    color: var(--pkt-text-dark);
    text-align: right;
}
.pkt-info-card__row-value a {
    color: var(--pkt-brand);
    text-decoration: none;
    border-bottom: 1px dashed var(--pkt-brand);
}
.pkt-info-card__row-value a:hover { color: var(--pkt-brand-dark); border-bottom-color: var(--pkt-brand-dark); }

.pkt-info-card__list--bullets { padding: 14px 16px 16px; }
.pkt-info-card__bullet {
    display: flex; align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.45;
    color: var(--pkt-text-dark);
}
.pkt-info-card__bullet svg { flex-shrink: 0; margin-top: 3px; }
.pkt-info-card__bullet--pro svg { color: var(--pkt-green); }
.pkt-info-card__bullet--con svg { color: var(--pkt-brand); }

/* --- Bottom CTA block ---------------------------------------- */

.pkt-review-bottom {
    padding: 8px 16px 40px;
}
.pkt-review-bottom__inner {
    max-width: 880px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2a0610 0%, #3b0917 100%);
    border: 1px solid rgba(244,193,69,0.18);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    color: #fff;
    box-shadow: 0 24px 50px -28px rgba(44,6,14,0.7);
    position: relative;
    overflow: hidden;
}
.pkt-review-bottom__inner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(60% 70% at 50% 0%, rgba(244,193,69,0.14) 0%, rgba(244,193,69,0) 70%);
    pointer-events: none;
}
.pkt-review-bottom__copy { position: relative; z-index: 1; }
.pkt-review-bottom__title {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 4vw, 28px);
    line-height: 1.15;
    margin: 0 0 8px;
    text-wrap: balance;
}
.pkt-review-bottom__lead {
    font-size: 15px;
    color: rgba(243,233,221,0.78);
    margin: 0 auto;
    max-width: 50ch;
    line-height: 1.5;
}
.pkt-review-bottom__cta-wrap {
    margin-top: 20px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.pkt-review-bottom__cta {
    display: inline-block;
    min-width: 240px;
    padding: 15px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pkt-accent), var(--pkt-accent-dark));
    color: #2c060e;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 16px 30px -10px rgba(224,160,32,0.6);
    transition: transform .18s ease, box-shadow .18s ease;
    cursor: pointer;
}
.pkt-review-bottom__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px -10px rgba(224,160,32,0.75);
}
.pkt-review-bottom__legal {
    font-size: 11.5px;
    color: rgba(243,233,221,0.5);
    letter-spacing: 0.02em;
}

/* --- Desktop layout (>= 1024px) ------------------------------ */

@media (min-width: 1024px) {
    .pkt-hero__body--review {
        max-width: 1240px;
        margin: 0 auto;
        padding: 110px 28px 36px;
    }
    .pkt-review-hero__logo {
        width: 220px; height: 124px;
        padding: 14px 18px;
    }
    .pkt-review-hero__logo-img,
    .pkt-review-hero__logo img { max-height: 96px; }
    .pkt-review-hero__h1 {
        font-size: clamp(38px, 4.8vw, 56px);
        line-height: 1.05;
    }
    .pkt-review-hero__bonus { font-size: clamp(28px, 3.4vw, 38px); }
    .pkt-review-hero__cta-wrap { max-width: 420px; }

    .pkt-review-grid { padding: 32px 28px 12px; }
    .pkt-review-grid__inner {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 18px;
    }
    .pkt-info-card__list,
    .pkt-info-card__list--bullets { padding: 14px 18px 18px; }
    .pkt-info-card__row,
    .pkt-info-card__bullet { font-size: 14.5px; }

    .pkt-review-bottom { padding: 16px 28px 60px; }
    .pkt-review-bottom__inner { padding: 40px 36px; }
    .pkt-review-bottom__cta-wrap {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
}


/* =============================================================== *
 * Casino Cover 2026 - 3-column hero panels.
 *
 * Replaces the previous vertically-stacked hero with the legacy
 * review hero rhythm: logo (with meta) | rating | bonus across the
 * top, CTA + T&C row beneath, pill badges last. Mobile stacks the
 * three panels vertically; >= 768px keeps them side by side.
 * =============================================================== */

.pkt-review-hero__panels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 22px auto 0;
    text-align: left;
}

.pkt-review-hero__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.pkt-review-hero__panel-label {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pkt-accent);
}

/* Panel 1 - logo crest + supplementary meta rows. */
.pkt-review-hero__panel--logo {
    align-items: center;
    text-align: center;
}
.pkt-review-hero__logo {
    width: 100%;
    max-width: 220px;
    height: 110px;
    border-radius: 14px;
    border: 2px solid var(--pkt-accent);
    box-shadow: 0 18px 36px -16px rgba(0,0,0,0.55);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    padding: 12px 16px;
}
.pkt-review-hero__logo picture { display: contents; }
.pkt-review-hero__logo-img,
.pkt-review-hero__logo img {
    max-width: 100%;
    max-height: 84px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.pkt-review-hero__panel-meta {
    margin-top: 4px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pkt-review-hero__panel-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    font-size: 13px;
    border-bottom: 1px dashed rgba(255,255,255,0.10);
    padding: 4px 2px;
}
.pkt-review-hero__panel-meta-row:last-child { border-bottom: 0; }
.pkt-review-hero__panel-meta-label {
    color: rgba(243,233,221,0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 11px;
}
.pkt-review-hero__panel-meta-value {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-align: right;
}

/* Panel 2 - rating block (label / big score / stars / verdict). */
.pkt-review-hero__panel--rating {
    align-items: center;
    text-align: center;
}
.pkt-review-hero__score-big {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Sora', sans-serif;
    color: #fff;
}
.pkt-review-hero__panel--rating .pkt-review-hero__score-num {
    font-size: clamp(40px, 7vw, 56px);
    font-weight: 800;
    line-height: 1;
}
.pkt-review-hero__panel--rating .pkt-review-hero__score-max {
    font-size: 18px;
    font-weight: 600;
    color: rgba(243,233,221,0.55);
}
.pkt-review-hero__panel--rating .pkt-stars {
    font-size: 26px;
    line-height: 1;
    margin-top: 4px;
}
.pkt-review-hero__panel--rating .pkt-review-hero__verdict {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    margin-top: 2px;
}

/* Panel 3 - bonus headline + supplementary tag (wager-free / wagering). */
.pkt-review-hero__panel--bonus {
    align-items: center;
    text-align: center;
}
.pkt-review-hero__panel--bonus .pkt-review-hero__bonus {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 4.4vw, 30px);
    line-height: 1.12;
    color: #fff;
    text-wrap: balance;
    margin: 0;
}
.pkt-review-hero__panel--bonus .pkt-review-hero__bonus strong {
    color: var(--pkt-accent);
}
.pkt-review-hero__bonus-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 12.5px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    margin-top: 2px;
}
.pkt-review-hero__bonus-tag--green { color: #5ce39b; border-color: rgba(31,184,102,0.32); background: rgba(31,184,102,0.10); }
.pkt-review-hero__bonus-tag--gold  { color: var(--pkt-accent); border-color: rgba(244,193,69,0.32); background: rgba(244,193,69,0.10); }

/* Pill row sits centered between the 3-col panels and the CTA wrap. */
.pkt-review-hero__pills { margin-top: 18px; }

/* Tablet + desktop - lay the panels out in 3 columns. */
@media (min-width: 768px) {
    .pkt-review-hero__panels {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;
        align-items: stretch;
    }
    .pkt-review-hero__panel {
        padding: 22px 18px;
    }
    .pkt-review-hero__panel--logo .pkt-review-hero__logo {
        max-width: 240px;
        height: 130px;
    }
    .pkt-review-hero__panel--logo .pkt-review-hero__logo-img,
    .pkt-review-hero__panel--logo .pkt-review-hero__logo img { max-height: 100px; }

    /* Vertical dividers between adjacent panels - reads as a single
     * unified info strip rather than 3 disconnected cards. */
    .pkt-review-hero__panel + .pkt-review-hero__panel::before {
        content: '';
        position: absolute;
        left: -8px; top: 18%; bottom: 18%;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(255,255,255,0.16), transparent);
        pointer-events: none;
    }
}

@media (min-width: 1024px) {
    .pkt-review-hero__panel {
        padding: 17px 22px;
        justify-content: center;
    }
    .pkt-review-hero__panel--logo .pkt-review-hero__logo {
        height: 140px;
    }
    .pkt-review-hero__panel--rating .pkt-review-hero__score-num {
        font-size: 64px;
    }
    .pkt-review-hero__panel--bonus .pkt-review-hero__bonus {
        font-size: clamp(26px, 2.6vw, 34px);
    }
}


/* =============================================================== *
 * Site-wide header (legacy-chrome pages without a dark hero).
 *
 * .pkt-header--solid is added by root header.php so the bar gets a
 * permanent dark background from page load. Without this modifier the
 * bar starts transparent (intended behaviour over a hero) and the
 * burger / menu text would be invisible against the legacy page's
 * beige body.
 *
 * .pkt-body--legacy is added by root header.php for the same reason —
 * legacy templates don't open a .pkt-home wrapper, so we reserve room
 * for the fixed header via a body-level top padding so the first
 * paragraph isn't tucked under the bar.
 * =============================================================== */

.pkt-header--solid {
    background-color: rgba(34, 6, 16, 0.96);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    backdrop-filter: saturate(160%) blur(14px);
    border-bottom-color: rgba(244,193,69,0.18);
    box-shadow: 0 6px 22px rgba(0,0,0,0.22);
}

/* Reserve room under the fixed header on legacy pages — the dark bar
 * is position:fixed and would otherwise overlap whatever content the
 * legacy template renders first (page title, breadcrumbs, content card).
 * 78px = topbar height on mobile, 86px on desktop, both observed from
 * the actual rendered bar. */
.pkt-body--legacy { padding-top: 78px; }
@media (min-width: 1024px) {
    .pkt-body--legacy { padding-top: 86px; }
}
/* admin bar lifts the fixed header — match the spacer. */
.admin-bar.pkt-body--legacy { padding-top: calc(78px + 32px); }
@media (min-width: 1024px) {
    .admin-bar.pkt-body--legacy { padding-top: calc(86px + 32px); }
}
@media screen and (max-width: 782px) {
    .admin-bar.pkt-body--legacy { padding-top: calc(78px + 46px); }
}


/* =============================================================== *
 * Casino Cover 2026 - hero polish + similar-casinos restyle.
 * =============================================================== */

/* H1 - dial back from the page-title scale used on the homepage hero.
 * On a review page the brand name is already given visual weight by
 * the gold-bordered logo crest below it - the H1 doesn't need to
 * dominate the viewport. Smaller H1 + tighter rhythm makes the
 * 3-panel info strip read first, which is the user's actual goal
 * (rating + bonus at a glance). */
.pkt-review-hero__h1 {
    font-size: clamp(22px, 3.6vw, 30px) !important;
    line-height: 1.15;
    margin-top: 0;
    max-width: 26ch;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 1024px) {
    .pkt-review-hero__h1 {
        font-size: clamp(26px, 2.6vw, 34px) !important;
    }
}

/* Bonus-panel terms - the popover trigger now lives inside the
 * bonus column, where it reads as "details about THIS bonus". Style
 * it as a discreet underlined chip that opens the standard terms
 * popover layout (already styled by SpinokoTerms). */
.pkt-review-hero__bonus-terms {
    display: block;
    margin-top: 4px;
    width: 100%;
    text-align: center;
}
.pkt-review-hero__bonus-terms [data-terms="true"],
.pkt-review-hero__bonus-terms .text-xs {
    font-size: 12px;
    color: rgba(243,233,221,0.78);
}
.pkt-review-hero__bonus-terms button[data-str="terms_text"] {
    appearance: none;
    background: transparent;
    border: 0;
    color: rgba(243,233,221,0.85);
    font-family: 'Manrope', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 4px 0 0;
    letter-spacing: 0.02em;
}
.pkt-review-hero__bonus-terms button[data-str="terms_text"]:hover {
    color: var(--pkt-accent);
}
.pkt-review-hero__bonus-terms .terms-content {
    display: block;
    margin-top: 5px;
    font-size: 11.5px;
    color: rgba(243,233,221,0.62);
    line-height: 1.4;
    font-style: italic;
}
.pkt-review-hero__bonus-terms[hidden],
.pkt-review-hero__bonus-terms .terms-content[hidden] {
    display: none;
}

/* CTA legal line - replaces the orphan T&C span that used to sit
 * here. Centered, muted, with a brand-tinted underline for the
 * peluuri link so it doesn't shout. */
.pkt-review-hero__cta-legal {
    display: block;
    font-size: 11.5px;
    color: rgba(243,233,221,0.45);
    letter-spacing: 0.02em;
    text-align: center;
}
.pkt-review-hero__cta-legal a {
    color: rgba(243,233,221,0.72);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.pkt-review-hero__cta-legal a:hover { color: var(--pkt-accent); }

/* =============================================================== *
 * .similar-casinos - "Vastaavat kasinot" suggestion grid restyle.
 *
 * The block is rendered by views/casino/similar-casinos.php with its
 * own inline <style>. The rules below override that legacy chrome on
 * pages where the redesign assets are loaded - section gains the same
 * card language as .pkt-row / .pkt-info-card (gold border on hover,
 * Sora display type, cream backdrop, branded CTA). Scoped under
 * .pkt-body so it only kicks in alongside the new chrome.
 * =============================================================== */

.pkt-body .similar-casinos {
    margin: 28px auto;
    padding: 0 16px;
    max-width: 1240px;
}
.pkt-body .similar-casinos__header {
    text-align: center;
    margin-bottom: 22px;
}
.pkt-body .similar-casinos__title {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.15;
    color: var(--pkt-text-dark);
    margin: 0 0 8px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}
.pkt-body .similar-casinos__title::before,
.pkt-body .similar-casinos__title::after {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--pkt-accent);
    border-radius: 2px;
    opacity: 0.85;
}
.pkt-body .similar-casinos__subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 14.5px;
    color: var(--pkt-text-muted);
    margin: 0;
    opacity: 1;
}
.pkt-body .similar-casinos__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .pkt-body .similar-casinos--cols-2 .similar-casinos__grid,
    .pkt-body .similar-casinos--cols-3 .similar-casinos__grid,
    .pkt-body .similar-casinos--cols-4 .similar-casinos__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .pkt-body .similar-casinos--cols-3 .similar-casinos__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .pkt-body .similar-casinos--cols-4 .similar-casinos__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }
}

/* Card chrome - matches .pkt-row / .pkt-info-card visual language */
.pkt-body .similar-casinos .grid-item {
    background: #fff;
    border: 1px solid var(--pkt-card-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px -14px rgba(44,6,14,0.18);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    display: flex;
    flex-direction: column;
}
.pkt-body .similar-casinos .grid-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px -22px rgba(44,6,14,0.4);
    border-color: var(--pkt-accent);
}

/* Logo strip (top of card) - cream backdrop, framed logo */
.pkt-body .similar-casinos__logo-wrap {
    background: var(--pkt-cream);
    padding: 18px 14px 14px;
    text-align: center;
    border-bottom: 1px solid var(--pkt-card-border);
    border-radius: 0;
}
.pkt-body .similar-casinos__logo-wrap picture { display: contents; }
.pkt-body .similar-casinos__logo-wrap img {
    max-height: 44px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}
.pkt-body .similar-casinos__review-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pkt-text-muted);
    text-decoration: none;
}
.pkt-body .similar-casinos__review-link:hover {
    color: var(--pkt-brand);
}

/* Rating + bonus body (middle of card) */
.pkt-body .similar-casinos .text-dark.text-center {
    padding: 14px 14px 4px;
    color: var(--pkt-text-dark);
    flex-grow: 1;
    background: #fff;
}

/* "TERVETULOBONUS" label */
.pkt-body .similar-casinos [data-str="bonus_heading"] {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pkt-accent);
    display: inline-block;
    background: rgba(244,193,69,0.10);
    border: 1px solid rgba(244,193,69,0.28);
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 6px;
}

/* Actual bonus text */
.pkt-body .similar-casinos .text-2xl {
    font-family: 'Sora', sans-serif !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    color: var(--pkt-text-dark) !important;
    margin: 4px 0 8px !important;
}

/* Star rating row */
.pkt-body .similar-casinos .text-star {
    font-size: 14px;
    margin: 6px 0 8px;
    color: var(--pkt-accent);
}

/* CTA Pelaa button (bottom of card) */
.pkt-body .similar-casinos .button-casino {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--pkt-brand-dark), var(--pkt-brand)) !important;
    color: #fff !important;
    font-family: 'Sora', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    letter-spacing: 0.02em;
    padding: 13px 16px !important;
    border-radius: 0 0 13px 13px !important;
    text-decoration: none;
    box-shadow: none !important;
    border: 0 !important;
    margin: 0 !important;
    transition: filter .18s ease;
}
.pkt-body .similar-casinos .button-casino:hover {
    filter: brightness(1.08);
}

/* Force off the legacy spinoko_shadow / spinoko_rounded inline classes
 * inside .similar-casinos so the redesign chrome wins */
.pkt-body .similar-casinos .grid-item.spinoko_shadow {
    box-shadow: 0 8px 22px -14px rgba(44,6,14,0.18);
}
.pkt-body .similar-casinos .grid-item.spinoko_rounded {
    border-radius: 14px;
}


/* =============================================================== *
 * Bonus terms - inline render override.
 *
 * Earlier rules treated .pkt-review-hero__bonus-terms as the popover
 * trigger (button + hidden content). Now it's a flat inline label/value
 * pair displayed directly. The legacy popover button styles are
 * neutralised in case some other code path still tries to render them
 * (compat with the homepage TOP-3 cards / the legacy hero-cover.php
 * popover anywhere on the redesign).
 * =============================================================== */

.pkt-review-hero__bonus-terms {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    font-family: 'Manrope', sans-serif;
    font-size: 11.5px;
    line-height: 1.35;
    color: rgba(243,233,221,0.78);
    text-align: center;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}
.pkt-review-hero__bonus-terms-label {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: rgba(243,233,221,0.55);
    white-space: nowrap;
}
.pkt-review-hero__bonus-terms-label::after {
    content: ':';
    margin-left: 1px;
    opacity: 0.6;
}
.pkt-review-hero__bonus-terms-value {
    font-weight: 600;
    font-size: 12.5px;
    color: #fff;
    letter-spacing: 0.01em;
}
.pkt-review-hero__bonus-terms-value strong {
    color: var(--pkt-accent);
    font-weight: 700;
}

/* If the legacy SpinokoTerms popover markup ever ends up inside our
 * bonus-terms wrapper (other callers may still pass --popover mode),
 * neutralise the button + show the hidden content as plain text. */
.pkt-review-hero__bonus-terms [data-terms="true"] {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}
.pkt-review-hero__bonus-terms button[data-str="terms_text"] {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    color: rgba(243,233,221,0.55);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    cursor: default;
    pointer-events: none;
}
.pkt-review-hero__bonus-terms button[data-str="terms_text"]::after {
    content: ':';
    margin-left: 1px;
    opacity: 0.6;
}
.pkt-review-hero__bonus-terms .terms-content {
    display: inline !important;   /* override the [hidden] attribute */
    font-weight: 600;
    font-size: 12.5px;
    color: #fff;
}
.pkt-review-hero__bonus-terms .terms-content[hidden] {
    display: inline !important;
}


/* similar-casinos__title fix.
 *
 * The .pkt-content__inner h2 typography rule sets:
 *   position: relative; padding-left: 18px; margin-top: 2.5rem;
 *   ::before { position: absolute; left: 0; top: 7px;
 *              width: 4px; height: 0.7em; background: accent; ... }
 *
 * The .similar-casinos block lives INSIDE .pkt-content__inner (it's
 * injected into the_content via filter), so the h2.similar-casinos__title
 * inherits that gold vertical marker bar - and my own rule for the
 * decorative side-rules combined with the absolute positioning made
 * the bar land on top of the first letter. Reset both the parent
 * positioning context AND the pseudo-element box so my flex layout
 * lays out cleanly. */

.pkt-content__inner .similar-casinos__title,
.pkt-body .similar-casinos__title {
    position: static;
    padding-left: 0;
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.pkt-content__inner .similar-casinos__title::before,
.pkt-content__inner .similar-casinos__title::after,
.pkt-body .similar-casinos__title::before,
.pkt-body .similar-casinos__title::after {
    content: '';
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: 28px;
    height: 2px;
    background: var(--pkt-accent);
    border-radius: 2px;
    opacity: 0.85;
    box-shadow: none;
    flex-shrink: 0;
}


/* =============================================================== *
 * Sticky-header Pelaa CTA - hardening against legacy .casino-button.
 *
 * When the cloaked CTA gets rendered via spinoko_aff_link() (which we
 * NO LONGER use - see header.php notes), the markup ends up with
 * `class="casino-aff casino-button pkt-hero__cta"`. The legacy
 * .casino-button class carries:
 *   • font-size: 1.25rem
 *   • padding: 1em 2em
 *   • line-height: ... (big)
 * which blows the sticky pill out of the topbar. Our header partial
 * now bypasses that path by calling spinoko_aff_link_protected_html()
 * directly (no `casino-button` injected), but this defensive override
 * makes sure the sticky CTA still looks right if some other code path
 * passes a casino_id through spinoko_aff_link() into our header slot.
 * =============================================================== */

.pkt-header .pkt-hero__cta,
.pkt-hero__topbar .pkt-hero__cta {
    /* Re-assert the sticky-CTA chrome regardless of what extra class
     * the cloaker tacked on. */
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 12px;
    border-radius: 9px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.02em;
    text-decoration: none;
    width: auto;
    max-width: none;
    height: auto;
    min-height: 0;
    text-transform: none;
    box-sizing: border-box;
    cursor: pointer;
}
.pkt-header .pkt-hero__cta svg,
.pkt-hero__topbar .pkt-hero__cta svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}
.pkt-hero__cta-label {
    display: inline-block;
    line-height: 1;
}


/* =============================================================== *
 * .casino-ratings-block - sub-rating block Gutenberg card, restyled.
 *
 * Legacy markup ships with tailwind-esque classes (bg-body,
 * spinoko_shadow, text-4xl, grid-cols-5) that don't match the
 * redesign card language and break word-wrap in the narrow
 * "Kokonaisarvosana" column (screenshot: "Kokonaisarvosa\nna").
 *
 * Override chain:
 *   1. Container: cream-tinted card w/ gold-tinged border + redesign
 *      shadow, matching .pkt-info-card + .similar-casinos cards.
 *   2. Left column: dashed-row list, Sora label left / stars right.
 *   3. Right column: gold-accented overall card, tighter Sora scale,
 *      hyphens off + text-wrap:balance so "Kokonaisarvosana" stays
 *      on one line whenever the container has room.
 *   4. Mobile: stack; both columns full-width, right column becomes
 *      a bordered strip above the list.
 * =============================================================== */

.pkt-body .casino-ratings-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 28px auto;
    max-width: 880px;
    padding: 0;
    background: #fff;
    border: 1px solid var(--pkt-card-border);
    border-radius: 16px;
    box-shadow: 0 12px 30px -18px rgba(44,6,14,0.24);
    overflow: hidden;
}

/* Left column - sub-rating rows */
.pkt-body .casino-ratings-block > ul {
    list-style: none;
    margin: 0;
    padding: 18px 20px;
    order: 2;   /* on mobile, list sits BELOW overall card */
}
.pkt-body .casino-ratings-block > ul > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--pkt-card-border);
    text-align: left;
    margin: 0;
}
.pkt-body .casino-ratings-block > ul > li:last-child { border-bottom: 0; }
.pkt-body .casino-ratings-block > ul > li > span:first-child {
    font-family: 'Sora', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    line-height: 1.2 !important;
    color: var(--pkt-text-dark) !important;
    display: inline !important;
}
.pkt-body .casino-ratings-block > ul > li > span:last-child {
    font-size: 16px;
    color: var(--pkt-accent);
    letter-spacing: 0.02em;
    flex-shrink: 0;
    display: inline !important;
}

/* Right column - overall rating card */
.pkt-body .casino-ratings-block > div {
    padding: 22px 20px !important;
    background: var(--pkt-cream) !important;
    border-radius: 0 !important;
    border-bottom: 1px solid var(--pkt-card-border);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    order: 1;   /* on mobile, overall card sits ABOVE the list */
    position: relative;
}
.pkt-body .casino-ratings-block > div::before {
    content: '';
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 3px;
    background: var(--pkt-accent);
    border-radius: 2px;
    opacity: 0.85;
}
.pkt-body .casino-ratings-block > div > span:first-child {
    display: block !important;
    font-family: 'Sora', sans-serif !important;
    font-weight: 800 !important;
    font-size: 18px !important;   /* was text-4xl - shrunk so single-word Finnish labels don't break */
    line-height: 1.15 !important;
    letter-spacing: -0.01em !important;
    color: var(--pkt-text-dark) !important;
    margin: 12px 0 8px !important;
    text-wrap: balance;
    hyphens: none;
    word-break: keep-all;
    max-width: 100%;
    padding: 0 8px;
}
.pkt-body .casino-ratings-block > div > span:last-child {
    font-size: 26px;
    color: var(--pkt-accent);
    letter-spacing: 0.02em;
    line-height: 1;
    display: block;
}
.pkt-body .casino-ratings-block > div > span:last-child .rating-value,
.pkt-body .casino-ratings-block > div > span:last-child + span,
.pkt-body .casino-ratings-block > div > span.text-star + span {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    color: var(--pkt-text-dark);
    font-size: 15px;
}

/* Desktop - side-by-side columns */
@media (min-width: 768px) {
    .pkt-body .casino-ratings-block {
        grid-template-columns: 3fr 2fr;
    }
    .pkt-body .casino-ratings-block > ul {
        order: 1;
        padding: 22px 24px;
        border-right: 1px solid var(--pkt-card-border);
    }
    .pkt-body .casino-ratings-block > div {
        order: 2;
        border-bottom: 0;
        padding: 24px 22px !important;
    }
    .pkt-body .casino-ratings-block > div > span:first-child {
        font-size: 20px !important;
    }
    .pkt-body .casino-ratings-block > div > span:last-child {
        font-size: 30px;
    }
}

/* Neutralise legacy chrome that could leak the old look */
.pkt-body .casino-ratings-block.spinoko_shadow,
.pkt-body .casino-ratings-block.spinoko_rounded,
.pkt-body .casino-ratings-block.bg-body {
    box-shadow: 0 12px 30px -18px rgba(44,6,14,0.24);
    border-radius: 16px;
    background: #fff;
}


/* =============================================================== *
 * SpinokoTerms popover -> inline label:value (global).
 *
 * SpinokoTerms(popover mode) emits this markup EVERYWHERE it's used:
 *
 *   <span class="text-xs ..." data-terms="true">
 *       <span>
 *           <button aria-expanded="false" data-str="terms_text">
 *               Kierratys
 *           </button>
 *       </span>
 *       <span class="terms-content" hidden>35x (Bonus)</span>
 *   </span>
 *
 * Default UX: click the button, JS toggles the hidden attribute on
 * .terms-content, floating tooltip appears. That tooltip is un-styled
 * on the redesign - a raw text overlay dropping on top of neighboring
 * cards (see the casinos-grid screenshot).
 *
 * Simpler UX: always show BOTH the label and the value inline. No
 * hover / click required, no floating popover to style. The button
 * becomes a small uppercase label with a ':' separator; the terms-
 * content becomes the value right next to it.
 *
 * Scoped under .pkt-body so it only kicks in on redesign chrome
 * pages (which is now every page in the site) - and applies to
 * casinos-grid, casinos-line, casinos-table, casino-bonuses, and any
 * other block that uses SpinokoTerms::popover().
 * =============================================================== */

/* Container: soft cream card with vertical stack. Not a pill - a pill
 * (border-radius:999px) breaks visually the moment the terms text
 * wraps to two lines. Rectangle w/ 10px rounded corners handles any
 * content length gracefully (Paratiisi's 3-line "Vähintään 30 €..."
 * looks tidy; Boost's single-line "30x (ilmaiskierrosta)" looks tidy).
 *
 * No horizontal margin - the .grid-item middle-content rule below
 * gives every middle child a 14px side padding, so the terms box
 * automatically sits inside that gutter without double-insetting. */
.pkt-body [data-terms="true"] {
    display: block;
    box-sizing: border-box;
    width: auto;
    margin: 10px 0 4px;
    padding: 9px 14px;
    background: var(--pkt-cream);
    border: 1px solid var(--pkt-card-border);
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    line-height: 1.4;
    text-align: center;
    color: var(--pkt-text-dark);
    box-shadow: 0 2px 6px -4px rgba(44,6,14,0.10);
}

/* Middle-card content gutter - .grid-item has no side padding of its
 * own, so bonus text, terms box, games list, and rating stars would
 * otherwise touch the outer white card border. The top logo strip
 * (.bg-light div) keeps its own sp-p-4 chrome; the bottom Pelaa CTA
 * (.button-casino) stays full-width so it visually anchors the card
 * base. Only the "middle three" children get the inset. */
.pkt-body .grid-item > .text-dark.text-center,
.pkt-body .grid-item > .sp-pb-4,
.pkt-body .grid-item > .text-star {
    padding-left: 14px !important;
    padding-right: 14px !important;
    box-sizing: border-box !important;
}

/* Reset the inner <span> wrapper - it's pure structural markup from
 * SpinokoTerms, not a layout node we want to react to. */
.pkt-body [data-terms="true"] > span {
    display: block;
    margin: 0;
    padding: 0;
}

/* Label - small caps sit ABOVE the value now (not inline before a
 * colon), so multi-line values wrap under the label naturally instead
 * of pushing it off-center. */
.pkt-body [data-terms="true"] button[data-str="terms_text"] {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    display: block;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pkt-text-soft);
    cursor: default;
    pointer-events: none;
    line-height: 1.2;
}
/* No colon after the label anymore - the visual separation now comes
 * from the line-break + spacing, not a trailing ':'. */
.pkt-body [data-terms="true"] button[data-str="terms_text"]::after {
    content: none;
}

/* Value - always visible, stacked under the label. The `hidden` attr
 * from the legacy popover markup gets overridden by display:block!
 * important. Font is Manrope body-face, brand-dark for readability
 * against the cream backdrop. */
.pkt-body [data-terms="true"] .terms-content,
.pkt-body [data-terms="true"] .terms-content[hidden] {
    display: block !important;
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 5px 0 0 !important;
    border: 0 !important;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 12.5px;
    color: var(--pkt-text-dark);
    line-height: 1.4;
    text-align: center;
}
.pkt-body [data-terms="true"] .terms-content strong {
    color: var(--pkt-brand-dark);
    font-weight: 700;
}


/* =============================================================== *
 * Casinos-grid card polish - hide broken Kaikki-pelit popup,
 * responsive column count, tidy internal spacing.
 * =============================================================== */

/* 1. Kill the "Kaikki pelit" popover entirely.
 * The button opens a floating hidden games list on hover/click that
 * overlays adjacent cards with un-styled text (see the third-card
 * pop-in from the screenshot). The SAATAVILLA OLEVAT PELIT strip above
 * already surfaces 4 game types + the full-game category count - that's
 * enough card-level info. Full list stays accessible from the casino
 * review page. Removes the trigger button, its wrapper, and defensively
 * the hidden popover markup so no legacy JS can un-hide it. */
.pkt-body [data-games="true"],
.pkt-body [data-games="true"] .games-content,
.pkt-body [data-games="true"] .games-content[hidden],
.pkt-body [data-games="true"] button[data-str="all_games_popup_link_text"] {
    display: none !important;
}

/* 2. Responsive column count.
 * When an editor picks "4 cols" in the block admin the cards render
 * 4-across at every viewport - fine on 1400px screens but crushingly
 * cramped at 1024-1279 (typical laptop). Same story for 3-col at
 * 768-1023 (tablet). Override so the editor's max column count only
 * kicks in when the viewport actually has room, otherwise drop to a
 * comfortable 2-col grid. Mobile stays 1-col (base rule). */
.pkt-body .review-grid {
    gap: 16px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .pkt-body .review-grid.review-grid-cols-2,
    .pkt-body .review-grid.review-grid-cols-3,
    .pkt-body .review-grid.review-grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .pkt-body .review-grid.review-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .pkt-body .review-grid.review-grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* 3. Card chrome - match the .pkt-row / .similar-casinos card language:
 * white bg, soft border, gentle shadow, lift+gold-border on hover. */
.pkt-body .review-grid .grid-item {
    background: #fff;
    border: 1px solid var(--pkt-card-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px -14px rgba(44,6,14,0.18);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pkt-body .review-grid .grid-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px -22px rgba(44,6,14,0.4);
    border-color: var(--pkt-accent);
}

/* 4. Games list ("SAATAVILLA OLEVAT PELIT" strip) polish.
 * The section previously had `sp-pb-4` padding-only + tightly-packed
 * icons that leaked to card edges. Now: heading is a small Sora
 * uppercase label, icons+labels flow in a centered wrap with proper
 * padding and clean small type. */
.pkt-body .grid-item .sp-pb-4 > span[data-str="all_games_heading__grid"] {
    display: block;
    font-family: 'Sora', sans-serif !important;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pkt-text-soft);
    margin: 6px 0 10px;
    padding: 0 !important;
    text-align: center;
}
.pkt-body .grid-item .sp-pb-4 > .flex.flex-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 12px;
    padding: 0 !important;
}
.pkt-body .grid-item .sp-pb-4 > .flex.flex-wrap a,
.pkt-body .grid-item .sp-pb-4 > .flex.flex-wrap span,
.pkt-body .grid-item .sp-pb-4 > .flex.flex-wrap > * {
    font-size: 12.5px;
    line-height: 1.4;
    color: var(--pkt-text-muted);
    text-decoration: none;
}
.pkt-body .grid-item .sp-pb-4 > .flex.flex-wrap a {
    color: var(--pkt-brand);
}
.pkt-body .grid-item .sp-pb-4 > .flex.flex-wrap svg,
.pkt-body .grid-item .sp-pb-4 > .flex.flex-wrap img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
    opacity: 0.8;
}

/* 5. Rating stars row - a touch tighter, more breathing space. */
.pkt-body .grid-item > .text-star {
    padding: 10px 14px 14px !important;
    text-align: center;
    font-size: 15px;
    color: var(--pkt-accent);
    letter-spacing: 0.02em;
}
.pkt-body .grid-item > .text-star .rating-value,
.pkt-body .grid-item > .text-star + span {
    color: var(--pkt-text-muted);
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    margin-left: 4px;
}

/* 6. Bonus block - tighten typography so it reads as the CTA-support
 * primary content of the card. */
.pkt-body .grid-item > .text-dark.text-center {
    padding: 14px 14px 4px !important;
    background: transparent;
}
.pkt-body .grid-item > .text-dark.text-center > span[data-str="bonus_heading"] {
    display: inline-block !important;
    font-family: 'Sora', sans-serif !important;
    font-weight: 700 !important;
    font-size: 10px !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--pkt-text-soft) !important;
    padding: 0 !important;
    margin: 0 0 6px !important;
}
.pkt-body .grid-item > .text-dark.text-center > span.text-2xl {
    display: block !important;
    font-family: 'Sora', sans-serif !important;
    font-weight: 800 !important;
    font-size: 17px !important;
    line-height: 1.22 !important;
    letter-spacing: -0.01em !important;
    color: var(--pkt-text-dark) !important;
    padding: 0 !important;
    margin: 0 !important;
    text-wrap: balance;
}

/* 7. Pelaa CTA at the card foot - brand red, full-width, no radius
 * bleed against the card's own rounded corners. */
.pkt-body .grid-item > .casino-aff.button-casino {
    display: block;
    background: linear-gradient(135deg, var(--pkt-brand-dark), var(--pkt-brand)) !important;
    color: #fff !important;
    text-align: center;
    padding: 14px !important;
    font-family: 'Sora', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.02em;
    border-radius: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    transition: filter .18s ease;
    cursor: pointer;
}
.pkt-body .grid-item > .casino-aff.button-casino:hover {
    filter: brightness(1.08);
}
