/* =====================================================
   REAL CUSTOMER – EDITORIAL GALLERY (FINAL)
===================================================== */

.lx-real-editorial {
    margin-top: 72px;
}

/* =====================================================
   HERO
===================================================== */

.lx-real-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #eee;
}

/* MEDIA */
.lx-real-hero img,
.lx-real-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =====================================================
   HERO CAPTION (SLOGAN ON IMAGE)
===================================================== */

.lx-real-hero-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px 16px 20px;

    display: flex;
    flex-direction: column;
    gap: 8px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.25),
        rgba(0,0,0,0)
    );
}

/* TYPEWRITER */
.lx-real-typewriter {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

/* TAG */
.lx-real-hero-tag {
    display: inline-block;
    width: fit-content;

    padding: 4px 10px;
    font-size: 12px;
    color: #fff;

    background: rgba(255,255,255,.18);
    backdrop-filter: blur(4px);
    border-radius: 999px;
}

/* =====================================================
   INFO BLOCK (UNDER HERO)
===================================================== */

.lx-real-info {
    padding: 16px 16px 8px;
    text-align: center;
}

/* PRODUCT TITLE */
.lx-real-product-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45;
    color: #111;
}

/* CODE */
.lx-real-code {
    display: block;
    font-size: 12px;
    letter-spacing: .1em;
    color: #6b7280;
    margin-bottom: 4px;
}

/* DESC */
.lx-real-desc {
    margin-top: 6px;
    font-size: 14px;
    color: #6b7280;
}

.lx-real-desc strong {
    color: #111;
    font-weight: 600;
}

/* =====================================================
   THUMB STRIP
===================================================== */

.lx-real-strip {
    display: flex;
    gap: 10px;
    padding: 8px 16px 0;
    overflow-x: auto;
}

.lx-real-strip::-webkit-scrollbar {
    display: none;
}

.lx-real-thumb {
    flex: 0 0 auto;
    width: 84px;
    aspect-ratio: 3 / 4;

    border-radius: 12px;
    overflow: hidden;

    border: none;
    background: none;
    padding: 0;
    cursor: pointer;

    opacity: .55;
    transition: all .25s ease;
}

.lx-real-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ACTIVE / HOVER */
.lx-real-thumb.is-active {
    opacity: 1;
}

@media (hover: hover) {
    .lx-real-thumb:hover {
        opacity: .9;
        transform: translateY(-2px);
    }
}

/* =====================================================
   RESPONSIVE – DESKTOP
===================================================== */

@media (min-width: 768px) {

    .lx-real-editorial {
        margin-top: 96px;
    }

    .lx-real-hero {
        max-width: 520px;
        margin: 0 auto;
        border-radius: 20px;
    }

    .lx-real-hero img,
    .lx-real-hero video {
        border-radius: 20px;
    }

    .lx-real-info {
        max-width: 520px;
        margin: 0 auto;
    }

    .lx-real-strip {
        max-width: 520px;
        margin: 0 auto;
        padding-top: 12px;
    }

    .lx-real-thumb {
        width: 96px;
    }
}
