.contenido-noticia {
    text-wrap: pretty !important;
}

#cabecera {
    background-image: url('/images/fondonoticias.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
    display: grid;
    place-content: center;
}


.masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
}

@media (min-width: 640px) {
    .masonry {
        column-count: 2;
        column-gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .masonry {
        column-count: 3;
        column-gap: 1rem;
    }
}

@media (min-width: 1280px) {
    .masonry {
        column-count: 4;
        column-gap: 4rem;
    }
}

@media (min-width: 1670px) {
    .masonry {
        column-count: 4;
        column-gap: 1rem;
    }
}


.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    margin-top: 1rem;
}


.card-noticia {
    view-timeline-name: --noticia;
    view-timeline-axis: block;
    animation-timeline: --noticia;
    animation-name: show;

    animation-range: entry 15% cover 30%;
    animation-fill-mode: both;
}

@keyframes show {
    from {
        opacity: 0;
        scale: 0.25;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}

fieldset {
    margin-top: 2rem;
    border-top: 2px solid black;
}


#div_deportes {
    background-image: url('/images/fondo_deportes.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
    background-attachment: fixed;
    z-index: -1;

}


#seccion_deportes {
    backdrop-filter: blur(35px);
}
