.videos-hero {
    padding: 100px 24px 48px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.videos-hero h1 {
    font-size: 38px;
    font-weight: 800;
    color: #314e73;
    margin-bottom: 12px;
}

.videos-hero p {
    font-size: 16px;
    color: #4a6385;
    line-height: 1.65;
}

.videos-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(49, 78, 115, 0.08);
}

.video-card-embed {
    aspect-ratio: 16/9;
    min-height: 280px;
}

.video-card-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

@media (max-width: 600px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
}
