.noticia-card {
    display: inline-block;
    vertical-align: top;
    width: 320px;
    margin: 10px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.noticia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 18px rgba(0,0,0,0.15);
}

.noticia-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.noticia-content {
    padding: 15px 20px;
}

.noticia-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #222;
}

.noticia-resumen {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
}

.noticia-vermas {
    display: inline-block;
    padding: 6px 12px;
    background-color: #d19a00;
    color: #fff !important;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
}

.noticia-vermas:hover {
    background-color: #b58100;
}
