﻿.alz-home {
    padding: 0 0 10px;
}

.alz-home__stack {
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.alz-section {
    background: transparent;
}

.alz-section__title {
    margin: 0 0 18px;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    color: var(--alz-text);
    text-transform: uppercase;
    letter-spacing: .02em;
}

.alz-section__title--left {
    margin-bottom: 0;
    text-align: left;
}

.alz-carousel {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.alz-carousel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.alz-carousel__controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.alz-carousel__btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(74,49,36,.12);
    background: rgba(255,255,255,.86);
    color: var(--alz-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s ease;
}

    .alz-carousel__btn:hover {
        background: #fff;
        border-color: rgba(74,49,36,.22);
    }

    .alz-carousel__btn:disabled {
        opacity: .35;
        cursor: default;
    }

    .alz-carousel__btn svg {
        width: 18px;
        height: 18px;
    }

.alz-carousel__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .alz-carousel__viewport::-webkit-scrollbar {
        display: none;
    }

.alz-carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 64px) / 5);
    gap: 16px;
}

.alz-carousel__item {
    min-width: 0;
}

.alz-hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    border: 1px solid rgba(74,49,36,.08);
    background: #ede6dc;
}

.alz-hero__media,
.alz-hero__media img {
    width: 100%;
    height: 100%;
}

    .alz-hero__media img {
        position: absolute;
        inset: 0;
        object-fit: cover;
    }

.alz-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(47,39,31,.22) 0%, rgba(47,39,31,.08) 40%, rgba(47,39,31,.26) 100%);
}

.alz-hero__content {
    position: relative;
    z-index: 1;
    min-height: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 36px;
    text-align: center;
    color: #fff;
}

.alz-hero__title {
    margin: 0 0 12px;
    font-size: 64px;
    line-height: 1.02;
    font-weight: 400;
    text-transform: uppercase;
}

.alz-hero__text {
    max-width: 720px;
    margin: 0 0 24px;
    font-size: 15px;
    color: rgba(255,255,255,.88);
}

.alz-hero__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#hero-slider.alz-hero {
    min-height: 0;
}

    #hero-slider.alz-hero .alz-hero__content {
        min-height: 100%;
        padding-bottom: 96px;
    }

.alz-hero__eyebrow {
    margin: 0 0 10px;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.88);
}

.alz-hero__nav {
    position: absolute;
    top: 50%;
    z-index: 6;
    transform: translateY(-50%);
}

.alz-hero__nav--prev {
    left: 20px;
}

.alz-hero__nav--next {
    right: 20px;
}

.alz-hero__dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 6;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.alz-hero__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    cursor: pointer;
}

    .alz-hero__dot.is-active,
    #hero-slider .hero-dot[aria-current="true"] {
        background: #fff;
    }

@media (max-width: 1199.98px) {
    #hero-slider.alz-hero {
        min-height: 0;
    }

        #hero-slider.alz-hero .alz-hero__content {
            min-height: 100%;
        }
}

@media (max-width: 991.98px) {
    #hero-slider.alz-hero {
        min-height: 0;
    }

        #hero-slider.alz-hero .alz-hero__content {
            min-height: 100%;
            padding-bottom: 84px;
        }
}

@media (max-width: 575.98px) {
    #hero-slider.alz-hero {
        min-height: 0;
    }

        #hero-slider.alz-hero .alz-hero__content {
            min-height: 100%;
            padding-bottom: 72px;
        }

    .alz-hero__nav--prev {
        left: 12px;
    }

    .alz-hero__nav--next {
        right: 12px;
    }

    .alz-hero__dots {
        bottom: 14px;
    }
}


.alz-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .alz-dots span {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: rgba(255,255,255,.55);
    }

        .alz-dots span.is-active {
            background: #fff;
        }

.alz-hero .alz-dots {
    margin-top: 20px;
}

.alz-dots--section {
    margin-top: 14px;
}

    .alz-dots--section span {
        background: rgba(47,39,31,.22);
    }

        .alz-dots--section span.is-active {
            background: var(--alz-text);
        }

