/* news-video.css - Styles for the video section on the news page */

.news-video-section {
    max-width: 900px;
    margin: 40px auto 0;
}

.news-video-title {
    font-size: 1.5rem;
    color: #113768;
    margin-bottom: 20px;
    text-align: center;
}

.news-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: #000;
}

.news-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
