.ultimas-noticias-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.noticia-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.noticia-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.noticia-thumbnail {
    width: 80px;
    flex-shrink: 0;
    margin-right: 15px;
}

.noticia-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.noticia-content {
    flex: 1;
}

.noticia-title {
    margin: 0 0 5px 0;
    line-height: 1.3;
    font-size: 1em;
}

.noticia-title a {
    text-decoration: none;
    color: #ff6600; /* Naranja */
    font-weight: bold;
    transition: color 0.3s;
}

.noticia-title a:hover {
    color: #cc5500; /* Naranja oscuro al pasar mouse */
    text-decoration: underline;
}

.noticia-date {
    font-size: 0.85em;
    color: #555; /* Plomo oscuro */
    margin: 0;
}