.card-noticias {
    width: 22rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.card-noticias img {
    max-height: 20rem;
    object-fit: cover;
}

.card-noticias h3 {
    font-size: 1.3rem;
    text-indent: 2rem;
    line-height: 1.5rem;
    max-height: 4.5rem;
    overflow: hidden;
}

.more-info-noticia {
    padding: 0.5rem 1.3rem;
    border-radius: var(--border-radius-max);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.1s ease-in;
}

.more-info-noticia:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}