/*
 * Go Livraison - personnalisation rapide
 * Modifie uniquement ce fichier pour changer le visuel sans toucher styles.css
 */

:root {
    /*
     * Changer les images du hero ici:
     * 1) place l'image dans /images
     * 2) remplace le chemin ci-dessous
     */
    --gl-hero-image-1: url(../images/hero/hero.jpeg);
    --gl-hero-image-2: url(../images/hero/close-up-delivery-person-with-parcels.jpg);
    --gl-hero-image-3: url(../images/hero/transit01.jpg);

    /*
     * Ajuster le cadrage de chaque slide si besoin
     * Exemples: center center | center top | 60% 30%
     */
    --gl-hero-position-1: center center;
    --gl-hero-position-2: center center;
    --gl-hero-position-3: center center;
}

.gl-partner-logo--image {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    min-width: auto !important;
}

.gl-partner-logo--image img {
    display: block;
    height: 124px;
    width: auto;
    max-width: none;
    object-fit: contain;
}

/* ------------------------------------------------------------------
 * Correctifs responsive (header, services, partenaires)
 * Objectif: mobile propre + laptops 13"-17" sans débordements
 * ------------------------------------------------------------------ */

/* Header: réduire logo/typo sur laptops pour éviter le débordement */
@media (max-width: 1600px) {
    .s-header__logo .gl-site-logo {
        height: clamp(70px, 6.5vw, 110px);
        max-width: min(420px, 78vw);
    }
}

@media (max-width: 1440px) {
    .s-header__nav a {
        font-size: 1.45rem;
        padding-inline: 0.9rem;
    }
}

@media (max-width: 1366px) {
    .s-header__nav {
        margin-left: 1rem;
    }

    .s-header__nav a {
        font-size: 1.35rem;
        padding-inline: 0.75rem;
    }
}

@media (max-width: 1280px) {
    .s-header__nav a {
        font-size: 1.28rem;
        padding-inline: 0.65rem;
    }
}

/* Services (Nos services pour les clients): carrousel contrôlé par boutons (1 / 2 / 3 cartes selon écran) */
.gl-services-slider {
    position: relative;
}

.gl-services-slider__viewport {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
}

/* Desktop: 3 cartes */
.gl-services-grid > .column,
.gl-services-slide {
    flex: 0 0 calc((100% - (var(--vspace-0_625) * 2)) / 3);
    width: calc((100% - (var(--vspace-0_625) * 2)) / 3);
    min-width: 0;
}

/* Tablette: 2 cartes */
@media (max-width: 1000px) {
    .gl-services-grid > .column,
    .gl-services-slide {
        flex: 0 0 calc((100% - var(--vspace-0_625)) / 2);
        width: calc((100% - var(--vspace-0_625)) / 2);
    }
}

/* Mobile: 1 carte */
@media (max-width: 700px) {
    .gl-services-grid > .column,
    .gl-services-slide {
        flex: 0 0 100%;
        width: 100%;
    }
}

.gl-services-nav {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 6;
    pointer-events: none; /* les boutons seuls restent cliquables */
}

/* Copier le style des flèches "Avis clients" (Swiper) */
.gl-services-slider .swiper-button-prev,
.gl-services-slider .swiper-button-next {
    width      : 36px;
    height     : 36px;
    margin-top : 0;
    top        : 50%;
    transform  : translateY(-50%);
    border-radius : 999px;
    background : #b31917; /* rouge */
    color      : #ffffff;
    border     : 1px solid rgba(10, 10, 11, 0.14);
    box-shadow : 0 6px 18px rgba(0, 0, 0, 0.25);
    transition : background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    --swiper-navigation-size: 14px;
    pointer-events: auto;
    z-index: 7;
}

