﻿.prospectus-cards-section {
    height: 100vh;
    background: #f5f7fb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

    .section-title h2 {
        font-size: 42px;
        font-weight: 800;
    }

    .section-title p {
        font-size: 18px;
        color: #666;
    }

/* Slider */
.cards-slider {
    overflow: hidden;
    width: 100%;
}

.cards-track {
    display: flex;
    gap: 40px;
    transition: transform 1s ease;
    padding: 0 60px;
}

/* Card */
.card {
    min-width: 420px;
    height: 520px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

    .card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Overlay title */
.card-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    background: linear-gradient(transparent, rgba(0,0,0,.8));
}

/* Mobile */
@media(max-width:768px) {
    .card {
        min-width: 280px;
        height: 380px;
    }

    .section-title h2 {
        font-size: 28px;
    }
}
