/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 05 2026 | 17:15:57 */
/* =============================================================
   kroatien-ferien.com — Design System
   PREFIX: kro
   Theme: Astra
   ============================================================= */

/* =============================================
   LAYER 0: CSS CUSTOM PROPERTIES
   ============================================= */
:root {
    --kro-bg:             #FFFFFF;
    --kro-bg-alt:         #F2EFE7;
    --kro-surface:        #FBFAF6;
    --kro-ink:            #0B1B2B;
    --kro-ink-light:      #4B6278;
    --kro-ink-muted:      #8A9BAD;
    --kro-accent:         #1F4B3D;
    --kro-accent-hover:   #2F7A62;
    --kro-accent-rgb:     31, 75, 61;
    --kro-blue:           #203A63;
    --kro-blue-hover:     #3E6FB0;
    --kro-blue-rgb:       32, 58, 99;
    --kro-amber:          #F2AE2E;
    --kro-amber-light:    #FFE1A6;
    --kro-terra:          #B5644B;
    --kro-terra-light:    #E9C2B6;
    --kro-border:         #D4CFC5;
    --kro-border-light:   #E8E4DC;
    --kro-radius:         12px;
    --kro-container-max:  1140px;
    --kro-font-head:      'DM Sans', 'Segoe UI', sans-serif;
    --kro-font-body:      'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* =============================================
   LAYER 1: STRUCTURAL RESET
   Only container breakout + background strip.
   Content styling is in Layer 2 via PREFIX classes.
   ============================================= */

/* Box-sizing for sectioner containers */
.kro-container *,
.kro-container *::before,
.kro-container *::after {
    box-sizing: border-box;
}

/* Remove theme width constraints — Astra + generic selectors */
body .site-content,
body .ast-container,
body #primary,
body #content,
body .entry-content,
body .site-main,
body article {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
}

/* Astra: .entry-content[data-ast-blocks-layout] > * sets max-width on
   direct children, which overrides width: 100vw on kro-section.
   max-width takes priority over width in CSS — must be neutralized. */
.entry-content[data-ast-blocks-layout] > * {
    max-width: none !important;
}

/* Prevent horizontal scroll from 100vw sections (scrollbar width on Windows) */
html {
    overflow-x: clip;
}

/* Strip theme backgrounds */
body, .site,
.ast-separate-container .ast-article-single,
.ast-separate-container .entry-content,
#primary, #content {
    background: transparent !important;
    background-color: transparent !important;
}

/* =============================================
   LAYER 2: CONTENT DESIGN
   All selectors use kro-classes from auto-sectioner.
   Specificity: .kro-container .kro-x = 0,2,0
   No !important needed (beats theme 0,1,1 selectors).
   ============================================= */

/* ── Ordered list counter reset ── */
.kro-container .kro-ol {
    counter-reset: kro-ol-counter;
}

/* ─────────────────────────────────────────────
   Headings
   ───────────────────────────────────────────── */

.kro-container .kro-h1 {
    font-family: var(--kro-font-head);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--kro-ink);
    margin: 0;
    padding: 0;
}

.kro-container .kro-h2 {
    font-family: var(--kro-font-head);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--kro-accent);
    margin: 0;
    padding: 0;
    margin-top: 3.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

/* h2 "Pencil underline" accent — brief Section 4D.7 */
.kro-container .kro-h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--kro-accent), var(--kro-amber));
    border-radius: 2px;
    pointer-events: none;
}

.kro-container .kro-h3 {
    font-family: var(--kro-font-head);
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--kro-ink);
    margin: 0;
    padding: 0;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.kro-container .kro-h4 {
    font-family: var(--kro-font-head);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--kro-ink);
    margin: 0;
    padding: 0;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.kro-container .kro-h5 {
    font-family: var(--kro-font-head);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--kro-ink);
    margin: 0;
    padding: 0;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.kro-container .kro-h6 {
    font-family: var(--kro-font-head);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--kro-ink-light);
    margin: 0;
    padding: 0;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

/* ─────────────────────────────────────────────
   Paragraphs
   ───────────────────────────────────────────── */

.kro-container .kro-p {
    font-family: var(--kro-font-body);
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--kro-ink-light);
    margin: 0;
    padding: 0;
    margin-bottom: 1em;
}

/* Lead paragraph "Margin Pin" — first p after h2 — brief Section 4D.8 */
.kro-container .kro-h2 + .kro-p {
    font-size: 1.1875rem;
    font-weight: 450;
    line-height: 1.7;
    color: var(--kro-ink-light);
    padding-left: 1.25rem;
    border-left: 2px solid var(--kro-amber);
    margin-bottom: 1.5rem;
    position: relative;
}

.kro-container .kro-h2 + .kro-p::before {
    content: 'TERM';
    position: absolute;
    top: -0.5rem;
    left: 1.25rem;
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--kro-amber);
}

/* ─────────────────────────────────────────────
   Inline links — brief Section 4D.9
   ───────────────────────────────────────────── */

.kro-container .kro-a {
    color: var(--kro-blue);
    text-decoration: none;
    background-image: linear-gradient(var(--kro-blue), var(--kro-blue));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0% 1px;
    transition: background-size 0.25s ease, color 0.2s;
}

.kro-container .kro-a:hover {
    color: var(--kro-blue-hover);
    background-image: linear-gradient(var(--kro-blue-hover), var(--kro-blue-hover));
    background-size: 100% 1px;
}

/* Links inside list items */
.kro-container .kro-li .kro-a {
    color: var(--kro-blue);
    text-decoration: none;
    font-weight: 500;
    background-image: linear-gradient(var(--kro-blue), var(--kro-blue));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 1px;
    transition: background-size 0.25s ease, color 0.2s;
}

.kro-container .kro-li .kro-a:hover {
    color: var(--kro-blue-hover);
    background-image: linear-gradient(var(--kro-blue-hover), var(--kro-blue-hover));
    background-size: 100% 2px;
}

