.page-video {
    margin: 0 0 56px;
}
.video-container {
    position: relative;
    width: 100%;
    max-width: 1192px;
    height: 0;
    padding-top: 56.25%;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*
 * Încorporarea trecută prin pluginul logos-consent adaugă un wrapper în jurul
 * iframe-ului. Containerul de aici folosește trucul padding-top pentru raport,
 * deci wrapper-ul trebuie poziționat absolut ca placeholder-ul și playerul să
 * ocupe exact aceeași cutie (fără salt de layout la acordarea acordului).
 */
.video-container .logos-consent-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

.video-container .logos-consent-embed__placeholder {
    height: 100%;
    min-height: 0;
}

.article-content .news-video {
    max-width: 850px;
    margin: 28px 0 32px;
}

.article-content .news-video .video-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    background: #e5dfd6;
}

.news-video__play {
    display: none;
    position: absolute;
    z-index: 8;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--color-decorative, #e16a37);
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 5px 14px rgba(0, 0, 0, .28));
    transition: transform .2s ease, filter .2s ease;
}

.news-video.is-ready:not(.is-playing) .news-video__play {
    display: block;
}

.news-video__play:hover,
.news-video__play:focus-visible {
    transform: translate(-50%, -50%) scale(1.08);
    filter: drop-shadow(0 7px 18px rgba(0, 0, 0, .34));
}

.news-video__play svg {
    display: block;
    width: 100%;
    height: 100%;
}

.news-video__play circle {
    fill: currentColor;
}

.news-video__play path {
    fill: var(--color-font-white, #fff9f4);
}

@media (max-width: 520px) {
    .news-video__play {
        width: 58px;
        height: 58px;
    }
}
