/* Lite YouTube full-width responsive embed */

.lye-video {
    position: relative;
    display: block;
    width: 100% !important;     /* always full width */
    max-width: 100% !important; /* no restriction */
    aspect-ratio: 16 / 9;       /* keep correct video ratio */
    margin: 1em auto;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;         /* optional: rounded corners */
}

.lye-video img,
.lye-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.lye-video .lye-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    border: none;
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    padding: 10px 20px;
    cursor: pointer;
}
