/* =========================
   RESOURCES PAGE
========================= */

.resources-section {
    padding: 140px 0 90px;
    background: #f8f9fb;
}

/* =========================
   TABS
========================= */

.report-tabs {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 60px;
}

.tab-btn {
    border: none;
    background: #ffffff;
    color: #1f2937;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.tab-btn:hover {
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #fa8f3d;
    color: #fff;
}

/* =========================
   REPORT GRID
========================= */

.report-content {
    display: none;
}

.report-content.active-report {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-items: center;
}

/* =========================
   REPORT CARD
========================= */

.report-item {
    width: 100%;
    max-width: 260px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    transition: all .3s ease;
}

.report-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.report-item img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    display: block;
}

.report-item h3 {
    margin: 0;
    padding: 15px;
    text-align: center;
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   LARGE TABLET
========================= */

@media (max-width: 1200px) {

    .report-content.active-report {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

    .report-content.active-report {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .report-tabs {
        flex-wrap: wrap;
    }

    .report-content.active-report {
        grid-template-columns: 1fr;
    }

    .report-item {
        max-width: 320px;
    }

    .report-item img {
        height: 280px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .tab-btn {
        width: 100%;
    }

    .report-item {
        max-width: 100%;
    }

    .report-item img {
        height: 250px;
    }

    .report-item h3 {
        font-size: 15px;
    }

}