.alz-tileGrid {
    display: grid;
    gap: 16px;
}

.alz-tileGrid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.alz-tileGrid--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.alz-tileGrid--prices .alz-tile__price {
    display: block;
}

.alz-tile {
    display: block;
    color: var(--alz-text);
}

.alz-tile__media {
    aspect-ratio: 4 / 5;
    background: #ebe3d8;
    overflow: hidden;
    border: 1px solid rgba(74,49,36,.06);
}

.alz-tile__media--sm {
    aspect-ratio: 1 / 1;
}

.alz-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
    transition: none;
}

.alz-tile__name {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: var(--alz-text);
    min-height: 38px;
}

.alz-tile__price {
    display: none;
    margin-top: 4px;
    text-align: center;
    font-size: 14px;
    color: var(--alz-text-soft);
}

.alz-productGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.alz-splitBanner {
    min-height: 320px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    border: 1px solid rgba(74,49,36,.08);
    overflow: hidden;
    background: #eadfd2;
}

.alz-splitBanner__media {
    min-height: 320px;
    background: #e6ddcf;
}

    .alz-splitBanner__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: none;
        transition: none;
    }

.alz-splitBanner__content {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 44px;
    background: radial-gradient(circle at right center, rgba(178,123,79,.32), transparent 32%), linear-gradient(180deg, #3f2a1f 0%, #241914 100%);
    color: #fff;
}

.alz-splitBanner__eyebrow {
    font-size: 20px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.alz-splitBanner__title {
    margin: 4px 0 12px;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 38px;
    line-height: 1.06;
    font-weight: 400;
    text-transform: uppercase;
}

.alz-splitBanner__text {
    max-width: 360px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.82);
}

.alz-trustGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    text-align: center;
}

.alz-trustItem {
    padding: 2px 8px;
}

.alz-trustItem__title {
    font-size: 15px;
    color: var(--alz-text);
    margin-bottom: 6px;
}

.alz-trustItem__text {
    font-size: 13px;
    color: var(--alz-text-soft);
    line-height: 1.6;
}

.alz-testimonials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    text-align: center;
}

.alz-testimonials__item {
    color: var(--alz-text-soft);
    font-size: 15px;
    font-style: italic;
    line-height: 1.8;
}

    .alz-testimonials__item span {
        display: block;
        margin-top: 8px;
        color: var(--alz-text);
        font-style: normal;
        font-size: 13px;
        font-weight: 500;
    }

.alz-gallery {
    display: grid;
    grid-template-columns: 1.05fr .85fr .95fr .95fr 1.05fr;
    grid-auto-rows: 168px;
    gap: 12px;
}

.alz-gallery__item {
    display: block;
    overflow: hidden;
    background: #e7ddd0;
    min-height: 168px;
    border: 1px solid rgba(74,49,36,.05);
}

    .alz-gallery__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none;
        transition: none;
    }

    .alz-gallery__item.is-lead {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .alz-gallery__item.is-stack-top {
        grid-column: 2;
        grid-row: 1;
    }

    .alz-gallery__item.is-wide-top {
        grid-column: 3 / span 2;
        grid-row: 1;
    }

    .alz-gallery__item.is-stack-bottom {
        grid-column: 2;
        grid-row: 2;
    }

    .alz-gallery__item.is-center-bottom {
        grid-column: 3;
        grid-row: 2;
    }

    .alz-gallery__item.is-right-bottom {
        grid-column: 4;
        grid-row: 2;
    }

    .alz-gallery__item.is-social {
        grid-column: 5;
        grid-row: 1 / span 2;
    }

@media (max-width: 1199.98px) {
    .alz-carousel__track {
        grid-auto-columns: calc((100% - 48px) / 4);
    }

    .alz-hero {
        min-height: 560px;
    }

    .alz-hero__content {
        min-height: 560px;
    }

    .alz-hero__title {
        font-size: 52px;
    }
}

@media (max-width: 991.98px) {
    .alz-home__stack {
        gap: 34px;
    }

    .alz-carousel__track {
        grid-auto-columns: calc((100% - 32px) / 3);
    }

    .alz-hero {
        min-height: 460px;
    }

    .alz-hero__content {
        min-height: 460px;
    }

    .alz-hero__title {
        font-size: 40px;
    }

    .alz-productGrid,
    .alz-tileGrid--4,
    .alz-tileGrid--5,
    .alz-trustGrid,
    .alz-testimonials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .alz-splitBanner {
        grid-template-columns: 1fr;
    }

    .alz-splitBanner__media {
        min-height: 260px;
    }

    .alz-splitBanner__content {
        min-height: 220px;
        padding: 28px 24px;
    }

    .alz-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: 180px;
    }

    .alz-gallery__item,
    .alz-gallery__item.is-lead,
    .alz-gallery__item.is-stack-top,
    .alz-gallery__item.is-wide-top,
    .alz-gallery__item.is-stack-bottom,
    .alz-gallery__item.is-center-bottom,
    .alz-gallery__item.is-right-bottom,
    .alz-gallery__item.is-social {
        grid-column: auto;
        grid-row: auto;
    }

        .alz-gallery__item.is-wide-top {
            grid-column: span 2;
        }
}

