﻿/* Results Header Section */
.results-header {
    padding: 1.5rem 0;
    text-align: center;
}

.results-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #b0b8c5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .results-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .results-title {
        font-size: 1.4rem;
    }

    .results-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .results-header {
        padding: 1rem 0;
    }

    .results-title {
        font-size: 1.3rem;
        margin-bottom: 0.25rem;
    }

    .results-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        text-align: center;
    }
}
