.b4-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.b4-showcase.is-reverse {
    flex-direction: row-reverse;
}

.b4-showcase__media,
.b4-showcase__content {
    min-width: 0;
}

.b4-showcase__media {
    flex: 0 0 52%;
    max-width: 52%;
    height: 520px;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.b4-showcase__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.b4-showcase__content {
    flex: 1 1 auto;
    max-width: 620px;
    position: relative;
    z-index: 2;
}

.b4-showcase__title {
    margin: 0 0 20px;
    font-size: clamp(32px, 4vw, 64px);
    line-height: 1.06;
    font-weight: 700;
    color: #17181f;
    letter-spacing: -0.03em;
}

.b4-showcase__desc {
    font-size: 20px;
    line-height: 1.7;
    color: #4e5565;
    margin: 0 0 26px;
}

.b4-showcase__desc p {
    margin: 0;
}

.b4-showcase__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .3s ease;
    background: #f28c28;
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
}

.b4-showcase.anim-reveal,
.b4-showcase.anim-fade-up,
.b4-showcase.anim-fade-left,
.b4-showcase.anim-fade-right,
.b4-showcase.anim-float,
.b4-showcase.anim-zoom,
.b4-showcase__media,
.b4-showcase__content {
    will-change: transform, opacity;
}

.b4-observe {
    opacity: 0;
    transition: opacity .8s ease, transform .8s ease;
}

.b4-observe.is-visible {
    opacity: 1;
    transform: none !important;
}

.b4-showcase__media.anim-reveal,
.b4-showcase__content.anim-fade-left {
    transform: translateX(-42px);
}

.b4-showcase.is-reverse .b4-showcase__media.anim-reveal,
.b4-showcase__content.anim-fade-right {
    transform: translateX(42px);
}

.b4-showcase__content.anim-fade-up {
    transform: translateY(36px);
}

.b4-showcase__media.anim-float.is-visible {
    animation: b4Float 5s ease-in-out infinite;
}

.b4-showcase__media.anim-zoom .b4-showcase__image {
    transition: transform 6s ease;
    transform: scale(1.08);
}

.b4-showcase__media.anim-zoom.is-visible .b4-showcase__image {
    transform: scale(1);
}

@keyframes b4Float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
    .b4-showcase {
        gap: 34px;
    }

    .b4-showcase__media {
        flex-basis: 50%;
        max-width: 50%;
        height: 420px;
    }

    .b4-showcase__title {
        font-size: clamp(28px, 3.5vw, 48px);
    }

    .b4-showcase__desc {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .b4-showcase,
    .b4-showcase.is-reverse {
        flex-direction: column;
        gap: 24px;
    }

    .b4-showcase__media,
    .b4-showcase__content {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .b4-showcase__media {
        height: 300px;
    }

    .b4-showcase__title {
        font-size: clamp(26px, 8vw, 40px);
    }

    .b4-showcase__desc {
        font-size: 16px;
        line-height: 1.65;
    }
}
