.post-header {
    background-color:#fff;
}

.is-partial-dark .hero-content {
    position: relative;
    z-index: 2;
}

.bg-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: #f0f0f0 url(/content/images/2025/05/bg-006.jpg) center / cover no-repeat;
    z-index: 1;
}

/*Видео преер   */
.video-container {
    z-index: 2;
    /* На уровне контейнера */
    display: flex;
    justify-content: center;
}

.elVideoWrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    -webkit-box-shadow: 15px 14px 60px -11px rgba(0, 0, 0, 0.55);
    -moz-box-shadow: 15px 14px 60px -11px rgba(0, 0, 0, 0.65);
    box-shadow: 15px 14px 60px -11px rgba(0, 0, 0, 0.65);
}

.elVideoWrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.elOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.elOverlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Левый верхний угол */
.sound-text {
    position: absolute;
    top: 15px;
    left: 15px;
    animation: pulse 2s infinite;
}

.sound-text img {
    width: 200px;
    height: auto;
}

/* Анимация пульсации */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Правый верхний угол */
.clickForSound {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 15px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.clickForSound:hover {
    background: rgba(255, 255, 255, 0.2);
}

.clickForSound svg {
    fill: white;
}

/* Центр: Иконка Play */
.play-icon {
    width: 160px;
    height: 160px;
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.play-icon.zoomed {
    transform: scale(1.2);
}

.play-icon.fade-out {
    opacity: 0;
}

.play-icon svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .sound-text img {
        width: 120px;
    }

    .clickForSound_button__9-iLT {
        font-size: 12px;
        padding: 4px 8px;
        gap: 5px;
    }

    .play-icon {
        width: 120px;
        height: 120px;
    }
}

/* Скрытие контролов */
.hide-controls video::-webkit-media-controls {
    opacity: 0;
    transition: opacity 0.5s;
}

/*Адаптивность*/
@media (min-width: 1025px) {
    .post-header-wrap.is-center .post-header-content {
        max-width: 100%;
    }
    .post-header-wrap.is-center .post-excerpt {
        max-width: 100%;
    }
}