/* ─────────────────────────────────────────────
   Lists — brief Section 4D.1
   ───────────────────────────────────────────── */

.kro-container .kro-ul,
.kro-container .kro-ol {
    font-family: var(--kro-font-body);
    font-size: 1rem;
    color: var(--kro-ink-light);
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.kro-container .kro-li {
    position: relative;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    margin-bottom: 6px;
    background: var(--kro-surface);
    border: 1px solid var(--kro-border-light);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.kro-container .kro-li:hover {
    border-color: var(--kro-border);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.kro-container .kro-li::marker {
    content: none;
}

/* UL: arrow_forward icon */
.kro-container .kro-ul .kro-li::before {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    content: '\e5c8';
    position: absolute;
    left: 1rem;
    top: 0.9375rem;
    color: var(--kro-accent);
    font-size: 1rem;
}

/* OL: CSS counter circle */
.kro-container .kro-ol .kro-li {
    counter-increment: kro-ol-counter;
}

.kro-container .kro-ol .kro-li::before {
    content: counter(kro-ol-counter);
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--kro-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    font-style: normal;
    font-family: var(--kro-font-body);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 24px;
}

/* ─────────────────────────────────────────────
   Blockquote — brief Section 4D.2
   ───────────────────────────────────────────── */

.kro-container .kro-blockquote {
    background: var(--kro-surface);
    border: 1px solid var(--kro-border-light);
    border-left: 4px solid var(--kro-terra);
    border-radius: 0 var(--kro-radius) var(--kro-radius) 0;
    padding: 2rem 2rem 2rem 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin: 1.5rem 0;
    position: relative;
}

/* format_quote icon */
.kro-container .kro-blockquote::before {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    content: '\e244';
    position: absolute;
    top: -12px;
    left: 1.5rem;
    font-size: 2rem;
    color: var(--kro-terra);
    pointer-events: none;
}

/* "NOTE" pin label */
.kro-container .kro-blockquote::after {
    content: 'NOTE';
    position: absolute;
    top: 1rem;
    right: -1px;
    background: var(--kro-terra);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px 0 0 4px;
    font-family: var(--kro-font-body);
    pointer-events: none;
}

.kro-container .kro-blockquote .kro-p {
    color: var(--kro-ink);
    font-style: italic;
}

.kro-container .kro-cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--kro-ink-muted);
    font-style: normal;
}

.kro-container .kro-cite::before {
    content: '— ';
}

/* ─────────────────────────────────────────────
   Separators — brief Section 4D.6
   ───────────────────────────────────────────── */

.kro-container .kro-hr {
    border: none;
    height: 0;
    margin: 2.5rem auto;
    max-width: 200px;
    position: relative;
}

.kro-container .kro-hr::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--kro-border);
    position: absolute;
    top: 0;
    left: 0;
}

.kro-container .kro-hr::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--kro-bg);
    border: 1px solid var(--kro-border);
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

/* In alternating (even) sections, dot bg matches section bg */
.kro-even .kro-container .kro-hr::after {
    background: var(--kro-bg-alt);
}

/* ─────────────────────────────────────────────
   Images — brief Section 4D.4
   ───────────────────────────────────────────── */

.kro-container .kro-figure {
    margin: 2rem 0;
    position: relative;
}

.kro-container .kro-img {
    width: 100%;
    border-radius: var(--kro-radius);
    border: 1px solid var(--kro-border-light);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    height: auto;
    display: block;
    transition: box-shadow 0.25s, transform 0.25s;
}

.kro-container .kro-img:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.kro-container .kro-figcaption {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--kro-ink-muted);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ─────────────────────────────────────────────
   Buttons — Gutenberg class (outside sections)
   ───────────────────────────────────────────── */

