
/* Mirrors .insights-grid / .insight-item (style.css), 2 columns instead of 3.
   .loading, .fade-in and the fadeInUp keyframes are already defined
   site-wide in style.css, so they're intentionally not redeclared here. */

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1450px;
}

.video-item {
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.video-item .info {
    padding-top: 20px;
}

.video-item .info .title {
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--awb-text-color);
    font-weight: 700;
    letter-spacing: -0.48px;
    margin-bottom: 4px;
}

.video-item .info .description {
    font-family: var(--awb-typography5-font-family);
    font-size: var(--awb-typography5-font-size);
    line-height: var(--awb-typography5-line-height);
}

@media (max-width: 640px) {
    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}
