@charset "UTF-8";

.c-branded {
    border:none;
    border-left: 4px solid var(--secondary);
    position: fixed;
    height: 100vh;
}

@media only screen and (max-width: 40em){
    
    .c-branded {
        border:none;
        border-top: 4px solid var(--secondary);
        width: 100vw;
        height: 4px;
        position: absolute;
    }
}


/* -------------------------------------------------- */


/* Estilo del precargador */

#loading_content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
}


/* Estilo de la animación SVG */

#loading_content .spinner {
    animation: rotate 1s linear infinite;
    width: 50px;
    height: 50px;
}

#loading_content .path {
    stroke: var(--secondary);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}


/* Ocultar el precargador después de cargar */

#loading_content.loaded {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
    position: relative;
    height: 0;
    width: 0;
}



/* -------------------------------------------------- */

/* c-article */
.c-article-container{
        grid-template-columns: 1;
}

.c-article{
    
}

.c-article .c-article__thumb{
    height: 100%;
    
}
.c-article .c-article__thumb img{
    max-height: 290px;
}

.c-article .c-article__title{
    
    
}


@media (min-width: 640px){

    .c-article-container{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .c-article .c-article__thumb{
        
    }
    
    .c-article .c-article__title{
        min-height: 100px;
        max-height: 140px;
        
    }
}