/* === CSS RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Argentina Theme - Blue & Green */
    --bg-primary: #f5f5f5;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f8ff;
    --bg-header: #0047AB;
    --bg-footer: #003d8f;
    --bg-hero: #2E8EEA;
    
    /* Green Accents (CTA, links) */
    --accent-primary: #3CB371;
    --accent-hover: #2e9b5a;
    --accent-dark: #2a8a52;
    --accent-light: #4cd884;
    
    /* Legacy orange vars → map to green for compatibility */
    --orange-primary: #3CB371;
    --orange-hover: #2e9b5a;
    --orange-dark: #2a8a52;
    --orange-light: #4cd884;
    
    /* Text Colors */
    --text-primary: #333333;
    --text-secondary: #555555;
    --text-muted: #777777;
    --text-white: #ffffff;
    
    /* Borders & Dividers */
    --border-color: #e0e0e0;
    --border-hover: #3CB371;
    --divider: #dddddd;
    
    /* Casino listing */
    --casino-logo-bg: #1A3B8B;
    --casino-green: #34A853;
    --casino-bg: #F8F8F8;
    --casino-text: #4A4A4A;
    
    /* Status Colors */
    --success: #3CB371;
    --warning: #ff9800;
    --error: #f44336;
    --info: #2E8EEA;
    
    /* Typography */
    --font-primary: 'Exo', sans-serif;
    --font-secondary: 'proxima-nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Links in content */
.section p a,
.section li a,
.content-block p a,
.content-block li a {
    color: var(--orange-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.section p a:hover,
.section li a:hover,
.content-block p a:hover,
.content-block li a:hover {
    color: var(--orange-hover);
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-white);
}

/* Scroll offset for anchor links to prevent header overlap */
h2[id] {
    scroll-margin-top: 100px;
}

.imgcontent {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* === HEADER === */
.main-header {
    background-color: var(--bg-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: none;
    box-shadow: 0 2px 8px rgba(0, 71, 171, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    gap: 24px;
    flex-wrap: wrap;
}

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

.logo img {
    max-height: 48px;
    width: auto;
    filter: brightness(1.1);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    margin: 0;
}

.nav-menu a {
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-light);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Nav dropdown */
.nav-item-has-dropdown {
    position: relative;
}

.nav-item-has-dropdown > a {
    padding-right: 18px;
    position: relative;
}

/* Hide the underline on dropdown parent */
.nav-item-has-dropdown > a::after {
    display: none !important;
}

/* Add arrow icon using ::before instead */
.nav-item-has-dropdown > a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1001;
}

.nav-item-has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.nav-dropdown li {
    border: none;
}

.nav-dropdown li:first-child {
    border-top: none;
}

.nav-dropdown a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    color: var(--text-secondary);
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown a::after {
    display: none;
}

.nav-dropdown a:hover {
    background: var(--bg-card-hover);
    color: var(--orange-primary);
}

.nav-search {
    position: relative;
}

.nav-search input {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    padding: 8px 12px;
    width: 150px;
    transition: all 0.3s ease;
}

.nav-search input:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1003;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.mobile-toggle.active {
    position: relative;
}

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: none;
    position: relative;
}

.mobile-toggle:hover span {
    background: var(--accent-light);
}

.mobile-toggle.active span:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    margin: 0;
}

.mobile-toggle.active span:nth-child(2) {
    display: none;
}

.mobile-toggle.active span:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    margin: 0;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}