.gl-services-slider .swiper-button-prev:hover,
.gl-services-slider .swiper-button-next:hover {
    background: #ffffff;
    color: #b31917;
    border-color: rgba(179, 25, 23, 0.55);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.gl-services-slider .swiper-button-prev::after,
.gl-services-slider .swiper-button-next::after {
    font-size   : 11px;
    font-weight : 800;
}

.gl-services-slider .swiper-button-prev { left: 0; }
.gl-services-slider .swiper-button-next { right: 0; }

@media screen and (max-width: 699px) {
    /* Sur mobile, on garde les flèches DANS le viewport (sinon coupées par overflow:hidden). */
    .gl-services-slider .swiper-button-prev,
    .gl-services-slider .swiper-button-next {
        width: 34px;
        height: 34px;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
        --swiper-navigation-size: 13px;
        background: rgba(179, 25, 23, 0.96);
        box-shadow: 0 10px 24px rgba(0,0,0,0.28);
    }

    .gl-services-slider .swiper-button-prev { left: 6px; }
    .gl-services-slider .swiper-button-next { right: 6px; }
}

/* Partenaires: enlever le fond rouge “bloc” et revenir au fond blanc du site */
.gl-partners-marquee {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0.25rem 0 !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
}

.gl-partners-marquee__group {
    padding-inline: 0.5rem !important;
    gap: clamp(0.7rem, 2.2vw, 1.35rem) !important;
}

/* Partenaires: stop défilement, logos fixes centrés */
.gl-partners-marquee__track {
    animation: none !important;
    transform: none !important;
    width: 100% !important;
    justify-content: center !important;
}

.gl-partners-marquee__group {
    width: 100% !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

/* On masque le second groupe (utilisé uniquement pour le défilement infini) */
#glPartnerGroupB {
    display: none !important;
}

@media (max-width: 820px) {
    .gl-partner-logo--image img {
        height: 96px;
    }
}

/* ---- Responsive global (desktop 13"-18" + mobile 5"-8") ---- */
@media (max-width: 1680px) {
    .row {
        width: min(94vw, 1320px);
    }
}

@media (max-width: 1536px) {
    .row {
        width: min(94vw, 1240px);
    }
}

@media (max-width: 1440px) {
    .row {
        width: min(94vw, 1160px);
    }
}

@media (max-width: 1366px) {
    .s-header__inner,
    .s-footer .row,
    .gl-contact-layout__grid {
        gap: 1.4rem;
    }

    .display-1 {
        font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    }
}

@media (max-width: 1280px) {
    .gl-services-grid,
    .gl-client-promo__grid {
        gap: 1rem;
    }

    .gl-service-card,
    .gl-contact-main {
        padding: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .s-header__cta {
        display: none;
    }

    .gl-services-slide,
    .gl-advantages__panel,
    .gl-pricing-wrap,
    .gl-contact-layout__grid {
        margin-top: 1rem;
    }

    .gl-apply-form .btn,
    .gl-dual-actions .btn {
        width: 100%;
    }
}

@media (max-width: 820px) {
    .gl-partners-marquee__group {
        gap: 0.7rem;
    }

    .gl-partner-logo {
        font-size: 0.78rem;
        padding: 0.5rem 0.7rem;
    }
}

@media (max-width: 768px) {
    .display-1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.1;
    }

    h1, .h1 {
        font-size: clamp(1.7rem, 7vw, 2.4rem);
    }

    h2, .h2 {
        font-size: clamp(1.35rem, 6vw, 1.95rem);
    }

    .gl-site-logo {
        max-width: 138px;
        height: auto;
    }

    .gl-howto-photo,
    .gl-client-promo__image,
    .gl-info-slide__image {
        width: 100%;
        height: auto;
    }

    .gl-whatsapp-float {
        right: 14px;
        bottom: 14px;
        transform: scale(0.92);
        transform-origin: bottom right;
    }
}

@media (max-width: 576px) {
    .row {
        width: 92vw;
    }

    .btn,
    button,
    input,
    select,
    textarea {
        font-size: 16px;
    }

    .gl-service-card,
    .gl-client-panel,
    .gl-contact-channel,
    .gl-contact-main {
        padding: 1rem;
        border-radius: 12px;
    }
}

@media (max-width: 430px) {
    .s-header__inner {
        padding-inline: 0.4rem;
    }

    .gl-footer__legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.45rem;
    }
}

@media (max-width: 390px) {
    .display-1 {
        font-size: clamp(1.8rem, 10vw, 2.35rem);
    }

    .gl-site-logo {
        max-width: 122px;
    }
}

@media (max-width: 360px) {
    .row {
        width: 90vw;
    }

    .btn {
        padding-inline: 1rem;
    }
}

/* ---- Finition pixel-perfect par formats d'ecrans ---- */
@media (min-width: 1280px) and (max-width: 1365px) {
    /* 13" typique */
    .display-1 {
        font-size: clamp(2.35rem, 3.9vw, 3.5rem);
    }

    .gl-service-card__desc,
    .gl-timeline__text,
    .gl-client-promo__card p {
        font-size: 0.95rem;
    }
}

@media (min-width: 1366px) and (max-width: 1599px) {
    /* 15" typique */
    .display-1 {
        font-size: clamp(2.6rem, 4.2vw, 3.9rem);
    }

    .gl-services-grid,
    .gl-client-promo__grid {
        gap: 1.25rem;
    }
}

@media (min-width: 1600px) and (max-width: 1919px) {
    /* 17" typique */
    .row {
        width: min(92vw, 1400px);
    }

    .display-1 {
        font-size: clamp(2.9rem, 3.6vw, 4.2rem);
    }
}