@media (max-width: 767.98px) {
    .alz-carousel__track {
        grid-auto-columns: calc((100% - 16px) / 2);
    }

    .alz-carousel__head {
        align-items: center;
    }
}

@media (max-width: 575.98px) {
    .alz-home__stack {
        gap: 28px;
    }

    .alz-section__title {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .alz-section__title--left {
        margin-bottom: 0;
    }

    .alz-carousel {
        gap: 14px;
    }

    .alz-carousel__head {
        gap: 12px;
    }

    .alz-carousel__btn {
        width: 38px;
        height: 38px;
    }

    .alz-carousel__track {
        grid-auto-columns: 100%;
    }

    .alz-hero {
        min-height: 340px;
    }

    .alz-hero__content {
        min-height: 340px;
        padding: 34px 18px;
    }

    .alz-hero__title {
        font-size: 30px;
    }

    .alz-hero__text {
        font-size: 13px;
    }

    .alz-productGrid,
    .alz-tileGrid--4,
    .alz-tileGrid--5,
    .alz-trustGrid,
    .alz-testimonials,
    .alz-gallery {
        grid-template-columns: 1fr;
    }

    .alz-gallery__item.is-wide-top {
        grid-column: auto;
    }

    .alz-splitBanner__eyebrow {
        font-size: 16px;
    }

    .alz-splitBanner__title {
        font-size: 28px;
    }

    .alz-splitBanner__text {
        font-size: 13px;
    }
    .alz-carousel__head {
        align-items: flex-start;
    }

    .alz-section__title--left {
        flex: 1 1 auto;
        min-width: 0;
        padding-right: 8px;
    }

    .alz-carousel__controls {
        flex: 0 0 auto;
    }
}
.alz-trustItem__iconWrap {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.alz-trustItem__icon {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(74,49,36,.08);
    overflow: hidden;
}

    .alz-trustItem__icon img {
        width: 26px;
        height: 26px;
        object-fit: contain;
        display: block;
    }
.alz-bannerPair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.alz-bannerCard {
    position: relative;
    display: block;
    min-height: 340px;
    overflow: hidden;
    border: 1px solid rgba(74,49,36,.08);
    background: #e7ddd0;
    color: #fff;
}

.alz-bannerCard__media,
.alz-bannerCard__media img {
    width: 100%;
    height: 100%;
}

    .alz-bannerCard__media img {
        object-fit: cover;
        display: block;
    }

.alz-bannerCard__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(47,39,31,.08) 0%, rgba(47,39,31,.58) 100%);
}

.alz-bannerCard__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 24px;
}

.alz-bannerCard__eyebrow {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.82);
}

.alz-bannerCard__title {
    margin-top: 8px;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 28px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
}

