/* Slideshow Component */
.slideshow-component {
    background: var(--bg-gray-4);
    padding-bottom: 36px !important;
}

.slideshow-component .slide-dots {
    padding-top: 32px !important;
}

/* Banner Section */
.banner-section {
    position: relative;
    height: 57vh;
    overflow: hidden;
}

.banner-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.banner-section img {
    width: 100%;
    height: 100%;
    margin: 36px 0 120px;
    object-fit: cover;
    object-position: top;
    transform: scale(1.3);
}

.banner-section .labels {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 4.8%;
}

/* Section Layouts */
.section-section {
    background: var(--bg-gray-1);
    padding: 4px 0;
}

.catering-section {
    background: var(--bg-gray-1);
    padding: 12px 0;
}

/* Catering Section Typography */
.catering-section h2 {
    font-weight: 300;
    font-size: 1.9rem;
    text-align: left;
    margin-bottom: 20px;
    min-height: 32px;
}

.catering-section .content-block .content-block__description {
    max-width: 620px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 1.8rem;
}

/* Tablet Styles */
@media (max-width: 992px) {
    .banner-section .labels {
        gap: 0 3%;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Banner Mobile */
    .banner-section {
        height: 94vh;
    }

    .banner-section .labels {
        display: grid;
        padding: 68px 0;
    }

    /* Catering Mobile */
    .catering-section h2,
    .catering-box .catering-header h2 {
        font-size: 1.6rem;
    }

    .catering-box .catering-header h2 {
    }

    .catering-section .content-block .content-block__description {
        font-size: 0.8rem;
    }
}
