/**
 * Editorial Section Block Styles
 */


.block-editorial-section {
    padding: 14.6875rem 8.375em 8.75rem 9.9375em;
    background-color: var(--color-1);
}

@media screen and (max-width: 1024px) {
    .block-editorial-section {
        padding: 6em 3.375em 3.75rem 3.9375em;
    }
}

@media screen and (max-width: 600px) {
    .block-editorial-section {
        padding: 3.5625em 0.75em;
    }
}

.block-editorial-section__title-section {
    display: flex;
    flex-direction: column;
    gap: 4.5em;
    margin-bottom: 11.4em;
}

@media screen and (max-width: 1024px) {
    .block-editorial-section__title-section {
        margin-bottom: 5.0625em;
        gap: 1.5em;
    }
}

.block-editorial-section__title {
    max-width: 500px;
    width: 100%;
    color: var(--color-2);
}

.block-editorial-section__description.eyebrow {
    text-transform: unset;
}

.block-editorial-section__description-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 3.6875em;
    max-width: 52.375em;
    width: 100%;
    margin: auto;
}

@media screen and (max-width: 600px) {
    .block-editorial-section__description-section {
        align-items: flex-start;
        gap: 2.5em;
    }
}

.block-editorial-section__description {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 2em;
}

@media screen and (max-width: 600px) {
    .block-editorial-section__description {
        flex-direction: column;
        gap: 1.25em;
    }
}

.block-editorial-section__description p,h1,h2,h3,h4,h5,h6,strong {
    max-width: 26.3em;
    width: 100%;
    font-family: 'TT Commons Pro';
    font-weight: 500;
}
@media screen and (max-width: 1024px) {
    .block-editorial-section__description p,h1,h2,h3,h4,h5,h6,strong {
        max-width: 100%;
    }
}

.block-editorial-section__description strong {
    font-weight: 700;
}


.block-editorial-medias {
    display: flex;
    flex-direction: row;
    gap: 1.25em;
    height: 75em;
}

@media screen and (max-width: 1024px) {
    .block-editorial-medias {
        flex-direction: column;
        gap: 0.75em;
        height: auto;
    }
}

.block-editorial-section__figure {
    width: 100%;
    max-height: 61.5em;
    height: 100%;
    overflow: hidden;
    border-radius: 0.375em;
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width: 600px) {
    .block-editorial-section__figure {
        width: 16.4375em;
        max-height: 23.1875em;
    }
}

.block-editorial-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-area {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

@media screen and (max-width: 600px) {
    .video-area {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: flex-end;
    }
}

.block-editorial-section__video {
    width: 100%;
    height: 100%;
    max-height: 63.6875em;
    object-fit: cover;
    overflow: hidden;
    border-radius: 0.375em;
}

@media screen and (max-width: 600px) {
    .block-editorial-section__video {
        width: 16.4375em;
        height: 23.1875em;
    }
}

.block-editorial-section__description-text {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1.25em;
}

.block-editorial-section__description-text p,h1,h2,h3,h4,h5,h6,strong {
    font-family: var(--font-2);
}

@media screen and (max-width: 1024px) {
    .block-editorial-section__description-text {
        flex-direction: column;
    }
}