.alz-bannerCard__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,.65);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,255,255,.08);
}

.alz-splitBanner__actions {
    margin-top: 20px;
}

.alz-splitBanner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,.55);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(255,255,255,.08);
}

@media (max-width: 991.98px) {
    .alz-bannerPair {
        grid-template-columns: 1fr;
    }

    .alz-bannerCard {
        min-height: 280px;
    }
}
/* Alaz Mobile Responsive Improvements */
@media (max-width: 767.98px) {
    .alz-tileGrid--curated {
        display: grid;
        grid-template-columns: none !important;
        grid-auto-flow: column;
        grid-auto-columns: 138px;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 2px 8px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

        .alz-tileGrid--curated::-webkit-scrollbar {
            display: none;
        }

        .alz-tileGrid--curated .alz-tile {
            min-width: 0;
            scroll-snap-align: start;
        }

        .alz-tileGrid--curated .alz-tile__media {
            aspect-ratio: 1 / 1;
        }

        .alz-tileGrid--curated .alz-tile__name {
            margin-top: 8px;
            font-size: 13px;
            line-height: 1.35;
            min-height: 34px;
        }
}

@media (max-width: 575.98px) {
    .alz-tileGrid--curated {
        grid-auto-columns: 118px;
        gap: 10px;
    }

        .alz-tileGrid--curated .alz-tile__name {
            font-size: 12px;
            min-height: 32px;
        }

    .alz-trustGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px 10px;
    }

    .alz-trustItem {
        padding: 0 4px;
    }

    .alz-trustItem__iconWrap {
        margin-bottom: 10px;
    }

    .alz-trustItem__icon {
        width: 46px;
        height: 46px;
    }

        .alz-trustItem__icon img {
            width: 22px;
            height: 22px;
        }

    .alz-trustItem__title {
        font-size: 13px;
        margin-bottom: 4px;
        line-height: 1.35;
    }

    .alz-trustItem__text {
        font-size: 12px;
        line-height: 1.45;
    }
}
@media (max-width: 575.98px) {
    .alz-productGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px 10px;
    }

    .alz-carousel__track {
        grid-auto-columns: calc((100% - 10px) / 2);
        gap: 10px;
    }
}
/* Alaz Mobile Hero Slider Fix */
@media (max-width: 640px) {
    #hero-slider.alz-hero {
        width: 100vw !important;
        max-width: 100vw !important;
        height: auto !important;
        aspect-ratio: 2.35 / 1 !important;
        min-height: 154px;
        max-height: 190px;
        margin-left: calc(-1 * ((100vw - 100%) / 2)) !important;
        margin-right: 0 !important;
        overflow: hidden !important;
    }

        #hero-slider.alz-hero .hero-track,
        #hero-slider.alz-hero .hero-slide {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }

            #hero-slider.alz-hero .hero-slide img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: 34% center;
            }

        #hero-slider.alz-hero .hero-prev,
        #hero-slider.alz-hero .hero-next,
        #hero-slider.alz-hero .alz-hero__nav {
            display: none !important;
        }

        #hero-slider.alz-hero .hero-dot,
        #hero-slider.alz-hero .alz-hero__dot {
            width: 8px;
            height: 8px;
        }

        #hero-slider.alz-hero .hero-dots,
        #hero-slider.alz-hero .alz-hero__dots {
            bottom: 10px;
        }
}
/* Alaz Mobile Featured Banner Pair Fix */
@media (max-width: 767.98px) {
    .alz-bannerPair {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .alz-bannerCard {
        min-height: 0 !important;
        aspect-ratio: 1600 / 740;
        background: #e7ddd0;
    }

    .alz-bannerCard__media,
    .alz-bannerCard__media img {
        width: 100%;
        height: 100%;
    }

        .alz-bannerCard__media img {
            object-fit: contain !important;
            object-position: center center;
            background: #e7ddd0;
        }

    .alz-bannerCard__content {
        padding: 16px;
    }

    .alz-bannerCard__title {
        font-size: 22px;
    }

    .alz-bannerCard__btn {
        min-height: 36px;
        margin-top: 10px;
        padding: 0 14px;
        font-size: 11px;
    }
}

@media (max-width: 575.98px) {
    .alz-bannerCard {
        aspect-ratio: 1600 / 740;
    }

    .alz-bannerCard__content {
        padding: 14px;
    }

    .alz-bannerCard__eyebrow {
        font-size: 10px;
    }

    .alz-bannerCard__title {
        font-size: 18px;
    }

    .alz-bannerCard__btn {
        min-height: 34px;
        font-size: 10px;
    }
}
/* Alaz Single Banner Image Only Fix */
.alz-splitBanner--imageOnly {
    display: block;
    min-height: 0;
    background: transparent;
}

    .alz-splitBanner--imageOnly .alz-splitBanner__media {
        width: 100%;
        min-height: 0;
        background: #e7ddd0;
    }

        .alz-splitBanner--imageOnly .alz-splitBanner__media img {
            width: 100%;
            height: auto;
            object-fit: contain;
            object-position: center center;
            display: block;
        }

@media (max-width: 767.98px) {
    .alz-splitBanner--imageOnly {
        border: 1px solid rgba(74,49,36,.08);
        overflow: hidden;
    }

        .alz-splitBanner--imageOnly .alz-splitBanner__media img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }
}
/* Alaz Footer Gallery Mobile Layout + Lightbox */
.alz-gallery__item {
    cursor: zoom-in;
}

