.home-slider {
    width: 100%;
}

.home-slider .splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 90vh;
}

.home-slider-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.home-slider-link img {
    display: block;
}

.home-slider .splide__slide img {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.home-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 0 1.5rem;
}

.home-featured-link {
    display: block;
    overflow: hidden;
    height: clamp(250px, 35vh, 450px);
}

.home-featured-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.home-featured-link:hover .home-featured-img {
    transform: scale(1.03);
}

.home-featured-empty {
    height: clamp(250px, 35vh, 450px);
}

@media (max-width: 767.98px) {
    .home-slider .splide__slide {
        max-height: 60vh;
    }

    .home-slider .splide__slide img {
        max-height: 60vh;
    }

    .home-featured-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}
