/* --- Kinnaird Solutions World Cup Historical Explorer Styles --- */

/* Page Specific Color Variables */
:root {
    --wc-accent-green: #10B981; /* Muted Emerald green for pitch theme */
    --wc-accent-gold: #F59E0B;  /* Muted Gold for trophy theme */
    --wc-accent-green-alpha: rgba(16, 185, 129, 0.15);
    --wc-accent-gold-alpha: rgba(245, 158, 11, 0.15);
    
    /* Chart harmonised palette */
    --chart-color-1: #00E5FF; /* Cyan */
    --chart-color-2: #E11D48; /* Rose */
    --chart-color-3: #10B981; /* Emerald */
    --chart-color-4: #F59E0B; /* Gold */
    --chart-color-5: #8B5CF6; /* Purple */
}

/* Page Background Overrides */
.world-cup-body {
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

/* --- Hero Section & Dashboard Layout --- */
.wc-hero {
    background: radial-gradient(circle at 50% 30%, rgba(0, 229, 255, 0.15) 0%, transparent 60%),
                linear-gradient(135deg, #0a192f 0%, #1a3263 100%) !important;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wc-hero .hero-content.glass-panel-dark {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(10, 25, 47, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 229, 255, 0.3) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.wc-hero .wc-section-badge {
    color: #00E5FF !important;
    background-color: rgba(0, 229, 255, 0.15) !important;
    border: 1px solid rgba(0, 229, 255, 0.3) !important;
    font-weight: 700;
}

.wc-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--white) !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.wc-hero .hero-lead {
    font-size: 1.25rem;
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.5;
}

/* Gender Selector Toggle Switch */
.wc-gender-selector {
    display: inline-flex;
    background-color: rgba(10, 25, 47, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px;
    margin-bottom: 28px;
    gap: 4px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wc-gender-btn {
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    line-height: 1.2;
}

.wc-gender-btn:hover {
    color: #ffffff;
}

.wc-gender-btn.active {
    background-color: #00E5FF !important; /* Neon Cyan */
    color: #0a192f !important;
    box-shadow: 0 4px 12px rgba(0, 229, 255, 0.3);
}

/* Hero CTA Overrides */
.wc-hero .primary-cta {
    background: #00E5FF !important;
    color: #0a192f !important;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 229, 255, 0.4) !important;
}

.wc-hero .primary-cta:hover {
    background: #ffffff !important;
    color: #0a192f !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.6) !important;
}

.wc-hero .secondary-cta {
    color: var(--white) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    background: transparent !important;
}

.wc-hero .secondary-cta:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--white) !important;
    color: var(--white) !important;
}

/* --- Selectors and Controls --- */
.wc-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.wc-select-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wc-select {
    padding: 10px 24px 10px 16px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    background-color: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: var(--btn-radius);
    outline: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230A192F'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.wc-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.2);
}

/* Button Toggles */
.wc-btn-group {
    display: inline-flex;
    border-radius: var(--btn-radius);
    background-color: var(--medium-gray);
    padding: 4px;
}

.wc-btn-toggle {
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    background: transparent;
    border: none;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.wc-btn-toggle.active {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* --- Dashboard Section Containers --- */
.wc-dashboard-section {
    padding: 60px 0;
}

.wc-section-header {
    margin-bottom: 40px;
    text-align: center;
}

.wc-section-badge {
    display: inline-block;
    padding: 6px 12px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    background-color: rgba(0, 229, 255, 0.1);
    border-radius: 50px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.wc-section-header h2 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.wc-section-header p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Line/Bar Chart Containers --- */
.wc-chart-card {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-chart-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
}

/* --- Nation Profile Card --- */
.wc-profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
}

.wc-profile-header-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 6px solid var(--wc-accent-green);
}

.wc-profile-flag {
    font-size: 72px;
    margin-bottom: 16px;
    line-height: 1;
}

.wc-profile-title {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--primary);
}

.wc-profile-code {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--dark-gray);
    letter-spacing: 0.05em;
    background-color: var(--light-gray);
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.wc-profile-badge {
    display: inline-block;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    background-color: var(--wc-accent-gold);
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

/* Profiles stats list */
.wc-profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.wc-stat-card {
    background-color: var(--light-gray);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.wc-stat-value {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 4px;
}

.wc-stat-label {
    font-size: 12px;
    color: var(--dark-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Historical legacy tags */
.wc-legacy-container {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--medium-gray);
    width: 100%;
}

.wc-legacy-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.wc-legacy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.wc-legacy-tag {
    font-size: 12px;
    padding: 4px 10px;
    background-color: var(--medium-gray);
    border-radius: 4px;
    color: var(--primary);
    font-weight: 500;
}

/* History progression timeline list */
.wc-history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Custom Scrollbar for list */
.wc-history-list::-webkit-scrollbar {
    width: 6px;
}

.wc-history-list::-webkit-scrollbar-track {
    background: transparent;
}

.wc-history-list::-webkit-scrollbar-thumb {
    background-color: var(--medium-gray);
    border-radius: 6px;
}

.wc-history-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background-color: var(--light-gray);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.wc-history-year {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    min-width: 60px;
}

.wc-history-label {
    flex-grow: 1;
    font-weight: 500;
    color: var(--dark-gray);
}

.wc-history-note {
    font-size: 12px;
    color: var(--dark-gray);
    background-color: var(--medium-gray);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
}

.wc-history-result {
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
}

/* Result outcomes colors */
.result-winner {
    background-color: #FEF3C7;
    color: #92400E;
    border: 1px solid #FCD34D;
}
.result-runner-up {
    background-color: #F3F4F6;
    color: #374151;
    border: 1px solid #E5E7EB;
}
.result-third {
    background-color: #FFEDD5;
    color: #9A3412;
    border: 1px solid #FED7AA;
}
.result-fourth {
    background-color: #EFF6FF;
    color: #1E40AF;
    border: 1px solid #BFDBFE;
}
.result-default {
    background-color: var(--medium-gray);
    color: var(--primary);
}

/* --- H2H Comparison Layout --- */
.wc-h2h-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.wc-h2h-selector-panel {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.wc-vs-badge {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    padding: 10px 16px;
    border-radius: 50%;
    background-color: rgba(225, 29, 72, 0.1);
}

/* Head-to-head match list */
.wc-h2h-meetings-card {
    display: flex;
    flex-direction: column;
}

.wc-h2h-meetings-title {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 16px;
    border-bottom: 1px solid var(--medium-gray);
    padding-bottom: 8px;
}

.wc-h2h-meetings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    max-height: 300px;
    padding-right: 8px;
}

.wc-h2h-meeting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: var(--light-gray);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.01);
}

.wc-meeting-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wc-meeting-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.wc-meeting-meta {
    font-size: 12px;
    color: var(--dark-gray);
}

.wc-meeting-score {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    background-color: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--medium-gray);
}

.wc-no-meetings {
    text-align: center;
    color: var(--dark-gray);
    padding: 40px 0;
    font-style: italic;
}

/* --- Section 5: World Cup Historical Insights & Leaderboards --- */
.wc-leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 8px;
}

