:root {
    --negro         : #000000;
    --blanco        : #ffffff;
    --azulFuerte    : #0B509E;
}

.seccion-contenido-blog {
    display: flex;
    justify-content: center;
}

.conenedor-elementos {
    width: 90%;
    display: flex;
    justify-content: center;
    padding: 12rem 0 3rem;
    gap: 10rem;
}

@media (max-width: 2000px) {
    .conenedor-elementos {
        gap: 3rem;
    }

    .contenido-blog {
        width: 70%;
    }

    .contenido-lateral {
        width: 30%;
    }
}

.contenido-blog {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contenido-lateral {
    width: 20%;
}

.contenido-lateral .ban-lateral {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.20);
    border-radius: 1rem;
}

.contenido-lateral .ban-lateral img {
    border-radius: 1rem;
    width: 100%;
}

@media (max-width: 1300px) {
    .conenedor-elementos {
        flex-direction: column;
        align-items: center;
    }

    .contenido-blog {
        width: 100%;
    }

    .contenido-lateral {
        width: 50%;
    }
}

@media (max-width: 750px) {
    .contenido-lateral {
        width: 100%;
    }
}

.contenido-blog h2 {
    margin: 0 0 5rem;
    line-height: 45px;
    text-align: center;
}

.contenedor-info ol {
    margin-left: 3rem;
}

.contenedor-info h3 {
    margin: 1rem 0;
    font-family: 'Roboto Bold';
    font-weight: 500;
}

.contenedor-info ul {
    margin-left: 50px;
}

.contenedor-info .blog-descripcion {
    margin-top: 1rem;
}

@media (max-width: 850px) {
    .contenido-blog h2 {
        font-size: 2rem;
        line-height: 35px;
    }
}

.seccion-videos {
    display: flex;
    justify-content: center;
}

.slider-wrapper {
    width: 85%;
    padding: 0 0 12rem;
    position: relative;
    display: flex;
    justify-content: center;
}

.slider-wrapper .slider {
    display: flex;
    aspect-ratio: 20 / 9;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 1rem;
    width: 100%;
    height: 500px;
}

.slider iframe {
    flex: 1 0 25%;
    scroll-snap-align: start;
    object-fit: cover;
    border-radius: 1rem;
    height: 100%;
    border: 5px solid var(--blanco);
    width: 100%;
}

.slider-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 10rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.slider-nav a {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background-color: var(--negro);
    opacity: 0.75;
    transition: opacity ease 250ms;
}

.slider-nav a:hover {
    opacity: 1;
}

@media (max-width: 1430px) {
    .slider iframe {
        flex: 1 0 33%;
    }
}

@media (max-width: 1070px) {
    .slider iframe {
        flex: 1 0 50%;
    }
}

@media (max-width: 720px) {
    .slider iframe {
        flex: 1 0 100%;
    }
}

.contenido-blog .contenedor-info p {
    margin: 1rem 0;
}

.contenido-blog .contenedor-info p i {
    color: var(--azulFuerte);
}