.wp-block-button .wp-block-button__link {
    background: var(--kro-blue);
    color: #ffffff;
    font-family: var(--kro-font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}

.wp-block-button .wp-block-button__link:hover {
    background: var(--kro-blue-hover);
    transform: translateY(-1px);
    color: #ffffff;
}

/* ─────────────────────────────────────────────
   Contact Form 7
   ───────────────────────────────────────────── */

.wpcf7 {
    max-width: 640px;
    margin: 0 auto;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wpcf7-form p {
    margin: 0 0 1.25rem;
}

.wpcf7-form label {
    font-family: var(--kro-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--kro-ink);
    letter-spacing: 0.01em;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    font-family: var(--kro-font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--kro-ink);
    background: var(--kro-surface);
    border: 1px solid var(--kro-border-light);
    border-radius: 8px;
    padding: 12px 16px;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
    border-color: var(--kro-accent);
    box-shadow: 0 0 0 3px rgba(var(--kro-accent-rgb), 0.1);
}

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form textarea::placeholder {
    color: var(--kro-ink-muted);
}

.wpcf7-form textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.wpcf7-form input[type="submit"] {
    font-family: var(--kro-font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: var(--kro-blue);
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
    align-self: flex-start;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7-form input[type="submit"]:hover {
    background: var(--kro-blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--kro-blue-rgb), 0.25);
}

.wpcf7-form input[type="submit"]:active {
    transform: translateY(0);
    box-shadow: none;
}

.wpcf7-form .wpcf7-response-output {
    font-family: var(--kro-font-body);
    font-size: 0.875rem;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 1rem 0 0;
}

.wpcf7-form.sent .wpcf7-response-output {
    border-color: var(--kro-accent);
    background: rgba(var(--kro-accent-rgb), 0.06);
    color: var(--kro-accent);
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output {
    border-color: var(--kro-terra);
    background: rgba(181, 100, 75, 0.06);
    color: var(--kro-terra);
}

.wpcf7-not-valid-tip {
    font-family: var(--kro-font-body);
    font-size: 0.8125rem;
    color: var(--kro-terra);
    margin-top: 0.25rem;
}

.wpcf7-form .wpcf7-spinner {
    margin-left: 12px;
}

@media (max-width: 768px) {
    .wpcf7-form input[type="submit"] {
        width: 100%;
        text-align: center;
    }
}

/* ─────────────────────────────────────────────
   Native HTML Tables — brief Section 4D.3
   ───────────────────────────────────────────── */

.kro-container .kro-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border: 1px solid var(--kro-border-light);
    border-radius: var(--kro-radius);
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.kro-container .kro-th {
    background: var(--kro-accent);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: left;
    padding: 0.875rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: none;
}

.kro-container .kro-td {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    border: none;
    border-bottom: 1px solid var(--kro-border-light);
    color: var(--kro-ink-light);
}

.kro-container .kro-td:first-child {
    font-weight: 500;
    color: var(--kro-accent);
}

.kro-container .kro-table tr:nth-child(even) .kro-td {
    background: var(--kro-surface);
}

.kro-container .kro-table tr:hover .kro-td {
    background: rgba(31, 75, 61, 0.04);
}

.kro-container .kro-table tr:last-child .kro-td {
    border-bottom: none;
}

/* ─────────────────────────────────────────────
   Code blocks
   ───────────────────────────────────────────── */

.kro-container .kro-pre {
    background: var(--kro-surface);
    padding: 1.5rem;
    border-radius: var(--kro-radius);
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid var(--kro-border-light);
}

.kro-container .kro-code {
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.9em;
    color: var(--kro-ink);
}

/* ─────────────────────────────────────────────
   Native table → cards on mobile
   ───────────────────────────────────────────── */

@media (max-width: 768px) {
    .kro-container .kro-table thead { display: none; }
    .kro-container .kro-table tr {
        display: block;
        margin-bottom: 1rem;
        background: var(--kro-surface);
        border-radius: var(--kro-radius);
        padding: 12px;
        border: 1px solid var(--kro-border-light);
    }
    .kro-container .kro-td {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid var(--kro-border-light);
    }
    .kro-container .kro-td:last-child {
        border-bottom: none;
    }
    .kro-container .kro-td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--kro-ink);
        flex-shrink: 0;
        margin-right: 1rem;
    }
    /* Mobile list padding */
    .kro-container .kro-li {
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    }

    .kro-container .kro-table {
        background: transparent;
        border-collapse:collapse;
        box-shadow: none;
    }
}

/* ─────────────────────────────────────────────
   Responsive typography
   ───────────────────────────────────────────── */

@media (max-width: 768px) {
    .kro-container .kro-h1 { font-size: 2rem; }
    .kro-container .kro-h2 {
        font-size: 1.625rem;
        margin-top: 2.5rem;
    }
    .kro-container .kro-h3 { font-size: 1.25rem; }
    .kro-container .kro-h4 { font-size: 1.0625rem; }
    .kro-container .kro-p  { font-size: 1rem; line-height: 1.7; }
    .kro-container .kro-h2 + .kro-p { font-size: 1.0625rem; padding-left: 1rem; }
    .kro-container .kro-h2::after { width: 48px; height: 2px; }
}

@media (max-width: 480px) {
    .kro-container .kro-h1 { font-size: 1.75rem; }
    .kro-container .kro-h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    .kro-container .kro-h3 { font-size: 1.125rem; }
}

/* =============================================
   LAYER 3: SECTION DESIGN — from auto-sectioner
   ============================================= */

/*
 * AUTO-SECTIONER PLUGIN CONFIG (Settings → Auto-Sectioner):
 * PREFIX: kro
 * FAQ triggers: faq, häufig gestellte, häufige fragen, fragen und antworten, frequently asked
 * Pros triggers: vorteile, pro, pluspunkte, stärken, positiv, gut
 * Cons triggers: nachteile, contra, minuspunkte, schwächen, negativ, schlecht
 */

/* ── Page Background ── */
body {
    background: var(--kro-bg) !important;
}

/* ── Full-width section mechanics ── */
.kro-section {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    position: relative;
    overflow: hidden;
}

/* ── Sections (alternating) ── */
.kro-section {
    padding: 4rem 0;
}

.kro-section.kro-odd:not(.kro-hero) {
    background: var(--kro-bg);
}

.kro-section.kro-even:not(.kro-hero) {
    background: var(--kro-bg-alt);
}

/* ── Section divider "Pencil rule" — skip on hero ── */
.kro-section:not(.kro-hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: var(--kro-border);
    pointer-events: none;
    z-index: 1;
}

.kro-section:not(.kro-hero)::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--kro-accent);
    pointer-events: none;
    z-index: 2;
}

/* ── Container ── */
.kro-container {
    max-width: var(--kro-container-max) !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
}

/* ── Hero Section ── */
.kro-hero {
    background: linear-gradient(160deg, #1F4B3D 0%, #203A63 100%);
    min-height: 450px;
    display: flex;
    align-items: center;
    padding: 5rem 0 4rem;
    overflow: hidden;
}

/* Paper grain texture overlay */
.kro-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
}

/* Decorative margin line */
.kro-hero::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 0;
}

.kro-hero > .kro-container {
    position: relative;
    z-index: 1;
}

/* Hero text color overrides */
.kro-hero .kro-container .kro-p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
}

/* Hero lead paragraph — no amber pin in hero context */
.kro-hero .kro-container .kro-h2 + .kro-p {
    border-left-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
}

.kro-hero .kro-container .kro-h2 + .kro-p::before {
    color: var(--kro-amber);
}

/* Hero title (plugin-injected H1) */
.kro-hero-title {
    font-family: var(--kro-font-head);
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 0.3em;
}

/* Hero h2 override (larger white treatment) */
.kro-hero .kro-h2 {
    font-size: 3.2rem;
    letter-spacing: -0.02em;
    margin-top: 0;
    color: #ffffff;
}

.kro-hero .kro-h2::after {
    background: linear-gradient(90deg, var(--kro-amber), rgba(255, 255, 255, 0.3));
}

.kro-hero .kro-h3 {
    color: rgba(255, 255, 255, 0.9);
}

