.text-media-plein-ecran {
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-color: var(--bg);
}
@media screen and (min-width: 768px) {
    .text-media-plein-ecran {
        gap: 48px;
        padding: 64px 0;
    }
}
.text-media-plein-ecran.has-background {
    --bg : var(--ocre-20)
}
.text-media-plein-ecran .co-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
    align-items: center;
}
@media screen and (min-width: 768px) {
    .text-media-plein-ecran .co-text {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: start;
    }
}
@media screen and (min-width: 1280px) {
    .text-media-plein-ecran .co-text {
        padding: 0;
    }
}
@media screen and (min-width: 768px) {
    .text-media-plein-ecran .co-text--content-btn {
        justify-content: flex-end;
    }
}
.text-media-plein-ecran .co-text--content p:not(.uptitle) {
    font-size: 16px;
}
@media screen and (min-width: 768px) {
    .text-media-plein-ecran .co-text--content .btn {
        margin-top: 40px;
    }
}
.text-media-plein-ecran--media-video {
    overflow: hidden;
    height: 480px;
    width: 100%;
    position: relative;
    display: block;
}
.text-media-plein-ecran--media-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.text-media-plein-ecran--media-video::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 47px;
    width: 47px;
    mask: url(../../../../../../themes/apo/resources/images/icons/play-round.svg) no-repeat center;
    mask-size: contain;
    background-color: var(--white);
    transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
    .text-media-plein-ecran--media-video::after {
        height: 96px;
        width: 96px;
    }
}
@media (hover: hover) {
    .text-media-plein-ecran--media-video:hover::after {
        transform: translate(-50%, -50%) scale(1.1);
    }
}
.text-media-plein-ecran--media-video.no-video{
    pointer-events: none;
    cursor: none;
}
.text-media-plein-ecran--media-video.no-video::after {
    content: none;
}
.text-media-plein-ecran--media-video img {
    object-fit: cover;
    object-position: center 25%;
    height: 100%;
    width: 100%;
}
