.video-section {
    padding: 74px 0 66px;
    overflow: hidden;
    background: #2a1840;
    color: #8ac8e4;
}

.video-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.video-header h2 {
    margin: 0;
    color: #8ac8e4;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.08;
}

.video-channel-link {
    display: inline-block;
    margin-top: 8px;
    color: #fed305;
    font-size: 12px;
    text-decoration: underline;
}

.video-channel-link:hover {
    color: #fed305;
}

.video-controls {
    display: flex;
    gap: 8px;
    padding-top: 10px;
}

.video-controls a {
    display: inline-flex;
    width: 72px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    color: #1e1430 !important;
    text-decoration: none;
}

.video-controls a:hover {
    background: #8ac8e4;
    color: #1e1430;
}

/* .video-grid {
    margin-left: -22px;
}

.video-grid > li {
    box-sizing: border-box;
    width: 33.333%;
    padding-left: 22px;
} */

.video-card a,
.zlann-video-card a {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: color 0.2s ease;
}

.video-card a:hover,
.zlann-video-card a:hover {
    color: #fff;
    text-decoration: none;
}

.video-thumb-wrap,
.zlann-video-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.video-card-image,
.zlann-video-thumb img,
.zlann-video-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.zlann-video-placeholder {
    background: rgba(255, 255, 255, 0.06);
}

.video-card a:hover .video-card-image,
.zlann-video-card a:hover .zlann-video-thumb img {
    transform: scale(1.04);
}

.video-play-badge,
.zlann-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    transform: translate(-50%, -50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.video-play-badge::after,
.zlann-video-play::after {
    position: absolute;
    top: 50%;
    left: 53%;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid #1e1a2e;
    content: "";
    transform: translate(-50%, -50%);
}

.video-card a:hover .video-play-badge,
.zlann-video-card a:hover .zlann-video-play {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.08);
}

.video-card h3,
.zlann-video-card h3 {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
}

.video-card a:hover h3,
.zlann-video-card a:hover h3 {
    color: #fff;
}

@media (max-width: 767px) {
    .video-section {
        padding: 54px 0;
    }

    .video-header {
        align-items: center;
        margin-bottom: 28px;
    }

    .video-header h2 {
        font-size: 29px;
    }

    .video-grid {
        margin-left: 0;
    }

    .video-grid > li {
        width: 100%;
        padding-left: 0;
    }
}
