/* Estilos para Guía del Hacer */

body {
    background: #f8f8f8;
}

.guia-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem 3rem 1rem;
}

.guia-main h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5em;
    text-align: center;
}

.intro {
    text-align: center;
    margin-bottom: 2em;
    color: #444;
}

.guia-articulo {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    margin-bottom: 2.5em;
    padding: 1.5em 1em;
}

.guia-articulo h2 {
    margin-top: 0;
    font-size: 1.4rem;
}

.articulo-contenido {
    margin-top: 1em;
}

.video-guide-container {
    margin-top: 4rem;
    max-width: 900px;
}

.img-optimizada {
    max-width: 100%;
    border-radius: 8px;
    margin: 1em 0;
    display: block;
}

/* Lite YouTube Embed */
.lite-yt-embed {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16/9;
    margin: 1em auto 0 auto;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: box-shadow 0.2s;
}
.lite-yt-embed:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.lite-yt-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lite-yt-playbtn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 68px;
    height: 48px;
    background: url('https://www.svgrepo.com/show/13671/youtube-play.svg') center/contain no-repeat;
    border: none;
    outline: none;
    cursor: pointer;
    opacity: 0.92;
}
#main-video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.lite-yt-embed.yt-loaded {
    cursor: default;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

@media (max-width: 600px) {
    .guia-main {
        padding: 1rem 0.2rem 2rem 0.2rem;
    }
    .lite-yt-embed {
        max-width: 100vw;
    }
}
