.entry-content iframe[src*="youtube.com"],
.entry-content iframe[data-src*="youtube.com"],
.wp-block-column iframe {
    width: 100%!important;
    height: auto!important;
    aspect-ratio: 16/9!important;
    max-width: 100%!important;
    border: 0;
    display: block;
}

.cdp-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    margin: 18px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.cdp-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cdp-youtube-placeholder {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.cdp-youtube-placeholder:hover {
    transform: scale(1.02);
}

.cdp-play-button {
    width: clamp(56px, 7vw, 80px);
    height: clamp(56px, 7vw, 80px);
    background: rgba(230, 57, 70, 0.92);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.cdp-play-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border: 11px solid transparent;
    border-left: 18px solid #fff;
}