#home {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 0 3rem;
}

.home-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    width: 100%;
}

.home-section-title {
    margin: 0;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
    color: var(--lcap-blanc);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
}

.home-section-title::after {
    content: "";
    display: block;
    width: 3rem;
    height: 2px;
    margin: 0.75rem auto 0;
    background: var(--lcap-jaune);
    border-radius: 2px;
}

.home-bandeaux {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
}

.home-bandeau-link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.home-bandeau {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.25rem 2rem;
    width: 100%;
    margin: 0;
    padding: 1.35rem clamp(1rem, 3vw, 2.5rem);
    border: none;
    border-block: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(0, 0, 0, 0.1) 100%),
        rgba(51, 47, 128, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: none;
    transition:
        background 0.28s ease,
        border-color 0.28s ease,
        transform 0.28s ease;
}

.home-bandeau-body {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-width: 0;
}

.home-bandeau h2 {
    margin: 0;
    color: var(--lcap-jaune);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.home-bandeau-lead {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

.home-bandeau-more {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.5;
}

.home-bandeau-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.45;
}

.home-bandeau-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    color: var(--lcap-jaune);
    font-style: italic;
    font-size: 0.88rem;
    white-space: nowrap;
    opacity: 0.85;
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

.home-bandeau-cta::after {
    content: "→";
    font-style: normal;
    font-size: 1.15rem;
    line-height: 1;
    transition: transform 0.28s ease;
}

.home-bandeau-link:hover .home-bandeau,
.home-bandeau-link:focus-visible .home-bandeau {
    background:
        linear-gradient(90deg, rgba(242, 186, 66, 0.12) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(0, 0, 0, 0.08) 100%),
        rgba(51, 47, 128, 0.6);
    border-color: rgba(242, 186, 66, 0.35);
    transform: translateX(4px);
}

.home-bandeau-link:hover .home-bandeau-cta,
.home-bandeau-link:focus-visible .home-bandeau-cta {
    opacity: 1;
}

.home-bandeau-link:hover .home-bandeau-cta::after,
.home-bandeau-link:focus-visible .home-bandeau-cta::after {
    transform: translateX(4px);
}

.home-bandeau-link:focus-visible {
    outline: 2px solid var(--lcap-jaune);
    outline-offset: -2px;
}

@media screen and (max-width: 700px) {
    #home {
        gap: 2.5rem;
        padding-top: 0.5rem;
    }

    .home-bandeau {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 1.15rem 1rem;
    }

    .home-bandeau-cta {
        white-space: normal;
    }

    .home-bandeau-link:hover .home-bandeau {
        transform: none;
    }
}
