/*
|--------------------------------------------------------------------------
| Couverture et téléchargement de la brochure
|--------------------------------------------------------------------------
*/

.about-brochure-card {
    display: grid;
    gap: 15px;
}

.about-brochure-card > h3,
.about-brochure-card > p {
    margin: 0;
}

.about-brochure-preview {
    margin: 3px 0 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .07);
}

.about-brochure-preview a {
    position: relative;
    display: block;
    overflow: hidden;
    background: #210d16;
    box-shadow:
        0 18px 44px
        rgba(15, 5, 10, .35);
}

.about-brochure-preview a::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(255, 224, 157, .32);
}

.about-brochure-preview img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1055 / 1491;
    object-fit: cover;
    transition:
        transform .35s ease,
        filter .35s ease;
}

.about-brochure-preview a:hover img,
.about-brochure-preview a:focus-visible img {
    transform: scale(1.025);
    filter: brightness(1.06);
}

.about-brochure-preview a:focus-visible {
    outline: 3px solid #e5be65;
    outline-offset: 4px;
}

.about-brochure-preview figcaption {
    margin-top: 10px;
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    line-height: 1.55;
    text-align: center;
}

.about-brochure-download {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding-inline: 15px;
    color: #ffffff;
    text-align: center;
}

.about-brochure-download span {
    font-size: 18px;
    line-height: 1;
}

.about-brochure-unavailable {
    display: block;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .32);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 900px) {
    .about-brochure-preview {
        max-width: 430px;
        margin-inline: auto;
    }
}
