.bts-section {
    background: var(--off-white);
    padding: 120px 8%;
    position: relative;
    overflow: hidden;
}

.bts-inner {
    position: relative;
    z-index: 2;
}

.bts-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: end;
    margin-bottom: 64px;
}

.bts-header-left h2 {
    font-family: 'Bangers', cursive;
    font-size: clamp(40px, 4.5vw, 64px);
    letter-spacing: 2px;
    line-height: 1.0;
}

.bts-header-left h2 .accent {
    color: var(--red);
}

.bts-header-right {
    padding-left: 8%;
    border-left: 1px solid var(--warm-gray);
}

.bts-header-right p {
    font-family: 'Lora', serif;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-muted);
}

/* Video grid: 1 featured large + 2 smaller */
.bts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 3px;
    background: var(--warm-gray);
    border: 1px solid var(--warm-gray);
    border-radius: 4px;
    overflow: hidden;
}

.bts-video-wrap {
    position: relative;
    background: #111;
    overflow: hidden;
}

/* Featured video spans full left column */
.bts-video-wrap.featured {
    grid-row: 1 / 3;
}

.bts-video-label {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    background: rgba(13, 13, 13, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
}

.bts-video-label-dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
}

.bts-video-label span {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.bts-video-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: none;
    display: block;
}

.bts-video-wrap.featured iframe {
    min-height: 480px;
}