/**--------------------------------------------------------------
    APERÇU DES OFFRES — bande d'orientation (home, avant les tarifs)
    Volontairement plus légère que les cartes de prix (pas de bordure,
    pas de tilt) : icône + accroche + « idéal si » + lien Découvrir.
--------------------------------------------------------------*/
.offer-overview {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.25rem;
    gap: 1rem;
}

/* L'espacement vient du gap : on neutralise les marges par défaut/utilitaires */
.offer-overview > * {
    margin: 0;
}

.offer-overview__icon {
    margin-bottom: 0.5rem;
}

.offer-overview__title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.offer-overview__badge {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 201, 0, 0.15);
    border: 1px solid rgba(255, 201, 0, 0.5);
    color: var(--fourth-color);
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.offer-overview__for {
    color: rgba(255, 255, 255, 0.6);
}

a.offer-overview__link {
    margin-top: auto;        /* pousse les liens en bas → alignés sur toutes les colonnes */
    padding-top: 0.75rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

a.offer-overview__link i {
    transition: transform 0.2s ease;
}

a.offer-overview__link:hover,
a.offer-overview__link:focus-visible {
    color: var(--fourth-color);
}

a.offer-overview__link:hover i {
    transform: translateX(4px);
}

/* Séparateurs verticaux discrets entre colonnes (desktop uniquement) */
@media (min-width: 992px) {
    .offer-overview-col + .offer-overview-col .offer-overview {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Note hébergement sous la bande */
.offer-overview__note {
    color: rgba(255, 255, 255, 0.6);
}

.offer-overview__note a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.offer-overview__note a:hover,
.offer-overview__note a:focus-visible {
    color: var(--fourth-color);
}
