/* ==========================================
   HIGHLIGHTS
========================================== */

.highlights {
    background: linear-gradient(
        135deg,
        #2b1055,
        #4d1a91
    );
    color: #fff;
    padding: 6rem 0;
    overflow-x: hidden;
}

.highlights h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Slider Container */
.highlight-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Slider Track */
.highlight-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
}

/* Cards */
.highlight-card {
    flex: 0 0 calc(33.333% - 16px);
    min-height: 230px;
    background: #fff;
    color: #222;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.highlight-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #2b1055;
}

.highlight-card p {
    line-height: 1.7;
    font-size: 1rem;
}

/* Controls */
.highlight-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-controls button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #2b1055;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.highlight-controls button:hover {
    background: #f2f2f2;
    transform: scale(1.05);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1024px) {

    .highlights {
        padding: 5rem 0;
    }

    .highlights h2 {
        font-size: 2rem;
    }

    .highlight-card {
        flex: 0 0 calc(50% - 12px);
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .highlights {
        padding: 4rem 0;
    }

    .highlights h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .highlight-track {
        gap: 16px;
    }

    .highlight-card {
        flex: 0 0 100%;
        padding: 1.5rem;
        min-height: auto;
    }

    .highlight-card h3 {
        font-size: 1.25rem;
    }

    .highlight-card p {
        font-size: 0.95rem;
    }

    .highlight-controls {
        margin-top: 1.5rem;
    }

    .highlight-controls button {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .highlights {
        padding: 3rem 0;
    }

    .highlights h2 {
        font-size: 1.5rem;
    }

    .highlight-card {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .highlight-card h3 {
        font-size: 1.1rem;
    }

    .highlight-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .highlight-controls button {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

}