/* ══════════════════════════════════════════
   SA Video Thumb — Frontend Styles
   ══════════════════════════════════════════ */

.sa-vt-wrap {
    display: block;
    width: 100%;
}

.sa-vt-thumb {
    position: relative;
    width: 100%;
    height: 380px;
    background-color: #0d0f1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sa-vt-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* ── Play button ── */
.sa-vt-play {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-decoration: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.sa-vt-play:hover {
    transform: scale(1.08);
    background: #ffffff;
}

.sa-vt-play svg {
    width: 22px;
    height: 22px;
    fill: #1a1d2e;
    margin-left: 3px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .sa-vt-thumb { height: 300px; }
}

@media (max-width: 767px) {
    .sa-vt-thumb { height: 220px; }
    .sa-vt-play  { width: 48px; height: 48px; }
    .sa-vt-play svg { width: 18px; height: 18px; }
}

@media (max-width: 480px) {
    .sa-vt-thumb { height: 180px; }
    .sa-vt-play  { width: 42px; height: 42px; }
    .sa-vt-play svg { width: 16px; height: 16px; }
}
