#blog-section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--color-bg-light-blue);
}

.blog-box-options {
    width: 40%;
}

.blog-box-text {
    width: 55%;
}

.blog-box-options {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.blog-box-options .blog-box {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.403) 0px 10px 20px;
    background: var(--color-bg-light-blue);
    padding: var(--spacing-xl);
    font-family: var(--font-primary);
}

.blog-box-options .blog-box:hover {
    scale: 1.05;
    cursor: pointer;
    transition: all ease .5s;
}

.blog-box.active {
    background: var(--color-bg-light-orange);
}

.blog-box-options .blog-box h1 {
    font-size: var(--font-size-h6);
}

.blog-heading,
.blog-subheading {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-primary);
    text-align: end;
    width: 100%;
}

.blog-subheading,
.blog-author {
    font-size: var(--font-size-base);
    font-style: italic;
}

.blog-author {
    width: 100%;
    text-align: end;
    display: flex;
    justify-content: end;
    margin-bottom: 10px;
}

.blog-box-text {
    height: 100%;
    text-align: justify;
}

.blog-article {
    font-family: var(--font-primary);
    height: 75%;
    overflow-y: scroll;
    text-align: justify;
    padding-right: 10px;
}

.blog-article p {
    margin: 10px 0;
}

.blog-article p strong,
.blog-article ul li strong,
.blog-article ol li strong {
    font-style: italic;
    font-weight: var(--font-weight-semibold);
}

.blog-article ul li,
.blog-article ol li {
    margin-left: 30px;
}

.blog-article h2 {
    margin: 10px 0;
    font-size: var(--font-size-base);
}



/* text animation */
.contenedor {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contenedor_texto {
    display: flex;
    align-items: center;
    height: var(--font-size-h2);
    z-index: 1;
}

/* .contenedor_texto h1 {
    font-size: var(--font-size-h3);
    margin-right: 20px;
    font-weight: var(--font-weight-medium);
} */

.contenedor_texto_animacion {
    display: flex;
}

.contenedor_texto_animacion {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-semibold);
}

.barra_escritura {
    width: 3px;
    height: var(--font-size-h6);
    margin-left: 5px;
    background-color: var(--color-primary);
    transform: rotateZ(10deg);
    animation: barra-animacion 1s ease infinite;
}

/* Barra de escritura animacion */
@keyframes barra-animacion {
    50% {
        height: var(--font-size-h4);
    }
}

.fa-blog,
.new-icon {
    display: none;
}

@media (max-width: 980px) {
    .blog-box-options .blog-box {
       margin-bottom: 10px;
    }

    .blog-box-options .blog-box p {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-container nav {
        height: 50px;
    }

    #blog-section {
        padding-left: 0;
        margin-left: 0;
        justify-content: space-between;
    }

    .blog-box-text {
        width: 95%;
    }

    .blog-box-options .blog-box {
        position: static;
        height: 20px;
        width: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: url("../assets/images/loader.gif");
        background-position: center;
        background-size: contain;
    }

    .blog-box-options .blog-box p,
    .blog-box-options .blog-box h1 {
        display: none;
    }

    .fa-blog,
    .new-icon {
        display: initial;
    }

    .new-icon {
        position: relative;
        left: 30px;
        top: 20px;
        background-color: var(--color-bg-light-orange);
        padding: 5px;
        border-radius: 10px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .7px;
        box-shadow: rgba(247, 94, 34, 0.403) 0px 10px 20px;
    }

    .blog-article {
        height: 70%
    }
}