/* ── Table Wrap ── */
.kro-table-wrap {
    padding: 0.5rem 0;
    margin: 1.5rem 0;
}

/* ── FAQ section modifier ── */
.kro-faq {
    position: relative;
}

/* ── FAQ (decorative only — plugin handles toggle mechanics) ──
   Do NOT add max-height, overflow, opacity, transition on kro-faq-answer.
   Do NOT add cursor or user-select on kro-faq-question.
   ── */

.kro-faq-list {
    margin: 0;
    padding: 0;
}

.kro-faq-item {
    background: var(--kro-surface);
    border: 1px solid var(--kro-border-light);
    border-radius: var(--kro-radius);
    margin-bottom: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.kro-faq-item--open {
    border-color: var(--kro-accent);
    box-shadow: 0 2px 8px rgba(31, 75, 61, 0.08);
}

.kro-faq-item .kro-faq-question {
    padding: 1.25rem 3rem 1.25rem 1.25rem;
    font-family: var(--kro-font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--kro-ink);
    position: relative;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
}

/* expand_more chevron */
.kro-faq-question::after {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    content: '\e5cf';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--kro-ink);
    transition: transform 0.3s;
    pointer-events: none;
}

.kro-faq-item--open .kro-faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.kro-faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--kro-ink-light);
    font-size: 0.9875rem;
    line-height: 1.7;
}

/* ── Comparison section modifier ── */
.kro-comparison-section {
    position: relative;
}

/* ── Comparison — brief Section 4C.5 ── */

.kro-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.kro-comparison-block {
    background: var(--kro-surface);
    border-radius: var(--kro-radius);
    padding: 1.5rem;
    border: 1px solid var(--kro-border-light);
}

.kro-comparison-pros {
    border-top: 3px solid var(--kro-accent);
}

/* check_circle icon for pros heading */
.kro-comparison-pros .kro-h3::before {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    content: '\e86c';
    margin-right: 0.4em;
    color: var(--kro-accent);
    vertical-align: middle;
}

.kro-comparison-cons {
    border-top: 3px solid var(--kro-terra);
}

/* cancel icon for cons heading */
.kro-comparison-cons .kro-h3::before {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    content: '\e5c9';
    margin-right: 0.4em;
    color: var(--kro-terra);
    vertical-align: middle;
}

/* Pros list items — check_circle icon */
.kro-comparison-pros .kro-li::before {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    content: '\e86c';
    color: var(--kro-accent);
}

/* Cons list items — cancel icon */
.kro-comparison-cons .kro-li::before {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    content: '\e5c9';
    color: var(--kro-terra);
}

@media (max-width: 768px) {
    .kro-comparison {
        grid-template-columns: 1fr;
    }
}

/* ── Comparison inside review — brief Section 4C.6 ── */

.kro-comparison-review {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.kro-comparison-block-review {
    padding: 1.25rem;
    border-radius: var(--kro-radius);
    background: var(--kro-surface);
    border: 1px solid var(--kro-border-light);
}

.kro-comparison-pros-review {
    border-top: 3px solid var(--kro-accent);
}

.kro-comparison-pros-review .kro-h3::before {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    content: '\e86c';
    margin-right: 0.4em;
    color: var(--kro-accent);
    vertical-align: middle;
}

.kro-comparison-cons-review {
    border-top: 3px solid var(--kro-terra);
}

.kro-comparison-cons-review .kro-h3::before {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    content: '\e5c9';
    margin-right: 0.4em;
    color: var(--kro-terra);
    vertical-align: middle;
}

.kro-comparison-pros-review .kro-li::before {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    content: '\e86c';
    color: var(--kro-accent);
}

.kro-comparison-cons-review .kro-li::before {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    content: '\e5c9';
    color: var(--kro-terra);
}

@media (max-width: 768px) {
    .kro-comparison-review {
        grid-template-columns: 1fr;
    }
}

/* ── Review Section — brief Section 4C.7 ── */

.kro-review-section {
    position: relative;
}

/* Left amber strip — desktop */
.kro-review-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4rem;
    width: 3px;
    height: calc(100% - 8rem);
    background: var(--kro-amber);
    pointer-events: none;
    z-index: 2;
}

.kro-review-section .kro-img {
    border-radius: 14px;
}

/* ── Subsections — brief Section 4C.8 ── */

.kro-subsection {
    background: var(--kro-surface);
    border-radius: var(--kro-radius);
    padding: 1.75rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--kro-border-light);
    position: relative;
    overflow: hidden;
}

/* Tab shape top-left */
.kro-subsection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 24px;
    background: var(--kro-accent);
    border-radius: 0 0 8px 0;
    opacity: 0.12;
    pointer-events: none;
}

/* Pencil dash */
.kro-subsection::after {
    content: '';
    position: absolute;
    top: 11px;
    left: 12px;
    width: 24px;
    height: 1px;
    background: var(--kro-accent);
    opacity: 0.4;
    pointer-events: none;
}

/* ── Section responsive ── */

@media (max-width: 768px) {
    .kro-hero {
        min-height: 350px;
        padding: 3rem 0 2.5rem;
    }
    .kro-hero::after {
        display: none;
    }
    .kro-hero .kro-h2 {
        font-size: 2.2rem;
    }
    .kro-hero-title {
        font-size: 2rem;
    }
    .kro-section {
        padding: 2.5rem 0;
    }
    .kro-section:not(.kro-hero)::before {
        width: 80px;
    }
    .kro-section:not(.kro-hero)::after {
        width: 5px;
        height: 5px;
    }
    .kro-subsection {
        padding: 1.25rem 1rem;
    }
    /* Review section — horizontal strip top center */
    .kro-review-section::before {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        width: 60px;
        height: 3px;
        background: var(--kro-amber);
    }
}

@media (max-width: 480px) {
    .kro-hero {
        min-height: 280px;
        padding: 2.5rem 0 2rem;
    }
    .kro-hero .kro-h2 {
        font-size: 1.8rem;
    }
    .kro-hero-title {
        font-size: 1.75rem;
    }
    .kro-section {
        padding: 2rem 0;
    }
}