.wc-leaderboard-list::-webkit-scrollbar {
    width: 6px;
}

.wc-leaderboard-list::-webkit-scrollbar-track {
    background: transparent;
}

.wc-leaderboard-list::-webkit-scrollbar-thumb {
    background-color: var(--medium-gray);
    border-radius: 6px;
}

.wc-leaderboard-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background-color: var(--light-gray);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all var(--transition-fast);
}

.wc-leaderboard-item:hover {
    transform: translateY(-2px);
    border-color: var(--secondary);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

.wc-leaderboard-num {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    min-width: 24px;
    height: 24px;
    background-color: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-leaderboard-item:nth-child(1) .wc-leaderboard-num {
    background-color: var(--wc-accent-gold-alpha);
    color: var(--wc-accent-gold);
}

.wc-leaderboard-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wc-leaderboard-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}

.wc-leaderboard-meta {
    font-size: 12px;
    color: var(--dark-gray);
    display: flex;
    justify-content: space-between;
}

.wc-leaderboard-val {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    background-color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid var(--medium-gray);
}

.wc-leaderboard-item:hover .wc-leaderboard-val {
    background-color: var(--light-gray);
}

/* --- Skeleton Shimmer Loader --- */
@keyframes skeleton-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.wc-skeleton {
    background: linear-gradient(90deg, var(--light-gray) 25%, var(--medium-gray) 50%, var(--light-gray) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.6s infinite;
    border-radius: 8px;
    width: 100%;
    height: 100%;
}

.wc-skeleton-text {
    height: 16px;
    margin-bottom: 12px;
    border-radius: 4px;
}

.wc-skeleton-title {
    height: 24px;
    margin-bottom: 16px;
    width: 60%;
    border-radius: 4px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .wc-profile-grid {
        grid-template-columns: 1fr;
    }
    
    .wc-dq-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wc-hero {
        padding: 100px 0 60px;
    }
    
    .wc-h2h-grid {
        grid-template-columns: 1fr;
    }
    
    .wc-h2h-selector-panel {
        flex-direction: column;
        gap: 16px;
    }
    
    .wc-vs-badge {
        transform: rotate(90deg);
    }
    
    .wc-profile-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .wc-chart-card {
        min-height: 300px;
    }
    
    .wc-chart-container {
        min-height: 280px;
    }
}

/* --- Section 6: Project Notes & Attribution --- */
.wc-project-notes-section {
    background-color: var(--white);
    border-top: 1px solid var(--medium-gray);
}

.wc-project-notes-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--medium-gray);
}

