.video-category-section {
    margin-bottom: 60px;
}

.category-header {
    position: relative;
    margin-bottom: 40px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.category-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.category-desc {
    font-size: 14px;
}

.video-wrapper {
    width: 100%;
    height: 500px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.video-wrapper iframe,
.video-wrapper video,
.video-wrapper blockquote {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.video-caption {
    padding: 0;
}

.video-caption h5 {
    font-size: 14px;
    color: #333;
    margin-bottom: 0;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .video-wrapper {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .video-wrapper {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .video-wrapper {
        height: 350px;
    }
}