/* =============================================
   LAYER 3 (cont): HEADER
   ============================================= */

/* Reset Astra button styles inside header */
.kro-site-header button,
.kro-site-header button:hover,
.kro-site-header button:focus,
.kro-site-header button:active {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none;
    text-transform: none;
    letter-spacing: inherit;
}

.kro-site-header {
    position: sticky;
    top: 0;
    z-index: 99999;
    background: #ffffff;
    border-bottom: 1px solid var(--kro-border-light);
    transition: box-shadow 0.25s, padding 0.25s;
    width: 100%;
}

.kro-site-header.kro-is-scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.kro-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--kro-container-max);
    margin: 0 auto;
    padding: 1rem 20px;
    gap: 1.5rem;
    transition: padding 0.25s;
}

.kro-is-scrolled .kro-header-inner {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

/* Logo */
.kro-logo {
    font-family: var(--kro-font-head);
    font-weight: 800;
    font-size: 1.375rem;
    color: var(--kro-accent);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1;
}

/* Decorative accent mark before logo text */
.kro-logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--kro-accent), var(--kro-blue));
    opacity: 0.9;
}

/* Dot inside the accent mark */
.kro-logo::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
}

.kro-logo:hover {
    color: var(--kro-accent-hover);
    text-decoration: none;
}

.kro-logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

/* Nav */
.kro-header-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: flex-end;
}

.kro-header-link {
    font-family: var(--kro-font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--kro-ink);
    letter-spacing: 0.01em;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
}

/* Underline slides in from left on hover */
.kro-header-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background: var(--kro-accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.kro-header-link:hover {
    color: var(--kro-accent);
    text-decoration: none;
}

.kro-header-link:hover::after {
    transform: scaleX(1);
}

/* 18+ badge */
.kro-age-badge-nav {
    background: var(--kro-terra);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    padding: 2px 8px;
    margin-left: 0.5rem;
    flex-shrink: 0;
    white-space: nowrap;
    font-family: var(--kro-font-body);
    letter-spacing: 0.02em;
}

/* Dropdown */
.kro-dropdown {
    position: relative;
}

.kro-dropdown-toggle {
    font-family: var(--kro-font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--kro-ink);
    letter-spacing: 0.01em;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    outline: none;
    box-shadow: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.5rem 0.75rem;
    transition: color 0.2s;
    white-space: nowrap;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: inherit;
}

.kro-dropdown-toggle:hover,
.kro-dropdown-toggle:focus,
.kro-dropdown-toggle:active {
    color: var(--kro-accent);
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none;
}

.kro-dropdown-toggle:focus-visible {
    outline: 2px solid var(--kro-accent);
    outline-offset: 2px;
    border-radius: 4px;
}

.kro-dropdown-arrow {
    transition: transform 0.2s;
    flex-shrink: 0;
    color: currentColor;
}

.kro-dropdown.kro-is-open .kro-dropdown-arrow {
    transform: rotate(180deg);
}

.kro-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--kro-border-light);
    border-radius: 8px;
    min-width: 200px;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Invisible bridge so hover doesn't break when crossing the gap */
.kro-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
    display: none;
}

.kro-dropdown:hover::after {
    display: block;
}

.kro-dropdown.kro-is-open .kro-dropdown-menu {
    display: block;
}

/* Desktop hover — open dropdown on mouseenter */
@media (min-width: 769px) {
    .kro-dropdown:hover .kro-dropdown-menu {
        display: block;
    }
    .kro-dropdown:hover .kro-dropdown-arrow {
        transform: rotate(180deg);
    }
}

.kro-dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--kro-ink);
    font-family: var(--kro-font-body);
    font-size: 0.9375rem;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.kro-dropdown-link:hover {
    background: var(--kro-bg-alt);
    color: var(--kro-ink);
    text-decoration: none;
}

/* Mobile toggle */
.kro-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
    flex-shrink: 0;
}

.kro-burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--kro-ink);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.kro-mobile-toggle[aria-expanded="true"] .kro-burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.kro-mobile-toggle[aria-expanded="true"] .kro-burger-line:nth-child(2) {
    opacity: 0;
}

.kro-mobile-toggle[aria-expanded="true"] .kro-burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hidden on desktop */
.kro-mobile-close,
.kro-mobile-nav-header {
    display: none;
}

@media (max-width: 768px) {
    .kro-mobile-toggle {
        display: flex;
    }

    /* ── Fullscreen overlay ── */
    .kro-header-nav {
        display: none;
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: var(--kro-bg);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        z-index: 99999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .kro-header-nav.kro-is-open {
        display: flex;
    }

    /* ── Top bar: logo + close ── */
    .kro-mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 20px;
        border-bottom: 1px solid var(--kro-border-light);
        flex-shrink: 0;
    }

    .kro-mobile-nav-header .kro-logo {
        font-size: 1.25rem;
    }

    /* ── Close button ── */
    .kro-mobile-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: 1px solid var(--kro-border-light);
        border-radius: 10px;
        cursor: pointer;
        color: var(--kro-ink);
        transition: background 0.15s, border-color 0.15s;
        flex-shrink: 0;
    }

    .kro-mobile-close svg {
        width: 20px;
        height: 20px;
    }

    .kro-mobile-close:hover,
    .kro-mobile-close:active {
        background: var(--kro-bg-alt);
        border-color: var(--kro-border);
    }

    /* ── Nav links ── */
    .kro-header-link,
    .kro-dropdown-toggle {
        font-size: 1.0625rem;
        font-weight: 500;
        padding: 1rem 24px;
        width: 100%;
        text-align: left;
        justify-content: space-between;
        border-bottom: 1px solid var(--kro-border-light);
        color: var(--kro-ink);
    }

    .kro-header-link:active,
    .kro-dropdown-toggle:active {
        background: var(--kro-bg-alt);
    }

    .kro-header-link::after,
    .kro-dropdown::after {
        display: none !important;
    }

    .kro-age-badge-nav {
        display: inline-flex;
        align-self: flex-start;
        margin: 1.25rem 24px;
        font-size: 0.8125rem;
    }

    /* ── Dropdown sub-menu ── */
    .kro-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        display: none;
        width: 100%;
        text-align: left;
        border-radius: 0;
        background: var(--kro-bg-alt);
    }

    .kro-dropdown.kro-is-open .kro-dropdown-menu {
        display: block;
    }

    .kro-dropdown-link {
        padding: 0.875rem 24px 0.875rem 40px;
        border-bottom: 1px solid var(--kro-border-light);
        text-align: left;
        font-size: 0.9375rem;
        color: var(--kro-ink-light);
    }

    .kro-dropdown-link:active {
        background: rgba(var(--kro-accent-rgb), 0.06);
    }
}

