/* ==========================================================================
   Additional custom styles (unminified, hand-maintained)
   Loaded after main.css so rules here win the cascade without !important.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Single Service — Video Embed section
   -------------------------------------------------------------------------- */
.single-service-video .section-title {
    margin-bottom: 40px;
}

.single-service-video__frame {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 16 / 9) {
    .single-service-video__frame {
        height: 0;
        padding-bottom: 56.25%;
    }
}

.single-service-video__frame iframe,
.single-service-video__frame video,
.single-service-video__frame embed,
.single-service-video__frame object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 767px) {
    .single-service-video .section-title {
        margin-bottom: 24px;
    }

    .single-service-video__frame {
        border-radius: 8px;
    }
}