/* Mobile Slide Menu */
@media (max-width: 999px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: var(--bg-header);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 0 30px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 1003 !important;
        overflow-y: auto;
        border-left: 2px solid var(--accent-primary);
        pointer-events: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-menu li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-menu a {
        display: block;
        padding: 18px 30px;
        font-size: 16px;
        color: var(--text-white);
        width: 100%;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1004;
        pointer-events: auto;
        cursor: pointer;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a:active {
        color: var(--accent-light);
        padding-left: 40px;
        background: rgba(60, 179, 113, 0.2);
    }
    
    .nav-menu li {
        position: relative;
        z-index: 1004;
        pointer-events: auto;
    }

    /* Mobile: dropdown items on same level */
    .nav-item-has-dropdown .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        padding: 0;
        margin: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .nav-item-has-dropdown .nav-dropdown li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-item-has-dropdown .nav-dropdown a {
        padding: 18px 30px;
        font-size: 16px;
    }

    .nav-item-has-dropdown .nav-dropdown a:hover,
    .nav-item-has-dropdown .nav-dropdown a:active {
        color: var(--accent-light);
        padding-left: 40px;
        background: rgba(60, 179, 113, 0.2);
    }

    .nav-item-has-dropdown > a::before {
        display: none;
    }
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HERO SECTION === */
.hero-section {
    background: linear-gradient(135deg, var(--bg-hero) 0%, var(--bg-header) 100%);
    padding: 40px 0 36px;
    border-bottom: none;
    position: relative;
    overflow: visible;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Hero: breadcrumb, date, author - white/readable on blue */
.hero-section .breadcrumb a,
.hero-section .breadcrumb .breadcrumb-sep,
.hero-section .breadcrumb span {
    color: rgba(255, 255, 255, 0.95);
}

.hero-section .breadcrumb a:hover {
    color: var(--text-white);
}

.hero-section .publication-date,
.hero-section .publication-date span {
    color: rgba(255, 255, 255, 0.95);
}

.hero-section .date-icon {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.hero-section .author-role {
    color: rgba(255, 255, 255, 0.95);
}

.hero-section .author-full-name,
.hero-section .author-full-name a {
    color: var(--text-white);
}

.hero-section .author-full-name a:hover {
    color: var(--accent-light);
}

.hero-content h1 {
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-lead-wrap {
    margin-bottom: 32px;
}

.hero-lead {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    max-width: 100%;
}

.hero-lead-wrap .hero-lead {
    margin-bottom: 0;
}

.hero-lead-wrap:not(.expanded) .hero-lead {
    margin-bottom: 0;
}

.hero-lead-more {
    display: inline;
}
.hero-lead-toggle {
    display: none;
}

.trust-indicators {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 10;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    color: var(--accent-light);
    flex-shrink: 0;
}

/* Author Meta */
.author-meta {
    margin: 24px 0 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.author-meta-persons {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.author-meta-separator {
    width: 1px;
    height: 32px;
    background: var(--border-color);
    flex-shrink: 0;
}

.author-info-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.author-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--orange-primary);
}

.author-full-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-white);
}

.author-full-name a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-full-name a:hover {
    color: var(--orange-primary);
}

.author-role {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-secondary);
}

.publication-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.4;
    color: var(--text-secondary);
}

.date-icon {
    width: 16px;
    height: 16px;
    fill: var(--orange-primary);
}

/* Disclaimer Box */
.disclaimer-box {
    border-left: 4px solid var(--orange-primary);
    background: var(--bg-card);
    padding: 20px;
    margin-top: 24px;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

/* Disclaimer Spoiler - desktop: normal view */
.disclaimer-spoiler .disclaimer-spoiler-toggle {
    display: none;
}
.disclaimer-spoiler .disclaimer-spoiler-content {
    display: block;
}

/* === SECTION TITLE === */
.section {
    padding: 15px 0;
    background: var(--bg-primary);
}

.section-title {
    position: relative;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.section-title h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    background: var(--bg-primary);
    padding-right: 20px;
    position: relative;
    z-index: 1;
    margin: 0;
}

.section-title h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    background: var(--bg-primary);
    padding-right: 20px;
    position: relative;
    z-index: 1;
    margin: 0;
}

.author-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--accent-primary);
    margin: 8px 0 0 0;
    text-transform: none;
}

.section-title h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    background: var(--bg-primary);
    padding-right: 20px;
    position: relative;
    z-index: 1;
    margin: 0;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, transparent 100%);
    z-index: 0;
}

