/* Video Page Specific Styles */
.video-main {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.videos-page-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.videos-page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .videos-page-title {
        font-size: 2rem;
    }
}

.videos-page-subtitle {
    font-size: 1.25rem;
    color: var(--color-muted-foreground);
}

.category-section {
    margin-bottom: 4rem;
}

.category-header {
    margin-bottom: 2rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.875rem;
    font-weight: bold;
}

.category-description {
    color: var(--color-muted-foreground);
    font-size: 1.125rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
}

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

.video-card {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--color-primary);
}

.video-header {
    padding: 1.5rem;
    padding-bottom: 0.75rem;
}

.video-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-description {
    color: var(--color-muted-foreground);
    font-size: 0.875rem;
}

.video-content {
    padding: 1.5rem;
    padding-top: 0;
}

.video-content .video-wrapper {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
