/* ========================================
   Info Cards Section - Swiper Styles
======================================== */

.info-cards-section {
    padding: 60px 0;
    overflow: hidden;
}

.info-cards-section .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.info-cards-section .swiper {
    padding-top: 30px;
    overflow: visible;
}

.info-cards-swiper .swiper-slide {
    height: auto;
}

.info-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border-radius: 12px;
    color: #000;
    overflow: hidden;
}

.info-card-image img {
    height: auto;
}

.info-card-content {
    flex: 1;
    padding: 20px;
}

.info-card img {
    width: 100%;
    border-radius: 12px 12px 0 0;
}

.info-card p {
    margin: 0;
}

@media (max-width: 992px) {
    .info-cards-section .header-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}