/* === Quy định chung cho iframe trong nội dung === */
iframe {
    display: block;
    max-width: 100%;        /* Không cho tràn khung cha */
    height: auto;           /* Giữ tỷ lệ nếu có khai báo width/height */
    border: none;
    margin: 1.5em 0;
    box-sizing: border-box;
}

/* === Chỉ áp dụng thêm cho iframe video === */
iframe[src*="youtube.com"],
iframe[src*="youtu.be"],
iframe[src*="vimeo.com"] {
    aspect-ratio: 16 / 9;   /* Duy trì tỷ lệ video */
    height: auto;
    max-width: 100%;
}

/* === Nếu muốn đảm bảo video nằm giữa nội dung === */
iframe[src*="youtube.com"],
iframe[src*="youtu.be"],
iframe[src*="vimeo.com"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
iframe:not([src*="youtube.com"]):not([src*="vimeo.com"]) {
    max-width: none;
}