.single-media--video {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-media--video-ref {
    width: 100%;
    height: 180px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .single-media--video-ref {
        height: 480px;
    }
}

.single-media--video-ref::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.single-media--video-ref::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: height 0.3s ease, width 0.3s ease;
}

.single-media--video-ref img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

@media (hover: hover) {
    .single-media--video:hover .single-media--video-ref::after {
        height: 60px;
        width: 60px;
    }
}

.single-media--img {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.single-media--img img {
    border-radius: 10px;
    height: 180px;
    object-fit: cover;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .single-media--img img {
        height: 480px;
    }
}

.single-media figcaption {
    font-family: var(--roboto);
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    line-height: 180%;
}

.single-media--video-ref.no-video{
    pointer-events: none;
    cursor: none;
}

.single-media--video-ref.no-video::before {
    content: none;
}

.single-media--video-ref.no-video::after {
    content: none;
}