.newsletter_top {
    height: 140px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: url("https://images.unsplash.com/photo-1587241321921-91a834d6d191?q=80&w=400") left/cover no-repeat;
}

/* GRID 3 ZONES */
.newsletter__inner {
    display: grid;
    grid-template-columns: 300px 1fr auto;
    height: 100%;
}

/* IMAGE GAUCHE 
.newsletter__left {
    background: url("https://images.unsplash.com/photo-1587241321921-91a834d6d191?q=80&w=400") center/cover no-repeat;
}  */

/* CENTRE (texte + icone) */
.newsletter__content {
    display: flex;
    align-items: center;
    justify-content: center; /* 🔥 CENTRAGE HORIZONTAL */

    gap: var(--space-md);
    padding: 0 var(--space-lg);

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.95),
        rgba(0,0,0,0.8)
    );

    text-align: left; /* pour garder le texte propre */
}

/* ICONE */
.newsletter__icon {
    width: 55px;
    height: 55px;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-round);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-primary);
    font-size: 22px;
}

/* TEXTE */
.newsletter__text h2 {
    font-family: var(--font-title);
    font-size: var(--fs-xl);
    margin-bottom: 5px;
}

.newsletter__text p {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
}

/* DROITE (formulaire) */
.newsletter__form {
    display: flex;
    align-items: center;

    padding-right: var(--space-xl);
    background: rgba(0,0,0,0.9);
}

/* INPUT */
.newsletter__form input {
    height: 50px;
    padding: 0 var(--space-md);

    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    border-right: none;

    color: var(--color-text);
    outline: none;
}

/* BUTTON */
.newsletter__form button {
    height: 50px;
    padding: 0 var(--space-md);

    background: linear-gradient(135deg, #d4af37, #f1d77a);
    color: #000;
    border: none;
    cursor: pointer;
}


@media (max-width: 768px) {

    .newsletter_top {
        height: auto;
    }

    .newsletter__inner {
        display: flex;
        flex-direction: column;
    }

    /* IMAGE */
    .newsletter__left {
        width: 100%;
        height: 180px;
        background-size: cover;
        background-position: center;
    }

    /* CONTENT */
    .newsletter__content {
        justify-content: center;
        text-align: center;
        padding: var(--space-md);
        flex-direction: column;
    }

    .newsletter__text h2 {
        font-size: var(--fs-lg);
    }

    /* FORM */
    .newsletter__form {
        flex-direction: column;
        width: 100%;
        padding: var(--space-md);
        gap: var(--space-sm);
    }

    .newsletter__form input,
    .newsletter__form button {
        width: 100%;
        height: 45px;
    }

    .newsletter__form input {
        border-right: 1px solid var(--color-border); /* reset fusion */
    }
}