.story {
    display: flex;
    height: 500px;
    background: var(--color-bg);
}

/* LEFT IMAGE */
.story__left {
    width: 50%;
}

.story__left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT CONTENT */
.story__right {
    width: 50%;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(
        to right,
        #000 80%,
        rgba(0,0,0,0.7)
    );
}

/* SUBTITLE */
.story__subtitle {
    color: var(--color-primary);
    font-size: var(--fs-sm);
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

/* TITLE */
.story__title {
    font-size: var(--fs-xxl);
    font-family: var(--font-title);
    margin-bottom: var(--space-md);
    position: relative;
}

/* 🔥 TRAIT SOUS TITRE */
.story__title::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    margin-top: 10px;
}

/* TEXT */
.story__text {
    color: var(--color-text-muted);
    font-size: var(--fs-md);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    max-width: 480px;
}

/* BUTTON (version propre premium) */
.story__btn {
    margin-top: var(--space-md);
    display: inline-block;
    width: 40%;
    background: var(--color-primary);
    color: #000;

    padding: 8px 14px;          /* 🔥 compact */
    font-size: 11px;            /* 🔥 fin */
    letter-spacing: 1.5px;

    text-decoration: none;
    transition: var(--transition-fast);
}

.story__btn:hover {
    background: var(--color-primary-hover);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .story {
        flex-direction: column;
        height: auto;
    }

    .story__left,
    .story__right {
        width: 100%;
    }

    .story__left img {
        height: 260px;
    }

    .story__right {
        padding: var(--space-lg);
        text-align: center;
        align-items: center;
    }

    .story__text {
        max-width: 300px;
    }

    /* 🔥 CENTRAGE TRAIT */
    .story__title::after {
        margin-left: auto;
        margin-right: auto;
    }
}