.videos-collection-filters .filter-button {
    border: 1px solid #0e4784 !important;
	color:#0e4784 !important;
}
.videos-collection-filters .filter-button:hover, .videos-collection-filters .filter-button.active {
    background: #0e4784 !important;
	  color:#fff !important;
}
.videos-collection-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.videos-collection-grid .video-item {
    width: Calc(33.33% - 13.33px);
    overflow: hidden;
}
.videos-collection-grid .video-item iframe {
    aspect-ratio: 16/9;
    width: 100%;
}
.videos-collection-controls {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 50px;
}
.videos-collection-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    border-radius: 10px;
}
.videos-collection-filters .filter-button {
    border: 1px solid #0008af;
    color: #0008af;
    background: transparent;
    padding: 10px 30px;
    transition: 0.4s ease all;
    cursor: pointer;
    border-radius: 5px;
}
.videos-collection-filters .filter-button:hover,
.videos-collection-filters .filter-button.active {
    background: #0008af;
    color: #fff;
}
.spotify-episodes{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
#videos-search-input {
    border: 1px solid #0008af;
    background: transparent;
    padding: 10px 30px !important;
    transition: 0.4s ease all;
    cursor: pointer;
    border-radius: 5px;
    color: #0e4784 !important;
    font-size: 14px !important;
}
#videos-search-input::placeholder {
    color: #0e4784 !important;
}
.videos-collection-grid .video-item .video-title {
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-top: 9px;
}
@media screen and (max-width:1099px) {
    .videos-collection-grid .video-item {
        width: Calc(50% - 10px);
        overflow: hidden;
    }
    .video-item .muse-video-player {
        width: 100%;
    }
}
@media screen and (max-width:767px) {
    .videos-collection-grid .video-item {
        width: 100%;
        overflow: hidden;
    }
    .spotify-episodes{
        grid-template-columns: 1fr;
    }
}