.resulthero-section {
    display: flex;
    align-items: center;
    min-height: 580px;
    padding: 120px 64px;
    color: #fff;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)),
        url('/images/results-hero.png') no-repeat center center/cover;
    position: relative;
    margin-top: 84px;
}

/* Headline */
.resulthero-container h2 {
    font-family: Poppins, sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0.96px;
    color: #fff;
    margin-bottom: 16px;
}

/* Paragraph */
.resulthero-container p {
    font-family: Lato, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: 0.48px;
    color: #fff;
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 992px) {
    .resulthero-section {
        padding: 100px 48px;
        min-height: 480px;

        margin: 0;
    }

    .resulthero-container h2 {
        font-size: 38px;
    }

    .resulthero-container p {
        font-size: 20px;
        line-height: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .resulthero-section {
        padding: 80px 32px;
        min-height: auto;
    }

    .resulthero-container h2 {
        font-size: 30px;
    }

    .resulthero-container p {
        font-size: 18px;
        line-height: 28px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .resulthero-section {
        padding: 60px 20px;
    }

    .resulthero-container h2 {
        font-size: 26px;
    }

    .resulthero-container p {
        font-size: 16px;
        line-height: 24px;
    }
}

/*end result hero*/

.resultsall-section {
    padding: 80px 64px;
    background: #000000;
    color: #FFF;
}

.resultsall-container {
    max-width: 1440px;
    margin: auto;
}

/* Top Filters */
.results-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 12px;
}

.results-buttons {
    display: flex;
    gap: 12px;

    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    border: 1px solid #FBBA2C;
    background: #000;
    color: #FFF;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #FBBA2C;
    color: #000;
}

/* Year dropdown */
.results-year select {
    display: flex;
    padding: 8px 16px;
    width: 160px;
    height: 44px;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    gap: 60px;
    background: #fff;

    cursor: pointer;
    font-size: 20px;
}

/*  */
.result-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.result-card {
    background: #000;
    padding: 20px;
    border-radius: 12px;
    text-align: center;

}

.result-card .image-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 12px;
}

.result-card .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .result-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .result-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .results-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .result-grid {
        grid-template-columns: 2fr;
    }
}