/* =============================================
   LAYER 3 (cont): FOOTER
   ============================================= */

.kro-site-footer {
    background: #0B1B2B;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--kro-font-body);
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Gradient top strip */
.kro-site-footer::before {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--kro-accent), var(--kro-blue), var(--kro-terra));
}

.kro-footer-inner {
    max-width: var(--kro-container-max);
    margin: 0 auto;
    padding: 3rem 20px 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.kro-footer-col-heading {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    display: block;
}

.kro-footer-brand-name {
    font-family: var(--kro-font-head);
    font-size: 1.375rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    letter-spacing: -0.02em;
    position: relative;
    padding-left: 2rem;
    line-height: 1;
    transition: color 0.2s;
}

.kro-footer-brand-name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--kro-accent-hover), var(--kro-amber));
    opacity: 0.9;
}

.kro-footer-brand-name::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
}

.kro-footer-brand-name:hover {
    color: var(--kro-amber);
    text-decoration: none;
}

.kro-footer-brand-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.kro-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.kro-footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
    line-height: 1.5;
}

.kro-footer-link:hover {
    color: var(--kro-amber);
    text-decoration: none;
}

/* Footer dropdown */
.kro-footer-dropdown {
    display: flex;
    flex-direction: column;
}

.kro-footer-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--kro-font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1.5;
}

.kro-footer-dropdown-toggle:hover {
    color: var(--kro-amber);
}

.kro-footer-dropdown-arrow {
    transition: transform 0.25s;
    flex-shrink: 0;
    color: currentColor;
    opacity: 0.6;
}

.kro-footer-dropdown.kro-is-open .kro-footer-dropdown-arrow {
    transform: rotate(180deg);
}

.kro-footer-dropdown-menu {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    padding-left: 1rem;
    margin-top: 0.35rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.kro-footer-dropdown.kro-is-open .kro-footer-dropdown-menu {
    display: flex;
}

.kro-footer-dropdown-menu .kro-footer-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
}

.kro-footer-dropdown-menu .kro-footer-link:hover {
    color: var(--kro-amber);
}