/* === CASINO LISTING (Horizontal Rows) === */
.casino-listing {
    background: #f5f6f7;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Grid row — fixed columns: logo | bonus | description | button */
.casino-row {
    display: grid;
    grid-template-columns: 160px 265px 1fr auto;
    align-items: center;
    gap: 0 24px;
    padding: 18px 24px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s ease;
}

.casino-row:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Logo block */
.casino-row-logo {
    position: relative;
    width: 160px;
    height: 60px;
    background: var(--casino-logo-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
}

.casino-row-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
}

.casino-row-star {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: var(--casino-green);
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    z-index: 2;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* Bonus column (icon + label + value) — hide the wrapper, use contents */
.casino-row-bonus {
    display: contents;
}

/* Bonus main — column 2, icon centered vertically */
.casino-row-bonus-main {
    display: grid;
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto auto;
    gap: 0 8px;
    align-items: start;
}

.casino-row-bonus-head {
    display: contents;
}

.casino-row-icon {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: center;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5cb85c;
}

.casino-row-icon svg {
    width: 100%;
    height: 100%;
}

.casino-row-bonus-label {
    grid-column: 2;
    grid-row: 1;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    margin-bottom: 2px;
}

.casino-row-bonus-value {
    grid-column: 2;
    grid-row: 2;
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--casino-green);
    line-height: 1.4;
    padding-left: 0;
}

/* Description column — column 3 */
.casino-row-bonus-extra {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    max-width: 300px;
}

.casino-row-bonus-desc {
    font-size: 13px;
    color: #666;
    margin: 0 0 3px 0;
    line-height: 1.5;
}

.casino-row-promo {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #222;
}

/* CTA button — column 4 */
.casino-row-cta {
    justify-self: end;
}

.btn-casino {
    display: inline-block;
    min-width: 150px;
    padding: 13px 30px;
    background: var(--casino-green) !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: none !important;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(52, 168, 83, 0.25);
    white-space: nowrap;
}

.btn-casino:hover {
    background: #2d9a4a !important;
    box-shadow: 0 4px 10px rgba(52, 168, 83, 0.35);
}

/* Casino listing responsive — tablet */
@media (max-width: 999px) {
    .casino-row {
        grid-template-columns: 140px 1fr auto;
        gap: 0 16px;
        padding: 16px 18px;
    }
    /* On tablet: bonus wrapper becomes visible block spanning col 2 */
    .casino-row-bonus {
        display: flex;
        flex-direction: column;
        gap: 6px;
        grid-column: 2 / 3;
    }
    .casino-row-bonus-extra {
        min-width: 0;
        max-width: none;
    }
}

/* Casino listing responsive — mobile */
@media (max-width: 767px) {
    .casino-listing {
        padding: 8px;
        gap: 8px;
    }
    .casino-row {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 12px;
    }
    .casino-row-bonus {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }
    .casino-row-bonus-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .casino-row-bonus-head {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .casino-row-icon {
        grid-column: unset;
        grid-row: unset;
        align-self: unset;
    }
    .casino-row-bonus-label {
        grid-column: unset;
        grid-row: unset;
    }
    .casino-row-bonus-value {
        grid-column: unset;
        grid-row: unset;
    }
    .casino-row-bonus-extra {
        align-items: center;
        text-align: center;
        max-width: none;
    }
    .casino-row-logo {
        width: 100%;
        height: 68px;
    }
    .casino-row-logo img {
        max-height: 52px;
    }
    .casino-row-bonus-value {
        font-size: 15px;
        padding-left: 0;
    }
    .casino-row-bonus-desc {
        font-size: 12px;
    }
    .casino-row-cta {
        width: 100%;
    }
    .btn-casino {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .casino-listing {
        padding: 6px;
        gap: 6px;
        border-radius: 8px;
    }
    .casino-row {
        padding: 14px;
        border-radius: 8px;
    }
    .casino-row-logo {
        height: 60px;
    }
}

.btn {
    display: block;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    flex: 1;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-dark) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(60, 179, 113, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(60, 179, 113, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* === COMPARISON TABLE === */
.comparison-table {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, var(--bg-header) 0%, var(--bg-hero) 100%);
    border-bottom: 2px solid var(--accent-primary);
}

thead th {
    color: var(--text-white);
}

th {
    padding: 18px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-secondary);
}

tbody tr {
    transition: background 0.3s ease;
}

tbody tr:hover {
    background: var(--bg-card-hover);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* === CONTENT BLOCKS === */
.content-block {
    margin: 40px 0;
}

.content-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.content-block h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-white);
}

/* Content on light background (sobre-nosotros, politica-privacidad) */
.section-content .content-block h2,
.section-content .content-block h3 {
    color: var(--text-primary);
}

.content-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.content-block ul,
.content-block ol {
    margin: 20px 0;
    padding-left: 35px;
}

.content-block li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* === LISTS (ul, ol) === */
.section ul:not(.nav-menu):not(.casino-features):not(.footer-column ul):not(.pros ul):not(.cons ul),
.section ol:not(.pros ol):not(.cons ol) {
    margin: 10px 0;
    padding-left: 0;
    list-style: none;
}

.section ul:not(.nav-menu):not(.casino-features):not(.footer-column ul):not(.pros ul):not(.cons ul) li,
.section ol:not(.pros ol):not(.cons ol) li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.section ul:not(.nav-menu):not(.casino-features):not(.footer-column ul):not(.pros ul):not(.cons ul) li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
}

.section ol:not(.pros ol):not(.cons ol) {
    counter-reset: list-counter;
}

.section ol:not(.pros ol):not(.cons ol) li {
    counter-increment: list-counter;
}

.section ol:not(.pros ol):not(.cons ol) li::before {
    content: counter(list-counter) '.';
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.7;
}

/* Nested lists */
.section ul:not(.nav-menu):not(.casino-features):not(.footer-column ul):not(.pros ul):not(.cons ul) ul,
.section ol:not(.pros ol):not(.cons ol) ol {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 24px;
}

.section ul:not(.nav-menu):not(.casino-features):not(.footer-column ul):not(.pros ul):not(.cons ul) ul li::before {
    content: '◦';
    color: var(--orange-hover);
    font-size: 18px;
}

.section ol:not(.pros ol):not(.cons ol) ol li::before {
    content: counter(list-counter, lower-alpha) '.';
}

/* === ALERT BOXES === */
.alert-box {
    padding: 24px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid;
    background: var(--bg-card);
}

.alert-warning {
    border-color: var(--warning);
    background: rgba(255, 152, 0, 0.1);
    color: var(--text-secondary);
}

.alert-info {
    border-color: var(--orange-primary);
    background: rgba(255, 107, 53, 0.1);
    color: var(--text-secondary);
}

.alert-success {
    border-color: var(--success);
    background: rgba(76, 175, 80, 0.1);
    color: var(--text-secondary);
}

.alert-box strong {
    display: block;
    margin-bottom: 10px;
    font-size: 17px;
    color: var(--text-white);
}

.alert-box em {
    color: var(--text-secondary);
    font-style: italic;
}

/* === PROS & CONS === */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.pros, .cons {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid;
}

.pros {
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--success);
}

