.video-gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* ── 标题区 ── */
.video-gallery-section .section-header {
    margin-bottom: 50px;
}

.video-gallery-section .badge-label {
    display: inline-block;
    padding: 4px 16px;
    background: #ffb200;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* ── 视频卡片 ── */
.video-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

/* 视频容器：16:9 比例锁定 */
.video-card .video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 */
    background: #111;
    overflow: hidden;
}

.video-card .video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 播放前覆盖层 */
.video-card .video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.55) 0%, rgba(20, 30, 48, 0.25) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
    z-index: 2;
}

.video-card .video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-card .play-btn {
    width: 60px;
    height: 60px;
    background: #ffb200;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s, background 0.25s;
    box-shadow: 0 4px 20px rgba(255, 178, 0, 0.45);
}

.video-card .play-btn:hover {
    transform: scale(1.12);
    background: #e6a100;
}

.video-card .play-btn i {
    color: #fff;
    font-size: 22px;
    margin-left: 4px;
    /* 视觉居中补偿 */
}

/* 卡片底部标题条 */
.video-card .video-caption {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 3px solid #ffb200;
}

.video-card .video-caption .cap-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #fff7e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #ffb200;
}

.video-card .video-caption h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #020202;
    line-height: 1.4;
}

.video-card .video-caption .cap-icon {
    margin-left: auto;
    color: #ccc;
    font-size: 14px;
}