/* ============================================================
   Video Tutorials Page
   ============================================================ */

.vt-support-bar {
    text-align: center;
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
    letter-spacing: 0.025rem;
    color: rgba(255, 255, 255, 0.75);
}

.vt-support-bar a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.vt-support-bar a:hover {
    color: #fff;
}

/* ── Section wrapper ────────────────────────────────────────── */
.s-video-tutorials {
    padding: 4rem 1.5rem 5rem;
}

.vt-inner {
    max-width: 72rem;
    margin: 0 auto;
}

.vt-section-heading {
    margin-bottom: 2.5rem;
}

.vt-section-heading__eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.5rem;
}

.vt-section-heading h2 {
    font-size: 1.65rem;
    font-weight: 300;
    letter-spacing: 0.02rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ── Grid ───────────────────────────────────────────────────── */
.vt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ── Card ───────────────────────────────────────────────────── */
.vt-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0.4rem;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.vt-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* ── Embed ──────────────────────────────────────────────────── */
.vt-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.vt-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ── Card footer ────────────────────────────────────────────── */
.vt-card__footer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.vt-card__icon {
    flex-shrink: 0;
    width: 1.6rem;
    height: 1.6rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.6);
}

.vt-card__title {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .vt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .s-video-tutorials {
        padding: 2.5rem 1rem 3.5rem;
    }

    .vt-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .vt-section-heading h2 {
        font-size: 1.35rem;
    }
}