.cons {
    background: rgba(244, 67, 54, 0.1);
    border-color: var(--error);
}

.pros h3, .cons h3 {
    margin-bottom: 16px;
    font-size: 20px;
    color: var(--text-white);
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.pros li::before {
    content: '✓ ';
    color: var(--success);
    font-weight: 700;
    margin-right: 10px;
}

.cons li {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.cons li::before {
    content: '✗ ';
    color: var(--error);
    font-weight: 700;
    margin-right: 10px;
}

/* === BONUS CARDS === */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.bonus-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.bonus-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--orange-primary);
}

.bonus-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

/* === LICENSE BADGES === */
.license-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.license-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.license-badge:hover {
    border-color: var(--orange-primary);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.license-badge img {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
    filter: brightness(1.1);
}

.license-name {
    font-size: 13px;
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
}

/* === FAQ ACCORDION === */
.faq-section {
    margin: 50px 0;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--bg-card);
    border: none;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--text-primary);
    margin: 0;
    font-family: var(--font-primary);
    text-transform: none;
    position: relative;
    flex: 1;
}

.faq-question:hover {
    background: var(--bg-card-hover);
    color: var(--accent-primary);
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    color: var(--orange-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-question.active::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 20px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

/* === 404 ERROR PAGE === */
.section-404 {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404 {
    font-size: clamp(120px, 25vw, 280px);
    font-weight: 800;
    color: var(--bg-header);
    margin: 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .section-404 {
        padding: 60px 0;
    }
    
    .error-404 {
        font-size: clamp(80px, 20vw, 160px);
    }
}

/* === AUTHOR HERO (Author Page) === */
.author-hero {
    background: linear-gradient(135deg, var(--bg-hero) 0%, var(--bg-header) 100%);
    padding: 40px 0 36px;
    position: relative;
}

.author-hero .breadcrumb {
    margin-bottom: 24px;
}

.author-hero .breadcrumb a,
.author-hero .breadcrumb .breadcrumb-sep,
.author-hero .breadcrumb span {
    color: var(--text-white) !important;
}

.author-hero .breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

.author-hero-card {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: 0 auto;
}

.author-hero-avatar {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-primary);
    box-shadow: 0 8px 24px rgba(60, 179, 113, 0.3);
}

.author-hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-hero-content {
    flex: 1;
    min-width: 0;
}

.author-hero-name {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    text-transform: none;
}

.author-hero-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-primary);
    margin: 0 0 24px 0;
}

.author-hero-bio p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
}

