/* ============================================
   NUTRAGILE - Section Phytothérapie
   À ajouter dans custom-header.css ou fichier dédié
   ============================================ */

.nt-phyto {
    padding: 48px 0;
    background-color: var(--nutragile-light-cream);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.nt-phyto__wrapper {
    display: flex;
    align-items: center;
    gap: 88px;
    max-width: 1336px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---- Image ---- */
.nt-phyto__image {
    flex-shrink: 0;
    width: 45%;
    border-radius: 8px;
    overflow: hidden;
}

.nt-phyto__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- Contenu texte ---- */
.nt-phyto__content {
    flex: 1;
    min-width: 0;
}

.nt-phyto__title {
    font-family: var(--nutragile-font);
    font-weight: 400;
    font-size: 26px;
    color: var(--nutragile-text-dark);
    margin: 0 0 16px;
    line-height: 1.3;
}

.nt-phyto__text {
    font-family: var(--nutragile-font-link);
    font-weight: 300;
    font-size: 14px;
    color: var(--nutragile-text-dark);
    line-height: 22px;
    margin: 0 0 12px;
}

.nt-phyto__content .nutragile-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 4.8px;
    font-family: var(--nutragile-font);
    font-size: 13px;
    padding: 8px 17.6px;
    border-radius: 6px;
    margin-top: 8px;
}

.nt-phyto__arrow {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.nt-phyto__content .nutragile-btn-light:hover .nt-phyto__arrow {
    transform: translateX(2.4px);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .nt-phyto__wrapper {
        flex-direction: column;
        gap: 24px;
        padding: 0 16px;
    }

    .nt-phyto__image {
        width: 100%;
        max-height: 280px;
    }
}

@media (max-width: 600px) {
    .nt-phyto {
        padding: 32px 0;
    }

    .nt-phyto__title {
        font-size: 18px;
    }
}