body.alz-gallery-lightbox-open {
    overflow: hidden;
}

.alz-galleryLightbox[hidden] {
    display: none !important;
}

.alz-galleryLightbox {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.alz-galleryLightbox__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgba(22, 18, 15, .74);
    cursor: zoom-out;
}

.alz-galleryLightbox__frame {
    position: relative;
    z-index: 1;
    width: min(1120px, 92vw);
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 253, 249, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

.alz-galleryLightbox__img {
    width: 100%;
    height: auto;
    max-height: 88vh;
    object-fit: contain;
    display: block;
}

.alz-galleryLightbox__close {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 253, 249, .94);
    color: #2f271f;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .alz-galleryLightbox__close:hover {
        background: #fff;
    }

/* Mobilde galeri desktop dizilimini korusun */
@media (max-width: 991.98px) {
    .alz-gallery {
        grid-template-columns: 1.05fr .85fr .95fr .95fr 1.05fr !important;
        grid-auto-rows: clamp(64px, 18vw, 168px) !important;
        gap: clamp(5px, 1.1vw, 12px) !important;
    }

    .alz-gallery__item {
        min-height: 0 !important;
    }

        .alz-gallery__item.is-lead {
            grid-column: 1 !important;
            grid-row: 1 / span 2 !important;
        }

        .alz-gallery__item.is-stack-top {
            grid-column: 2 !important;
            grid-row: 1 !important;
        }

        .alz-gallery__item.is-wide-top {
            grid-column: 3 / span 2 !important;
            grid-row: 1 !important;
        }

        .alz-gallery__item.is-stack-bottom {
            grid-column: 2 !important;
            grid-row: 2 !important;
        }

        .alz-gallery__item.is-center-bottom {
            grid-column: 3 !important;
            grid-row: 2 !important;
        }

        .alz-gallery__item.is-right-bottom {
            grid-column: 4 !important;
            grid-row: 2 !important;
        }

        .alz-gallery__item.is-social {
            grid-column: 5 !important;
            grid-row: 1 / span 2 !important;
        }
}

@media (max-width: 575.98px) {
    .alz-gallery {
        grid-auto-rows: clamp(58px, 18vw, 92px) !important;
        gap: 5px !important;
    }

    .alz-galleryLightbox {
        padding: 16px;
    }

    .alz-galleryLightbox__frame {
        width: 94vw;
        max-height: 82vh;
    }

    .alz-galleryLightbox__img {
        max-height: 82vh;
    }

    .alz-galleryLightbox__close {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
        font-size: 27px;
    }
}