.wc-project-notes-content h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
}

.wc-project-notes-content p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

.wc-project-attribution-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--medium-gray);
    box-shadow: var(--shadow-sm);
}

.wc-project-attribution-card h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wc-project-attribution-card p {
    font-size: 13px;
    color: var(--dark-gray);
    line-height: 1.5;
    margin-bottom: 16px;
}

.wc-project-attribution-card .learn-more {
    font-size: 13px;
    margin-top: 0;
}

.wc-license-info {
    font-size: 11px;
    color: var(--dark-gray);
    margin-top: 16px;
    border-top: 1px dashed var(--medium-gray);
    padding-top: 12px;
}

.wc-license-info a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.wc-license-info a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.badge-wip {
    background-color: rgba(245, 158, 11, 0.15) !important;
    color: var(--wc-accent-gold) !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
}

/* Responsive adjustments for Section 6 */
@media (max-width: 992px) {
    .wc-project-notes-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
}

/* --- What If? Format Simulator Styles --- */
.wc-sim-table {
    margin-top: 10px;
}
.wc-sim-table th, .wc-sim-table td {
    padding: 12px 8px;
    border-bottom: 1px solid var(--medium-gray);
}
.wc-sim-table tr:hover {
    background-color: var(--light-gray);
}
.wc-sim-table tr.highlight-team {
    background-color: rgba(0, 229, 255, 0.08) !important;
    font-weight: 700;
}
.wc-sim-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}
.wc-sim-verdict-card {
    transition: all var(--transition-default);
}
.verdict-qualified {
    background-color: rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    color: #047857 !important;
}
.verdict-eliminated {
    background-color: rgba(225, 29, 72, 0.1) !important;
    border-color: rgba(225, 29, 72, 0.3) !important;
    color: #B91C1C !important;
}
.wc-sim-badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    font-family: var(--font-heading);
}
.wc-sim-badge.badge-qualified {
    background-color: #D1FAE5;
    color: #065F46;
}
.wc-sim-badge.badge-eliminated {
    background-color: #FEE2E2;
    color: #991B1B;
}

/* --- Penalty Shootout Explorer Styles --- */
.shootout-kick {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: var(--white);
    transition: all var(--transition-fast);
}
.shootout-kick.scored {
    background-color: var(--wc-accent-green);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}
.shootout-kick.missed {
    background-color: var(--accent);
    box-shadow: 0 0 10px rgba(225, 29, 72, 0.4);
}
.shootout-kick.pending {
    background-color: transparent;
    border: 2px dashed var(--dark-gray);
    color: transparent;
}

/* Custom Bento Grid Column Spans */
.col-span-7 {
    grid-column: span 7;
}
.col-span-5 {
    grid-column: span 5;
}

/* --- Confederation Explorer Styles --- */
.wc-confed-h2h-row {
    border: 1px solid var(--medium-gray);
    border-radius: var(--btn-radius);
    margin-bottom: 12px;
    background-color: var(--white);
    overflow: hidden;
    transition: all var(--transition-fast);
}
.wc-confed-h2h-summary {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary);
    user-select: none;
    transition: background-color var(--transition-fast);
}
.wc-confed-h2h-summary:hover {
    background-color: var(--light-gray);
}
.wc-confed-h2h-summary::after {
    content: '▼';
    font-size: 11px;
    color: var(--dark-gray);
    transition: transform var(--transition-fast);
}
.wc-confed-h2h-row.active .wc-confed-h2h-summary::after {
    transform: rotate(180deg);
}
.wc-confed-h2h-details {
    display: none;
    padding: 16px 20px;
    border-top: 1px dashed var(--medium-gray);
    background-color: var(--light-gray);
    max-height: 250px;
    overflow-y: auto;
}
.wc-confed-h2h-row.active .wc-confed-h2h-details {
    display: block;
}
.wc-confed-match-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.wc-confed-match-item:last-child {
    border-bottom: none;
}
.wc-confed-nations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}
.wc-confed-nation-tag {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-family: var(--font-heading);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* --- Host Advantage Styles --- */
.wc-host-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.wc-host-split-card {
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.wc-host-split-card.hosting {
    border-top: 4px solid var(--chart-color-2); /* Rose */
}
.wc-host-split-card.away {
    border-top: 4px solid var(--chart-color-1); /* Cyan */
}
.wc-host-split-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dark-gray);
    margin-bottom: 12px;
}
.wc-host-split-stat {
    margin-bottom: 10px;
}
.wc-host-split-stat:last-child {
    margin-bottom: 0;
}
.wc-host-split-val {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}
.wc-host-split-label {
    font-size: 11px;
    color: var(--dark-gray);
}

