/* Inside The Clinic - Scoped to .clinic-gallery */

.clinic-gallery {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(160deg, #FFFDF8 0%, #F8F6F0 40%, #FDFCF9 75%, #FFFFFF 100%);
    overflow: hidden;
}

.clinic-gallery .clinic-gallery__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.clinic-gallery .clinic-gallery__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px auto;
}

.clinic-gallery .clinic-gallery__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #0B6B60;
    background: rgba(14, 131, 120, 0.12);
    border: 1px solid rgba(14, 131, 120, 0.2);
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.clinic-gallery .clinic-gallery__title {
    font-size: clamp(2.1rem, 3.8vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #10364C;
    margin-bottom: 14px;
}

.clinic-gallery .clinic-gallery__subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #143F57;
}

/* Editorial Collage Composition */
.clinic-gallery .clinic-gallery__collage {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 24px;
    margin-bottom: 0;
    position: relative;
}

/* Large Featured Item */
.clinic-gallery .clinic-gallery__item--large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(22, 59, 82, 0.1);
}

/* Secondary Items */
.clinic-gallery .clinic-gallery__item--secondary-1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(22, 59, 82, 0.08);
}

.clinic-gallery .clinic-gallery__item--secondary-2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(22, 59, 82, 0.08);
}

/* Circular Highlight Overlay Element */
.clinic-gallery .clinic-gallery__circle-item {
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #FFFFFF;
    box-shadow: 0 16px 40px rgba(22, 59, 82, 0.15);
    top: 50%;
    left: 58%;
    transform: translate(-50%, -50%);
    z-index: 4;
    transition: transform 0.4s ease;
}

.clinic-gallery .clinic-gallery__circle-item:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

/* Image common styling */
.clinic-gallery .clinic-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.clinic-gallery .clinic-gallery__item--large:hover .clinic-gallery__img,
.clinic-gallery .clinic-gallery__item--secondary-1:hover .clinic-gallery__img,
.clinic-gallery .clinic-gallery__item--secondary-2:hover .clinic-gallery__img,
.clinic-gallery .clinic-gallery__circle-item:hover .clinic-gallery__img {
    transform: scale(1.05);
}

/* Floating Technology & Comfort Badges */
.clinic-gallery .clinic-gallery__badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(220, 232, 240, 0.85);
    border-radius: 999px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1A516E;
    box-shadow: 0 6px 18px rgba(22, 59, 82, 0.08);
    z-index: 2;
}

.clinic-gallery .clinic-gallery__badge-icon {
    color: #35D6C5;
    font-size: 0.9rem;
}


/* Responsive */
@media (max-width: 992px) {
    .clinic-gallery .clinic-gallery__collage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .clinic-gallery .clinic-gallery__item--large {
        grid-column: 1 / 2;
        grid-row: auto;
        height: 320px;
    }
    .clinic-gallery .clinic-gallery__item--secondary-1,
    .clinic-gallery .clinic-gallery__item--secondary-2 {
        grid-column: 1 / 2;
        grid-row: auto;
        height: 240px;
    }
    .clinic-gallery .clinic-gallery__circle-item {
        display: none;
    }
}

@media (max-width: 576px) {
    .clinic-gallery {
        padding: 70px 0;
    }
    .clinic-gallery .clinic-gallery__item--large {
        height: 240px;
    }
}
