/* Hero Video Player - Reusable YouTube embed with thumbnail + play button */
.hero-video {
    max-width: 720px;
    margin: 32px auto 28px;
}

.hero-video-inner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.06),
        0 4px 12px rgba(0,0,0,0.08),
        0 12px 32px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-video-inner:hover {
    box-shadow:
        0 2px 4px rgba(0,0,0,0.08),
        0 8px 20px rgba(0,0,0,0.12),
        0 20px 48px rgba(0,0,0,0.14);
    transform: translateY(-2px);
}

.hero-video-aspect {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.hero-video-aspect iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.hero-video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.hero-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    transition: background 0.3s ease;
}

.hero-video-thumb:hover::after {
    background: rgba(0,0,0,0.25);
}

.hero-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 3;
    width: 72px;
    height: 72px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    pointer-events: none;
}

.hero-video-thumb:hover .hero-video-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(255,0,0,0.85);
}

.hero-video-play svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin-left: 3px;
}

@media (max-width: 768px) {
    .hero-video {
        margin: 24px auto 20px;
    }

    .hero-video-inner {
        border-radius: 12px;
    }

    .hero-video-play {
        width: 56px;
        height: 56px;
    }

    .hero-video-play svg {
        width: 24px;
        height: 24px;
    }
}
