.blog-featured-media {
    width: 100%;
}

/* Vimeo video: full width, height follows the 16:9 ratio (no fixed height,
   otherwise the video can only be as wide as height x 16/9 and looks narrow) */
.blog-featured-media__video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 */
    overflow: hidden;
    border-radius: 0.25rem;
}

.blog-featured-media__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Featured image fallback. Radius sits on the wrapper with overflow:hidden so it
   survives themes/Elementor forcing border-radius:0 on .wp-post-image images. */
.blog-featured-media__image {
    overflow: hidden;
    border-radius: 0.25rem;
}

.blog-featured-media__image img {
    display: block;
    width: 100%;
    height: 25rem;
    min-height: 25rem;
    max-height: 25rem;
    object-fit: cover;
    border-radius: 0.25rem;
}

/* Editor-only hint when both sources are empty */
.blog-featured-media--empty {
    padding: 16px;
    border: 1px dashed #c3c4c7;
    border-radius: 0.25rem;
    color: #646970;
    font-size: 14px;
    text-align: center;
}
