/* ===== Videos Page Styles ===== */

/* Hero - shorter version for inner pages */
.videos-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videos-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
}

.videos-hero h1 {
    font-weight: 600 !important;
}

/* ===== Video Grid ===== */
.videos-section {
    padding: 4rem 0;
    background-color: hsl(var(--background));
}

@media (min-width: 768px) {
    .videos-section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .videos-section {
        padding: 8rem 0;
    }
}

/* Video grid - centered single video */
.videos-grid {
    display: flex;
    justify-content: center;
    padding: 0 10%;
    margin: 0 auto;
}

/* Individual video item */
.video-item {
    position: relative;
    overflow: hidden;
    background-color: hsl(var(--foreground));
    width: 100%;
}

.video-item .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-item .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-item .video-info {
    padding: 1rem 1.25rem;
}

.video-item .video-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--primary-foreground));
    margin: 0;
    line-height: 1.4;
}

.video-item .video-info p {
    font-size: 0.8rem;
    color: hsl(var(--primary-foreground) / 0.6);
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}
