/* Composant CategoryHeader
============================================================ */

.subcategory-header {
    width: 1330px;
    max-width: 100%;
    margin: 0 auto;
    padding: 200px 15px 0 15px;
    margin-bottom: 200px;
    display: grid;
    grid-template-columns: 5fr 7fr;
    align-items: flex-start;
    gap: 150px;
}

.subcategory-header .content {
    position: relative;
    z-index: 0;
}

.subcategory-header .content::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1691.708" height="1190.653" viewBox="0 0 1691.708 1190.653"><defs><linearGradient id="linear-gradient" y1="0.556" x2="1" y2="0.607" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="%23b5ddd5"/><stop offset="1" stop-color="%232b3b52"/></linearGradient><linearGradient id="linear-gradient-2" x1="0.934" y1="0.381" x2="-0.066" y2="0.581" xlink:href="%23linear-gradient"/></defs><g id="Groupe_10920" data-name="Groupe 10920" transform="translate(1567.959 1199.848) rotate(-173)" style="isolation: isolate"><path id="Tracé_47" data-name="Tracé 47" d="M173.095,854.717c360.424,264.062,555.784-198.317,940.383-59.766,447.151,161.086,445.929-274.635,313.739-449.758C1101.306-86.58,430.325-55.093,211.19,124.81s-321.727,522.107-38.1,729.907" transform="translate(75.449 0)" fill-rule="evenodd" fill="url(%23linear-gradient)"/><path id="Tracé_48" data-name="Tracé 48" d="M181.275,895.111C558.733,1171.652,763.326,687.422,1166.1,832.52c468.284,168.7,467-287.615,328.567-471.014-341.313-452.178-1044-419.2-1273.5-230.8s-336.932,546.782-39.9,764.4" transform="translate(0 33.323)" fill-rule="evenodd" fill="url(%23linear-gradient-2)"/><path id="Tracé_49" data-name="Tracé 49" d="M165.918,819.28c345.481,253.113,532.741-190.094,901.394-57.288,428.612,154.407,427.44-263.249,300.732-431.111C1055.645-82.99,412.483-52.809,202.434,119.636S-105.955,620.1,165.918,819.28" transform="translate(62.471 85.666)" fill="%23f5f7f6" fill-rule="evenodd"/></g></svg>');
    position: absolute;
    z-index: -1;
    top: -300px;
    right: -400px;
}

.subcategory-header .title {
    font-size: 4rem;
    font-weight: 400;
    line-height: 80px;
    margin-bottom: 40px;
}

.subcategory-header .text {
    max-width: 420px;
} 

.subcategory-header .text p {
    padding-bottom: 15px;
}

.subcategory-header .links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 0;
}

.subcategory-header .links a + a {
    border-top: 1px solid #B5DDD5;
}

.subcategory-header .links a::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18.27" height="15.811" viewBox="0 0 18.27 15.811"><path id="Union_1" data-name="Union 1" d="M265.055,1987.5l5.668-5.667H256v-1.86h14.723l-5.668-5.667,1.309-1.309,7.905,7.905-7.905,7.905Z" transform="translate(-256 -1973)" fill="%232b3b52"/></svg>');
    line-height: 0;
}

.subcategory-header .image .inner {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="787.87" height="812.158" viewBox="0 0 787.87 812.158"><path id="Tracé_52747" data-name="Tracé 52747" d="M288.119,18.631c203.368,0,380.286,71.463,380.286,274.831S399.63,760.19,196.263,760.19-45.863,496.83-45.863,293.462,84.752,18.631,288.119,18.631Z" transform="matrix(0.995, 0.105, -0.105, 0.995, 125.073, -13.735)" fill="%23fff"/></svg>');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.subcategory-header .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1450px) {
    .subcategory-header {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .subcategory-header {
        grid-template-columns: 1fr;
        gap: 80px;
        padding-top: 30px;
        margin-bottom: 25px;
    }

    .subcategory-header .content {
        max-width: 600px;
        margin: 0 auto;
    }

    .subcategory-header .content::before {
        display: none;
    }

    .subcategory-header .title {
        font-size: 2.8rem;
        line-height: 1.1em;
    }

    .subcategory-header .image {
        max-width: 600px;
        margin: 0 auto;
    }
}