/* ── Media / Watch — mobile first ────────────────────────────────────── */
.media {
    background: var(--bg-mid);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}
.media-inner  { max-width: 1200px; margin: 0 auto; }
.media-header { margin-bottom: 48px; }

.media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.video-card {
    background: var(--bg-card);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.video-card:hover { transform: translateY(-4px); }

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: block;
    text-decoration: none;
}
.video-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), filter 0.5s ease;
    filter: saturate(0.65);
}
.video-card:hover .video-thumb img { transform: scale(1.06); filter: saturate(0.9); }
.video-thumb::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(6,6,10,0.75));
}

.video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 64px; height: 64px;
    background: rgba(6,6,10,0.5);
    border: 1.5px solid var(--accent-mint);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
    transition: background 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.video-card:hover .video-play {
    background: rgba(173,255,242,0.15);
    transform: translate(-50%,-50%) scale(1.1);
    box-shadow: 0 0 40px rgba(173,255,242,0.2);
}
.video-play svg { fill: var(--accent-mint); width: 22px; height: 22px; margin-left: 4px; }

.video-info  { padding: 18px 20px; }
.video-title {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 500; font-style: italic;
    color: var(--text-primary); line-height: 1.45;
}

.media-cta { text-align: center; margin-top: 48px; }

/* ── Desktop ─────────────────────────────────────────────────────────── */
@media (min-width: 900px) {
    .media        { padding: 128px 72px; }
    .media-header { margin-bottom: 72px; }
    .media-grid   { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .video-info   { padding: 22px 26px; }
    .media-cta    { margin-top: 60px; }
}
