.row {max-width: 1100px;margin: auto;width: 96%;}
.fixed {position: sticky;top: 50px;}

/* Componente - Más Noticias */
.comp-masnoticias {padding: 40px 0;background: #363636;}
.comp-masnoticias .row {display: grid;grid-template-columns: auto 300px;grid-gap: 50px;}
.comp-masnoticias .card {display: grid;grid-template-columns: 30% auto;margin-bottom: 25px;grid-gap: 20px;align-items: center;background: transparent;border: none;box-shadow: none;transition: opacity .3s;}
.comp-masnoticias .imagen {width: 100%;height: 0;padding-top: 65%;position: relative;overflow: hidden;}
.comp-masnoticias .imagen img {position: absolute;top: 0;left: 0;width: 100%;height: 100%;object-fit: cover;}
.comp-masnoticias .titulo {font-size: 1.3em;color: white;font-weight: bold;}
.comp-masnoticias .textos {display: flex;flex-direction: column;gap: 10px;}
.comp-masnoticias .fecha {color: #ffffff94;}
.comp-masnoticias h2 {font-size: 1.8em;margin-bottom: 20px;color: white;text-transform: uppercase;letter-spacing: 6px;border-bottom: 1px solid white;padding-bottom: 18px;}
.comp-masnoticias .card:hover {opacity: .7;}
@media only screen and (max-width: 1099px){
    .comp-masnoticias h2 {text-align:center;}
    .comp-masnoticias .row {grid-template-columns: 100%;}
    .comp-masnoticias .imagen {width: 100%;height: 0;padding-top: 90%;position: relative;overflow: hidden;}    
    .comp-masnoticias .titulo {font-size: 1em;line-height: initial;}
    .comp-masnoticias .fecha {font-size: 0.9em;}
}