/* FORCED UPDATE V4.0.0 - Mobile Side-by-Side Final Lock */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --nhs-accent: #ff5a6e;
    --nhs-text: #1a1a1a;
    --nhs-bg: #FFFFFF;
    --nhs-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.15);
    --nhs-border: #eeeeee;
    --nhs-desktop-h: 460px;
}

.nhs-hero-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 30px 0;
    font-family: 'Inter', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.nhs-hero-column {
    box-sizing: border-box;
}

/* Sidebar */
.nhs-hero-left {
    flex: 0 0 22%;
    background: var(--nhs-bg);
    border-radius: 12px;
    box-shadow: var(--nhs-shadow);
    height: var(--nhs-desktop-h);
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.nhs-category-header {
    background-color: var(--nhs-accent);
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    margin-bottom: 12px;
}

.nhs-category-header h3 {
    margin: 0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.nhs-category-links {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    overflow-y: auto;
}

.nhs-category-links li {
    border-bottom: 1px solid #f2f2f2;
}

.nhs-category-links a {
    display: block;
    padding: 8px 5px;
    color: var(--nhs-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

/* CAROUSEL */
.nhs-hero-center {
    flex: 0 0 57%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--nhs-shadow);
    height: var(--nhs-desktop-h);
    overflow: hidden;
    position: relative;
    border: none;
}

.nhs-main-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.nhs-carousel-inner {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.nhs-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #fdfdfd;
}

.nhs-carousel-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

/* Dots Overlay */
.nhs-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nhs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nhs-dot.active {
    background: var(--nhs-accent);
    transform: scale(1.3);
    border-color: #fff;
}

/* Side Images */
.nhs-hero-right {
    flex: 0 0 21%;
    height: var(--nhs-desktop-h);
}

.nhs-side-images-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.nhs-side-image-item {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--nhs-shadow);
    background: #fff;
}

.nhs-side-image-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

/* RESPONSIVE OPTIMIZATION */
@media (max-width: 1024px) {
    .nhs-hero-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .nhs-hero-left {
        display: none;
    }

    .nhs-hero-center {
        flex: 0 0 100%;
        height: 350px !important;
    }

    .nhs-hero-right {
        flex: 0 0 100%;
        height: auto;
    }

    .nhs-side-images-stack {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        /* FORCED SIDE-BY-SIDE */
        flex-direction: row !important;
        gap: 15px !important;
        height: auto !important;
    }

    .nhs-side-image-item {
        height: 200px !important;
    }
}

@media (max-width: 768px) {
    .nhs-hero-container {
        margin: 15px 0;
    }

    .nhs-hero-center {
        height: 280px !important;
    }

    .nhs-side-images-stack {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    .nhs-side-image-item {
        height: 160px !important;
    }

    .nhs-carousel-dots {
        bottom: 15px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .nhs-hero-center {
        height: 220px !important;
    }

    .nhs-side-images-stack {
        gap: 10px !important;
    }

    .nhs-side-image-item {
        height: 130px !important;
    }
}