/* Festival About Page Statistics Styles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.stat-card {
    background: var(--card-bg, #ffffff);
    border: 1px solid var(--border-color, #dee2e6);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.stat-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color, #212529);
    border-bottom: 2px solid var(--primary-color, #0d6efd);
    padding-bottom: 0.5rem;
}
.stat-table {
    width: 100%;
    border-collapse: collapse;
}
.stat-table td {
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid var(--border-color, #e9ecef);
    font-size: 0.95rem;
}
.stat-table tr:last-child td {
    border-bottom: none;
}
.stat-table td:first-child {
    color: var(--text-color, #495057);
}
.stat-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color, #0d6efd);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color, #0d6efd);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted, #6c757d);
    margin-top: 0.25rem;
}
.overview-stat {
    margin-bottom: 1.5rem;
}
.overview-stat:last-child {
    margin-bottom: 0;
}
.profile-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color, #212529);
    margin-bottom: 2rem;
}
body[data-theme="dark"] .profile-text {
    color: #e0e0e0;
}
body[data-theme="dark"] .stat-card {
    background: #2d2d2d;
    border-color: #444;
}
body[data-theme="dark"] .stat-table td {
    border-bottom-color: #444;
}
body[data-theme="dark"] .stat-table td:first-child {
    color: #adb5bd;
}
body[data-theme="dark"] .stat-table tr:nth-child(even) {
    background: #232b36;
}
