/* ========== CARDS ========== */
.card {
    background: white;
    border-radius: 8px;
    border: 1px solid var(--color-gray-light);
    transition: all 0.3s ease;
    padding: 20px;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 35, 50, 0.08);
    border-color: var(--color-gold);
}

.card-header {
    border-bottom: 1px solid var(--color-gray-light);
    padding-bottom: 12px;
    margin-bottom: 16px;
}
.card-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.stat-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--color-gray-light);
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 35, 50, 0.08);
}
.stat-card .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary-dark);
}
.stat-card .stat-label {
    font-size: 13px;
    color: var(--color-gray);
    margin-top: 4px;
}
.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--color-gold-light);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}