/* @group Hero News
------------------------------------ */

.hero-news .title-group > .bp-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero-news .image-group .bp-multimedia {
    height: 25rem;
}

@media only screen 
and (min-width : 961px) {
    .hero-news .title-group {
        height: 24.7vh;
    }
    .hero-news .image-group .bp-multimedia {
        height: 39vh;
    }
}

@media only screen 
and (min-width : 0) 
and (max-width : 960px) {
    .hero-news {
        padding-top: 10.2rem;
    }
}

/* @end */


/* Animations
------------------------------------ */
:where(#wrapper) .contenedor .elemento {
    opacity: 0;
    --duration: 1s;
}

:where(#wrapper) .contenedor.animateActive .elemento {
    animation: fade var(--duration) forwards;
    animation-delay: var(--delay, 0);
}

:where(#wrapper) .contenedor.animateActive .elemento {
    --delay: 0.3s;
}