.videos-page {
    padding-top: 4rem;
    padding-bottom: 4rem;
}


.videos-filters {
    margin-bottom: 3rem;
    font-size: 17px;
}

.video-categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
}

.video-categories-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.video-categories-list li {
    display: inline-block;
}

.video-categories-list li:not(:last-child)::after {
    content: "|";
    margin: 0 1rem;
    color: var(--text-muted);
    font-weight: normal;
}

.video-categories-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.video-categories-list a:hover {
    color: var(--text-black);
    text-decoration: none;
}

.video-categories-list a.active {
    color: var(--orange-accent);
    border-radius: 4px;
    padding: 6px 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.video-categories-list a.active:hover {
    color: var(--blue-inky);
    text-decoration: underline;
}

.video-thumbnail {
    height: 0;
    position: relative;
    padding-bottom: 60%;
    overflow: hidden;
    margin-bottom: 25px;
    background: var(--black);
}

.video-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.video-image, .video-placeholder  {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 3rem;
}




.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    margin-top: 0;
}

.video-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.video-title a:hover {
    color: var(--steelblue);
}



.video-top {
    display: flex;
    flex-direction: row;
    gap: 6px;
    flex-wrap: wrap;
}

.video-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.video-description {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Video grid layout */
.video-col {
    margin-bottom: 2rem;
}

/* No videos message */
.no-videos-message {
    background-color: var(--info-bg);
    border: 1px solid var(--info-border);
    border-radius: 0.375rem;
    color: var(--info-text);
    padding: 1rem;
    text-align: center;
}

.no-videos-message h4 {
    margin-bottom: 0.5rem;
    color: var(--info-text);
}

.no-videos-message p {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .videos-content{
        margin: 0 auto;
        max-width: 320px;
    }
    
    .video-col {
        margin-bottom: 1.5rem;
    }
}