.kro-footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.kro-footer-contact-item {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.kro-footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.kro-footer-contact-item a:hover {
    color: var(--kro-amber);
}

.kro-footer-licenses-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.kro-footer-license-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.kro-footer-license-logos a {
    display: inline-flex;
    align-items: center;
    transition: filter 0.2s, opacity 0.2s;
    filter: grayscale(100%);
    opacity: 0.5;
}

.kro-footer-license-logos a:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.kro-footer-license-logos img {
    max-height: 36px;
    width: auto;
    display: block;
}

/* Responsible gambling section */
.kro-footer-responsible {
    max-width: var(--kro-container-max);
    margin: 0 auto;
    padding: 2rem 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.kro-footer-responsible-heading {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Shield icon before heading */
.kro-footer-responsible-heading::before {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    content: '\e9e0';
    font-size: 1.125rem;
    color: var(--kro-amber);
}

.kro-footer-responsible-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin-bottom: 1rem;
    max-width: 800px;
}

.kro-footer-help-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-top: 0.75rem;
}

.kro-footer-help-link {
    color: var(--kro-amber);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.kro-footer-help-link:hover {
    color: var(--kro-amber-light);
    text-decoration: none;
}

/* 18+ notice / disclaimer */
.kro-footer-age-notice {
    max-width: var(--kro-container-max);
    margin: 0 auto;
    padding: 1.5rem 20px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

/* Bottom bar */
.kro-footer-bottom {
    max-width: var(--kro-container-max);
    margin: 0 auto;
    padding: 1.5rem 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.kro-copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.kro-footer-18 {
    background: var(--kro-terra);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    padding: 2px 8px;
    letter-spacing: 0.02em;
}

/* Footer responsive */
@media (max-width: 768px) {
    .kro-footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .kro-footer-nav {
        align-items: center;
    }

    .kro-footer-dropdown {
        align-items: center;
    }

    .kro-footer-dropdown-toggle {
        justify-content: center;
    }

    .kro-footer-dropdown-menu {
        padding-left: 0;
        border-left: none;
        align-items: center;
    }

    .kro-footer-contacts {
        align-items: center;
    }

    .kro-footer-license-logos {
        justify-content: center;
    }

    .kro-footer-help-links {
        justify-content: center;
    }

    .kro-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .kro-footer-responsible-heading {
        justify-content: center;
    }
}

/* =============================================
   LAYER 3 (cont): TABLE CSS (from wp-table)
   ============================================= */

/* =============================================================
   KRO CASINO TABLE — "Field Dossier Cards"
   PREFIX: kro  |  Layer 3 — inserted by wp-coder
   ============================================================= */

/* ── Custom Properties ───────────────────────────────────────── */
.kro-table-container,
.kro-load-more-wrap {
    --kro-bg:             #FFFFFF;
    --kro-bg-alt:         #F2EFE7;
    --kro-surface:        #FBFAF6;
    --kro-ink:            #0B1B2B;
    --kro-ink-light:      #4B6278;
    --kro-ink-muted:      #8A9BAD;
    --kro-accent:         #1F4B3D;
    --kro-accent-hover:   #2F7A62;
    --kro-accent-rgb:     31, 75, 61;
    --kro-blue:           #203A63;
    --kro-blue-hover:     #3E6FB0;
    --kro-blue-rgb:       32, 58, 99;
    --kro-amber:          #F2AE2E;
    --kro-amber-light:    #FFE1A6;
    --kro-terra:          #B5644B;
    --kro-terra-light:    #E9C2B6;
    --kro-border:         #D4CFC5;
    --kro-border-light:   #E8E4DC;
    --kro-radius:         12px;
    --kro-font-head:      'DM Sans', 'Segoe UI', sans-serif;
    --kro-font-body:      'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* ── Table Container ─────────────────────────────────────────── */
.kro-table-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto 2rem;
    background: var(--kro-surface);
    border: 1px solid var(--kro-border);
    border-top: 3px solid var(--kro-accent);
    border-radius: var(--kro-radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    font-family: var(--kro-font-body);
}

/* ── Card Base ───────────────────────────────────────────────── */
.kro-card {
    position: relative;
    display: grid;
    grid-template-columns: 40px 88px 1fr 100px 140px 150px;
    grid-template-rows: auto auto;
    grid-template-areas:
        "rank logo bonus rating metrics cta"
        "rank logo desc  desc   desc    cta";
    align-items: center;
    gap: 0 16px;
    padding: 14px 20px 14px 16px;
    background: var(--kro-bg);
    border-bottom: 1px solid var(--kro-border-light);
    transition: background 0.15s ease;
    overflow: hidden;
}

.kro-card:last-child {
    border-bottom: none;
}

.kro-card a:not(.kro-card__cta-btn):not(.kro-card__review-link) {
    color: inherit;
    text-decoration: none;
}

/* Hover state */
.kro-card:hover {
    background: rgba(var(--kro-accent-rgb), 0.03);
}

/* ── Notebook line — decorative pseudo-element ───────────────── */
.kro-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent calc(2.25rem - 1px),
        rgba(var(--kro-blue-rgb), 0.02) calc(2.25rem - 1px),
        rgba(var(--kro-blue-rgb), 0.02) 2.25rem
    );
    pointer-events: none;
    z-index: 0;
}

.kro-card > * {
    position: relative;
    z-index: 1;
}

/* ── Level 1 — Prime ─────────────────────────────────────────── */
.kro-card--prime {
    background: linear-gradient(135deg, #F7FBF5 0%, #EEF6F0 100%);
    border-left: 3px solid var(--kro-accent);
    box-shadow: 0 4px 20px rgba(var(--kro-accent-rgb), 0.12);
}

.kro-card--prime:hover {
    background: linear-gradient(135deg, #F0F8ED 0%, #E6F3E9 100%);
}

/* ── Level 2 — Featured ──────────────────────────────────────── */
.kro-card--featured {
    background: var(--kro-surface);
    border-left: 2px solid var(--kro-blue);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.kro-card--featured:hover {
    background: rgba(var(--kro-blue-rgb), 0.025);
}

/* ── Level 3 — Compact ───────────────────────────────────────── */
.kro-card--compact {
    background: var(--kro-bg);
    border-left: 1px solid var(--kro-border-light);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

/* ── TOP Ribbon ──────────────────────────────────────────────── */
.kro-card__ribbon {
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--kro-amber);
    color: var(--kro-ink);
    font-family: var(--kro-font-head);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 2px 12px;
    border-radius: 0 0 4px 4px;
    z-index: 2;
    pointer-events: none;
    line-height: 1.6;
}

/* ── Rank Badge ──────────────────────────────────────────────── */
.kro-card__rank {
    grid-area: rank;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-family: var(--kro-font-head);
    font-size: 0.8125rem;
    font-weight: 700;
    flex-shrink: 0;
    align-self: center;
    background: var(--kro-bg-alt);
    color: var(--kro-ink);
    border: 1px solid var(--kro-border-light);
}

.kro-card--prime .kro-card__rank {
    background: var(--kro-accent);
    color: #FFFFFF;
    border: none;
    animation: kro-rank-pulse 2.4s ease-in-out infinite;
}

.kro-card--featured .kro-card__rank {
    background: var(--kro-blue);
    color: #FFFFFF;
    border: none;
}

@keyframes kro-rank-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--kro-accent-rgb), 0.35); }
    50%       { box-shadow: 0 0 0 6px rgba(var(--kro-accent-rgb), 0); }
}

/* ── Logo Block ──────────────────────────────────────────────── */
.kro-card__logo {
    grid-area: logo;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.kro-card__logo-wrap {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--kro-border-light);
}

.kro-card__logo-wrap img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.kro-card__logo-fallback {
    font-family: var(--kro-font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--kro-ink);
    text-transform: uppercase;
}

.kro-card__brand-name {
    font-family: var(--kro-font-head);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--kro-ink);
    text-align: center;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}

/* ── Bonus Block ─────────────────────────────────────────────── */
.kro-card__bonus {
    grid-area: bonus;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 8px;
}

.kro-card__bonus-main {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--kro-accent);
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kro-card__badge {
    display: inline-flex;
    align-items: center;
    background: var(--kro-amber-light);
    color: var(--kro-ink);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    line-height: 1.6;
    align-self: flex-start;
}

/* ── Rating Block ────────────────────────────────────────────── */
.kro-card__rating {
    grid-area: rating;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

/* ── Metrics Block ───────────────────────────────────────────── */
.kro-card__metrics {
    grid-area: metrics;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kro-card__rating-num {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--kro-ink);
    line-height: 1;
    min-width: 2ch;
}

.kro-card__dots {
    display: flex;
    align-items: center;
    gap: 4px;
}

.kro-card__dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--kro-border-light);
    flex-shrink: 0;
}