.author-hero-bio p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .author-hero-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 32px 24px;
    }
    .author-hero-avatar {
        width: 140px;
        height: 140px;
    }
    .author-hero-name {
        font-size: 26px;
    }
    .author-hero-title {
        font-size: 16px;
    }
    .author-hero-bio p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .author-hero {
        padding: 32px 0 28px;
    }
    .author-hero-card {
        padding: 24px 20px;
    }
    .author-hero-avatar {
        width: 120px;
        height: 120px;
    }
}

/* === AUTHOR BIO SECTION === */
.author-bio-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 50px 0;
    margin: 60px 0 0 0;
    border-top: 1px solid var(--border-color);
}

.author-bio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 36px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.author-bio-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.author-bio-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--orange-primary);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.author-bio-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.author-bio-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    text-transform: none;
}

.author-bio-name a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-bio-name a:hover {
    color: var(--accent-primary);
}

.author-bio-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--orange-primary);
}

.author-bio-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.author-bio-content strong {
    color: var(--orange-primary);
    font-weight: 700;
}

/* === FOOTER === */
footer {
    background-color: var(--bg-footer);
    color: var(--text-white);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--text-white);
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--accent-light);
    transform: translateX(4px);
}

.footer-archive-links ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 16px;
    column-gap: 16px;
}

.footer-archive-links li {
    margin-bottom: 6px;
}

.footer-archive-links a {
    font-size: 12px;
    color: var(--text-white);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-white);
}

.footer-copyright p {
    color: var(--text-white);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--text-white);
}

.footer-social a:hover {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* === RESPONSIVE === */
@media (max-width: 999px) {
    .mobile-toggle {
        display: flex;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-title h1 {
        font-size: 26px;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .section-title h3 {
        font-size: 20px;
    }
    
    .content-block h2 {
        font-size: 24px;
    }
    
    .content-block h3 {
        font-size: 20px;
    }
    
    
    .footer-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-archive-links ul {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 824px) {
    .author-meta {
        gap: 16px;
    }
    .author-meta-persons {
        display: flex;
        width: 100%;
    }
    .author-info-block {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 4px 12px;
        align-items: start;
        padding: 0;
    }
    .author-details {
        display: contents;
    }
    .author-avatar-img {
        width: 40px;
        height: 40px;
        grid-column: 1;
        grid-row: 1 / -1;
    }
    .author-info-block .author-full-name {
        grid-column: 2;
        grid-row: 1;
        font-size: 14px;
    }
    .author-role {
        grid-column: 2;
        grid-row: 2;
        font-size: 12px;
        line-height: 1.3;
    }
}

@media (max-width: 599px) {
    .section {
        padding: 40px 0;
    }
    
    .hero-section {
        padding: 32px 0 28px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    .hero-content h1 {
        font-size: 20px;
    }
    
    .hero-lead {
        font-size: 14px;
    }
    .hero-lead-more {
        display: none;
    }
    .hero-lead-wrap.expanded .hero-lead-more {
        display: inline;
    }
    .hero-lead-toggle {
        display: inline;
        background: none;
        border: none;
        color: var(--text-secondary);
        font-size: inherit;
        font-weight: 600;
        cursor: pointer;
        padding: 0 0 0 4px;
        margin: 0;
        font-family: inherit;
        text-decoration: underline;
        transition: color 0.3s ease;
    }
    .hero-lead-toggle:hover {
        color: var(--text-primary);
    }
    
    /* Disclaimer Spoiler - mobile */
    .disclaimer-spoiler {
        background: linear-gradient(135deg, var(--bg-hero) 0%, var(--bg-header) 100%);
        border-left: 4px solid rgba(255, 255, 255, 0.3);
        padding: 0;
        border-radius: 8px;
        overflow: hidden;
    }
    .disclaimer-spoiler .disclaimer-spoiler-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        text-align: left;
        gap: 12px;
    }
    .disclaimer-spoiler .disclaimer-spoiler-text {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-white);
        font-style: normal;
        flex: 1;
    }
    .disclaimer-spoiler .disclaimer-spoiler-icon {
        flex-shrink: 0;
        font-size: 18px;
        font-weight: 300;
        color: var(--text-white);
    }
    .disclaimer-spoiler .disclaimer-spoiler-content {
        display: none;
        padding: 0 20px 20px 20px;
    }
    .disclaimer-spoiler.expanded .disclaimer-spoiler-content {
        display: block;
    }
    .disclaimer-spoiler .disclaimer-spoiler-icon::before {
        content: '+';
    }
    .disclaimer-spoiler.expanded .disclaimer-spoiler-icon::before {
        content: '−';
    }
    .disclaimer-spoiler .disclaimer-spoiler-content p {
        color: var(--text-white);
        font-size: 13px;
    }
    
    .author-avatar-img {
        width: 28px;
        height: 28px;
    }
    .author-full-name {
        font-size: 13px;
    }
    .author-role {
        font-size: 11px;
    }
    
    .section-title h1 {
        font-size: 22px;
    }
    
    .section-title h2 {
        font-size: 20px;
    }
    
    .section-title h3 {
        font-size: 18px;
    }
    
    .content-block h2 {
        font-size: 20px;
    }
    
    .content-block h3 {
        font-size: 18px;
    }
    
    .trust-indicators {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
    .trust-indicators::-webkit-scrollbar {
        display: none;
    }
    .trust-badge {
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 8px 20px;
    }
    
    table {
        font-size: 13px;
    }
    
    th, td {
        padding: 12px;
    }
    
    .author-bio-section {
        padding: 40px 0;
    }
    
    .author-bio-card {
        padding: 24px;
    }
    
    .author-bio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .author-bio-avatar {
        width: 70px;
        height: 70px;
    }
    
    .author-bio-name {
        font-size: 22px;
    }
    
    .author-bio-title {
        font-size: 15px;
    }
    
    .author-bio-content p {
        font-size: 15px;
    }
}

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color 0.3s;
    word-break: break-word;
    line-height: 1.4;
}

.breadcrumb a:hover {
    color: var(--orange-primary);
}

.breadcrumb-sep {
    color: var(--text-muted);
    flex-shrink: 0;
}

/* Mobile breadcrumb optimization */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 10px;
        gap: 6px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 10px;
        gap: 4px;
        margin-bottom: 12px;
    }
    
    .breadcrumb a {
        line-height: 1.4;
    }
}

/* === TABLE OF CONTENTS (TOC) === */
.toc-section {
    background: var(--bg-secondary);
    padding: 10px 0;
}

.toc-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.toc-toggle {
    width: 100%;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 18px 24px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-primary);
}

