/* =================================
  Subpage 9 ('Review') Styles
  ================================= */

/* 시안의 연회색 박스 형태를 포함한 
  반응형 YouTube/Vimeo Embed 
*/
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #f8f8f8; /* 시안의 연회색 배경 */
    border-radius: 8px; /* 둥근 모서리 */
    margin: 0 auto 60px; /* 상단 제외, 하단 여백 */
    border: 1px solid #eee;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}