.resources-section {
    max-width: 1400px;
    margin: 80px auto 0;
}

.resources-header {
    margin-bottom: 25px;
}

.resources-header h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}

.resources-line {
    width: 60px;
    height: 3px;
    background: #1a6b8a;
    border-radius: 2px;
}

.resources-slider {
    padding: 20px 0 50px;
}

.resources-slider .swiper {
    overflow: visible;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.resource-card {
    width: 260px;
    height: 140px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    border-radius: 16px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.06);

    transition: all 0.35s ease;
}

.resource-card img {
    max-width: 80%;
    max-height: 75%;
    object-fit: contain;

    filter: none;
    opacity: 1;

    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.resource-card:hover img {
    transform: scale(1.05);
}

.swiper-pagination {
    bottom: 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.delay-8 { transition-delay: 1s; }

@media (max-width: 768px) {
    .resource-card {
        width: 180px;
        height: 100px;
    }
}