.kro-card__dot--filled {
    background: var(--kro-amber);
}

/* Metric rows */
.kro-card__metric {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.kro-card__metric-label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--kro-ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
}

.kro-card__metric-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--kro-ink);
    line-height: 1.3;
}

/* ── CTA Block ───────────────────────────────────────────────── */
.kro-card__cta {
    grid-area: cta;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.kro-card__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    width: 100%;
    padding: 12px 20px;
    background: var(--kro-blue) !important;
    color: #FFFFFF !important;
    font-family: var(--kro-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 8px;
    text-align: center;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
    border: none;
    text-decoration: none !important;
}

.kro-card__cta-btn:hover {
    background: var(--kro-blue-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--kro-blue-rgb), 0.25);
    color: #FFFFFF !important;
    text-decoration: none !important;
}

.kro-card__review-link {
    font-size: 0.75rem;
    color: var(--kro-ink-light);
    text-align: center;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.15s ease;
    display: block;
}

.kro-card__review-link:hover {
    color: var(--kro-accent);
    text-decoration: underline;
}

.kro-card__review-link--static {
    cursor: default;
    color: var(--kro-ink-muted);
    font-size: 0.6875rem;
    font-weight: 500;
}

.kro-card__review-link--static:hover {
    color: var(--kro-ink-muted);
    text-decoration: none;
}

/* ── Description Row ─────────────────────────────────────────── */
.kro-card__desc {
    grid-area: desc;
    font-size: 0.875rem;
    color: var(--kro-ink-light);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-top: 10px;
    border-top: 1px solid var(--kro-border-light);
    margin-top: 4px;
}

/* When no description: collapse the second row cleanly */
.kro-card:not(.kro-card--has-desc) {
    grid-template-rows: auto;
    grid-template-areas: "rank logo bonus rating metrics cta";
}

/* ── Load More ───────────────────────────────────────────────── */
.kro-load-more-wrap {
    display: flex;
    justify-content: center;
    padding: 24px 16px;
}

.kro-load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 36px;
    background: transparent;
    color: var(--kro-ink);
    font-family: var(--kro-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 1px solid var(--kro-border);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.kro-load-more-btn:hover {
    border-color: var(--kro-accent);
    color: var(--kro-accent);
    background: rgba(var(--kro-accent-rgb), 0.04);
}

/* =============================================================
   RESPONSIVE — 768px: stacked card layout
   ============================================================= */
@media (max-width: 768px) {

    .kro-table-container {
        border-radius: 8px;
        gap: 20px;
        padding: 6px;
    }

    /* Single column stacked layout */
    .kro-card {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: none;
        gap: 0;
        padding: 16px 14px;
    }

    /* Reset all grid-area assignments from desktop */
    .kro-card__rank,
    .kro-card__logo,
    .kro-card__bonus,
    .kro-card__rating,
    .kro-card__metrics,
    .kro-card__cta,
    .kro-card__desc {
        grid-area: unset;
    }

    /* Rank — absolute top-left */
    .kro-card {
        position: relative;
    }

    .kro-card__rank {
        position: absolute;
        top: 14px;
        left: 14px;
        grid-column: unset;
        margin: 0;
    }

    .kro-card__logo {
        grid-column: 1 / -1;
        flex-direction: column-reverse;
        align-items: center;
        gap: 6px;
        margin: 0 auto;
        padding-bottom: 10px;
    }

    .kro-card__logo-wrap {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
    }

    .kro-card__logo-wrap img {
        max-height: 38px;
    }

    .kro-card__brand-name {
        text-align: center;
        font-size: 0.9375rem;
    }

    /* Row 2: bonus — full width */
    .kro-card__bonus {
        grid-column: 1 / -1;
        padding: 10px 0;
        padding-right: 0;
        border-top: 1px solid var(--kro-border-light);
    }

    .kro-card__bonus-main {
        font-size: 1rem;
    }

    /* Row 3: rating — full width, horizontal */
    .kro-card__rating {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 10px 0;
        border-top: 1px solid var(--kro-border-light);
    }

    /* Row 4: metrics — full width, horizontal */
    .kro-card__metrics {
        grid-column: 1 / -1;
        flex-direction: row;
        gap: 20px;
        padding: 0 0 10px;
    }

    .kro-card__metric {
        flex-direction: row;
        align-items: baseline;
        gap: 6px;
    }

    .kro-card__metric-label {
        font-size: 0.625rem;
    }

    /* Desc before CTA on mobile */
    .kro-card__desc {
        grid-column: 1 / -1;
        order: 5;
        padding-top: 10px;
        margin-top: 0;
        border-top: 1px solid var(--kro-border-light);
        text-align: center;
    }

    /* CTA — full width, after desc */
    .kro-card__cta {
        grid-column: 1 / -1;
        order: 6;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding-top: 6px;
    }

    .kro-card__cta-btn {
        width: 100%;
        min-width: unset;
    }

    .kro-card__review-link {
        text-align: center;
    }

    .kro-card__ribbon {
        right: 14px;
        font-size: 0.5625rem;
        padding: 2px 8px;
    }
}

/* =============================================================
   RESPONSIVE — 480px: further compaction
   ============================================================= */
@media (max-width: 480px) {

    .kro-card {
        padding: 12px 10px;
    }

    .kro-card__rank {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .kro-card__logo-wrap {
        width: 44px;
        height: 44px;
        padding: 5px;
    }

    .kro-card__logo-wrap img {
        max-height: 32px;
    }

    .kro-card__brand-name {
        font-size: 0.875rem;
    }

    .kro-card__bonus-main {
        font-size: 0.9375rem;
    }

    .kro-card__cta-btn {
        font-size: 0.875rem;
        padding: 10px 16px;
    }

    .kro-card__rating-num {
        font-size: 1rem;
    }

    .kro-card__metric-value {
        font-size: 0.875rem;
    }

    .kro-load-more-btn {
        width: 100%;
        padding: 12px 20px;
    }
}
