.recommended-articles h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

/* Faz o link parecer um bloco sem decoração */
.article-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Card do artigo */
.article-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    position: relative;
    cursor: pointer;
    background-color: #fff;
}

.article-card:hover {
    transform: scale(1.03);
}

.article-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.article-category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #007bff;
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 0.8em;
    z-index: 10;
}

.article-card h3 {
    font-size: 1.1em;
    margin: 10px;
    color: #333;
}

.article-card p {
    font-size: 0.9em;
    color: #555;
    margin: 0 10px 10px 10px;
}

/* Remove estilos antigos do botão */
.article-card a {
    all: unset;
}
