/* Layout */
.content-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
    justify-content: center;
    flex: 1;
    height: auto;
    width: 100%;
}

.slide-header {
    margin-bottom: 4vh;
    text-align: center;
}

.subtitle {
    max-width: 800px;
    margin: 0 auto;
}

/* Context Grid */
.context-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2vw;
    width: 96%;
    margin: 0 auto 4vh auto;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3vh 1.5vw;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.stat-card.highlight {
    background: linear-gradient(135deg, #fff, #eff6ff);
    border-color: #bfdbfe;
    position: relative;
}

.stat-card.highlight::after {
    content: "";
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent);
    opacity: 0.1;
    pointer-events: none;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-muted);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2vh;
}

.stat-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1vh;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 500;
}

/* Punchline Banner (Standardized) */
.punchline-banner {
    width: 96%;
    margin: 0 auto;
    padding: 2vh 2vw;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.1rem;
    position: relative;
    z-index: 10;
}

.punchline-banner.violet {
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    color: #5b21b6;
    box-shadow: var(--shadow-sm);
}

.banner-content p {
    margin: 0;
    line-height: 1.5;
}

.banner-content strong {
    font-weight: 700;
    /* Darker violet for contrast */
}

.data-source {
    display: block;
    font-size: 10px;
    font-style: italic;
    color: var(--text-tertiary);
    margin-top: 6px;
    font-weight: 400;
    line-height: 1.3;
}