/* Постер вместо eager iframe Rutube */
.rutube-facade {
    position: relative;
    display: block;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 3 / 2;
    margin: 0 auto;
    padding: 0;
    border: 0;
    background: #141b22 center / cover no-repeat;
    cursor: pointer;
    overflow: hidden;
}

.rutube-facade:focus-visible {
    outline: 3px solid #c9a227;
    outline-offset: 2px;
}

.rutube-facade__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.2s ease;
}

.rutube-facade:hover .rutube-facade__play,
.rutube-facade:focus .rutube-facade__play {
    background: rgba(0, 0, 0, 0.5);
}

.rutube-facade__play::before {
    content: "";
    width: 0;
    height: 0;
    margin-right: 0.6rem;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
}

.rutube-facade.is-playing {
    cursor: default;
    background: #000;
}

.rutube-facade.is-playing iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
