/* yt-featured-video/assets/css/style.css */

/* 響應式容器：16:9 比例 (使用 Padding Top Hack) */
.yt-featured-video-container {
    position: relative;
    width: 100%;
    /* 16:9 比例計算: (9/16) * 100% = 56.25% */
    padding-top: 56.25%; 
    overflow: hidden;
    margin-bottom: 1em; /* 讓影片下方與文字內容有點空間 */
}

/* 讓 iframe 填滿容器，實現響應式 */
.yt-featured-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}