<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#tituloNoticia{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 80px 5px 80px;
    font-size: 24px;
    background-color: var(--background1);
    color: var(--color1);
    line-height: 1.4em;
    margin-bottom: 25px;
    margin-top: 25px;
}

#tituloNoticia &gt; * {
    margin-bottom: 15px;
}

section.sectionNoticias {
    position: relative;
    float: left;
    width: 23%;
    margin: 0 1% 40px 1%;
    background-color: #ebebeb;
}

.sectionNoticias .fechaNoticia {
    width: 100%;
    font-size: 12px;
    color: var(--color4);
    font-weight: bold;
    background-color: var(--background1-78);
    height: 35px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sectionNoticias .contenedorFotoNoticia {
    width: 100%;
    height: 200px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.sectionNoticias .txtNoticia {
    height: 224px;
    padding: 15px;
    clear:both;
    background:#ebebeb;
    padding-top: 15px;
    color: black;
}

.sectionNoticias .txtNoticia a{
    color: #428bca;
    text-decoration: none;
}

.sectionNoticias .txtNoticia a:hover{
    text-decoration: underline;
}

.sectionNoticias .txtNoticia &gt; p {
    height: 120px;
    overflow: hidden;

}

.sectionNoticias .txtNoticia h3 {
    font-size: 16px;
    font-weight: bold;
}

.sectionNoticias .masinfo {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 40px;
    background-color: #333;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#fotonocia {
    float: right;
    display: block;
    clear: both;
}


#paginacion-pie {
    display: flex;
    justify-content: center;
}

#paginacion-pie a {
    display: flex;
    align-items: center;
    margin: 0 3px;
    padding: 7px 15px;
    color: var(--color1);
    background-color: var(--background1-78);
    border: 1px solid var(--background1);
    font-weight: bold;
}

#paginacion-pie a.activa,
#paginacion-pie a:hover {
    background-color: var(--background1);
}

#paginacion-pie &gt; * {
    display: flex;
    margin-bottom: 15px;
}

#paginacion-pie #paginacion-controlesOpciones {
    display: flex;
    align-items: center;
    margin-left: 5px;
}

#paginacion-pie #paginacion-controlesOpciones .custom-select {
    background-color: #d4d4d4;
}

#paginacion-pie #paginacion-controlesOpciones select {
    background-color: #d4d4d4;
}

#paginacion-pie #paginacion-irApagina {
    width: 60px;
    margin-left: 5px;
    background-color: #d4d4d4;
    font-size: 14px;
    font-weight: bolder;
}

@media screen and (max-width: 1400px) {

    section.sectionNoticias {
        width: 31%;
    }

}

@media screen and (max-width: 1100px) {

    section.sectionNoticias {
        width: 48%;
    }

}

@media screen and (max-width: 650px) {

    section.sectionNoticias {
        float: none;
        width: 100%;
    }

}


</pre></body></html>