.toc-toggle:hover {
    background: var(--bg-card-hover);
}

.toc-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toc-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
    color: var(--text-primary);
}

.toc-toggle[aria-expanded="true"] .toc-icon {
    transform: rotate(180deg);
}

.toc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    background: var(--bg-card);
}

.toc-content[aria-hidden="false"] {
    max-height: 2000px;
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
    margin: 0;
    padding: 0;
}

.toc-list li {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 0!important;
}

.toc-list li::before {
    display: none;
}

.toc-list a {
    display: block;
    padding: 12px 16px;
    color: var(--text-primary) !important;
    text-decoration: none !important;
    background: var(--bg-card);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    font-size: 15px;
    line-height: 1.4;
}

.toc-list a:hover {
    color: var(--accent-primary) !important;
    border-color: var(--accent-primary);
    text-decoration: none !important;
}

/* Responsive TOC */
@media (max-width: 1024px) {
    .toc-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 16px;
    }
}

@media (max-width: 767px) {
    .toc-toggle {
        font-size: 18px;
        padding: 16px 20px;
    }

    .toc-content[aria-hidden="false"] {
        padding: 14px 20px;
    }

    .toc-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .toc-list a {
        font-size: 14px;
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .toc-toggle {
        font-size: 16px;
        padding: 14px 16px;
    }

    .toc-title {
        gap: 8px;
    }
}

/* === EXPERT BLOCKQUOTE === */
blockquote.expert-note {
    background: var(--bg-card);
    border: none;
    border-radius: 8px;
    padding: 24px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--orange-primary);
}

.expert-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expert-content {
    flex: 1;
    min-width: 0;
}

.expert-content p {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 12px 0;
    font-style: normal;
}

.expert-content cite {
    color: var(--orange-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    display: block;
}

@media (max-width: 767px) {
    blockquote.expert-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }
    
    .expert-avatar {
        width: 56px;
        height: 56px;
    }
    
    .expert-content p {
        font-size: 15px;
    }
    
    .expert-content cite {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    blockquote.expert-note {
        padding: 16px;
        gap: 12px;
    }
    
    .expert-content p {
        font-size: 14px;
        margin-bottom: 10px;
    }
}