@media (min-width: 1920px) {
    /* 18" et plus */
    .row {
        width: min(90vw, 1480px);
    }

    .display-1 {
        font-size: clamp(3rem, 3.3vw, 4.4rem);
    }

    .s-about,
    .s-pricing,
    .s-download,
    .gl-contact-page {
        padding-top: 8.8rem;
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    .s-header__nav ul {
        gap: 0.2rem;
    }

    .gl-services-slider__viewport,
    .gl-info-slide {
        overflow: hidden;
        border-radius: 12px;
    }
}

@media (max-width: 430px) {
    /* Mobiles 5" a 6.1" */
    .section-header .h2,
    .section-header h2 {
        line-height: 1.2;
    }

    .gl-apply-title {
        font-size: 1.25rem;
    }

    .gl-driver-type__card {
        padding: 0.85rem 0.9rem;
    }

    .gl-whatsapp-float span {
        display: none;
    }
}

@media (min-width: 431px) and (max-width: 768px) {
    /* Mobiles 6.4" a 8" */
    .row {
        width: 91vw;
    }

    .gl-service-card,
    .gl-client-panel,
    .gl-contact-panel {
        min-height: unset;
    }
}

/* ------------------------------------------------------------------
 * Page Contact — styles centralisés (responsive)
 * ------------------------------------------------------------------ */
.gl-contact-page {
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.gl-contact-hero {
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
    padding-bottom: clamp(1rem, 3vw, 1.75rem);
}

.gl-contact-hero__title {
    text-wrap: balance;
}

.gl-contact-layout__grid {
    align-items: start;
    gap: 0;
}

/* Bloc principal (sans publicité) */
.gl-contact-main {
    background: linear-gradient(160deg, #ffffff 0%, #f8fafc 55%, #fff7ed 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
    padding: clamp(1.35rem, 3.5vw, 2rem);
}

.gl-contact-main__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b31917;
}

.gl-contact-main__head .h3 {
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.gl-contact-main__lead {
    margin: 0;
    max-width: 52ch;
    color: #475569;
    line-height: 1.6;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.gl-contact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin: clamp(1.25rem, 3vw, 1.75rem) 0;
}

.gl-contact-stat {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 14px;
    padding: clamp(0.9rem, 2vw, 1.15rem);
    text-align: center;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.gl-contact-stat__value {
    display: block;
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.gl-contact-stat__label {
    display: block;
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.35;
}

.gl-contact-pillars {
    list-style: none;
    margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.gl-contact-pillars li {
    position: relative;
    padding-left: 1.1rem;
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.5;
}

.gl-contact-pillars li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e85d04;
}

.gl-contact-pillars strong {
    color: #0f172a;
}

.gl-contact-map-block {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #e2e8f0;
}

.gl-contact-map-block__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    padding: 0.85rem 1rem;
    background: #0f172a;
    color: #f8fafc;
}

.gl-contact-map-block__head .h4 {
    margin: 0;
    color: inherit;
    font-size: 1rem;
}

.gl-contact-map-block__link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fdba74;
    text-decoration: none;
}

.gl-contact-map-block__link:hover {
    text-decoration: underline;
}

.gl-contact-map-block__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 220px;
}

.gl-contact-map-block__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Colonne coordonnées */
.gl-contact-aside {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.gl-contact-channel {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: clamp(1rem, 2.5vw, 1.25rem);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.gl-contact-channel:hover {
    border-color: rgba(179, 25, 23, 0.2);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.gl-contact-channel--accent {
    background: linear-gradient(145deg, #fff5f5, #ffffff);
    border-color: rgba(179, 25, 23, 0.18);
}

.gl-contact-channel--muted {
    background: #f8fafc;
}

.gl-contact-channel__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(179, 25, 23, 0.08);
    color: #b31917;
}

.gl-contact-channel--accent .gl-contact-channel__icon {
    background: #b31917;
    color: #fff;
}

.gl-contact-channel__body {
    flex: 1;
    min-width: 0;
}

.gl-contact-channel__body .h4 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    color: #0f172a;
}

.gl-contact-channel__body p {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.gl-contact-channel__body p:last-of-type {
    margin-bottom: 0.65rem;
}

.gl-contact-channel__body a:not(.btn) {
    color: #b31917;
    font-weight: 600;
    text-decoration: none;
}

.gl-contact-channel__body a:not(.btn):hover {
    text-decoration: underline;
}

.gl-contact-channel__body .btn + .btn {
    margin-top: 0.5rem;
}

@media (max-width: 992px) {
    .gl-contact-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .gl-contact-layout .column + .column {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .gl-contact-hero .btn {
        width: 100%;
        max-width: 22rem;
    }

    .gl-contact-stats {
        grid-template-columns: 1fr 1fr;
    }

    .gl-contact-map-block__frame {
        min-height: 200px;
    }
}

@media (max-width: 430px) {
    .gl-contact-stats {
        grid-template-columns: 1fr;
    }

    .gl-contact-channel {
        flex-direction: column;
        align-items: stretch;
    }

    .gl-contact-channel__icon {
        width: 40px;
        height: 40px;
    }
}

/* ---- GO Publicité : visuels et vidéo agrandis ---- */
.gl-client-promo__grid {
    max-width: min(96vw, 1180px);
    gap: clamp(1rem, 2vw, 1.75rem);
}

.gl-client-promo__card {
    border: none !important;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
    background: transparent !important;
    min-height: 0;
    border-radius: 16px;
    overflow: hidden;
}

.gl-client-promo__card::before {
    display: none !important;
}

.gl-client-promo__card--poster,
.gl-client-promo__card--video {
    aspect-ratio: 4 / 3;
    min-height: clamp(220px, 32vw, 380px);
    max-height: none;
}

.gl-client-promo__card--future-video {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
    min-height: clamp(240px, 42vw, 480px);
    max-height: none;
}

.gl-client-promo__image,
.gl-client-promo__video {
    width: 100%;
    height: 100%;
    min-height: inherit;
    max-height: none;
    object-fit: cover;
    background: #f4f6fa;
    border-radius: 14px;
    border: none !important;
    outline: none;
    box-shadow: none;
}

.gl-client-promo__card:hover .gl-client-promo__image {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .gl-client-promo__grid {
        max-width: 100%;
    }

    .gl-client-promo__card--poster,
    .gl-client-promo__card--video {
        min-height: 200px;
    }

    .gl-client-promo__card--future-video {
        min-height: 220px;
        aspect-ratio: 16 / 10;
    }
}

/* ---- Message de félicitations (formulaires site) ---- */
.gl-form-celebrate {
    text-align: center;
    padding: clamp(1.25rem, 4vw, 2rem) 1rem;
    border-radius: 20px;
    background: linear-gradient(160deg, #fff9e8 0%, #ffffff 55%, #f0fdf4 100%);
    border: 1px solid rgba(255, 193, 7, 0.35);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.gl-form-celebrate__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd400, #ff8c42);
    color: #0a0a0b;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.35);
}

.gl-form-celebrate__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.15rem, 3.5vw, 1.45rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.gl-form-celebrate__text {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #475569;
}

.gl-form-celebrate__text strong {
    color: #b31917;
}

.gl-form-celebrate--error {
    background: linear-gradient(160deg, #fff5f5 0%, #ffffff 100%);
    border-color: rgba(229, 62, 62, 0.25);
}

.gl-form-celebrate--error .gl-form-celebrate__icon {
    background: linear-gradient(135deg, #fc8181, #e53e3e);
    color: #fff;
}

.gl-modal__success.gl-form-celebrate {
    margin-top: 0.25rem;
}

.gl-apply-feedback.gl-form-celebrate {
    margin-top: 1rem;
    text-align: center;
    font-size: inherit;
}

.gl-apply-lead {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

.gl-driver-type {
    border: 0;
    margin: 0 0 1rem;
    padding: 0;
}

.gl-driver-type__legend {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.gl-driver-type__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.gl-driver-type__option {
    display: block;
    margin: 0;
    cursor: pointer;
}

.gl-driver-type__option input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.gl-driver-type__card {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    height: 100%;
    padding: 1rem 1.05rem;
    border: 2px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gl-driver-type__option:hover .gl-driver-type__card {
    border-color: rgba(21, 128, 61, 0.35);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.gl-driver-type__option:has(input:checked) .gl-driver-type__card {
    border-color: #15803d;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    box-shadow: 0 10px 28px rgba(21, 128, 61, 0.14);
    transform: translateY(-1px);
}

.gl-driver-type__badge {
    align-self: flex-start;
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #166534;
    background: rgba(21, 128, 61, 0.12);
}

.gl-driver-type__badge--alt {
    color: #9a3412;
    background: rgba(234, 88, 12, 0.12);
}

.gl-driver-type__label {
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
    line-height: 1.25;
}

.gl-driver-type__hint {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.45;
}

@media (max-width: 768px) {
    .gl-driver-type__grid {
        grid-template-columns: 1fr;
    }
}

.gl-apply-type-hint {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 1rem;
    line-height: 1.45;
}

.gl-apply-field--optional label::after {
    content: " (optionnel)";
    font-weight: 400;
    font-size: 0.8rem;
    color: #94a3b8;
}

.gl-apply-feedback.gl-form-celebrate .gl-form-celebrate__title {
    font-size: 1.2rem;
}

.gl-form-celebrate__recap {
    margin-top: 0.75rem;
    text-align: left;
    font-size: 0.85rem;
}

.gl-form-celebrate__recap summary {
    cursor: pointer;
    color: #64748b;
    margin-bottom: 0.35rem;
}
