.taxonomy-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Grid layout com 3 colunas fixas */
.masonry-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.container-wrapper.post-element {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    text-align: center;
}

.entry-archives-header {
    padding: 15px;
    background-color: #f1f1f1;
    border-bottom: 1px solid #ddd;
}

.entry-header-inner h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.entry-header-inner p {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Ícone e data */
.entry-header-inner span {
    font-size: 12px;
    color: #999;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.entry-header-inner .fa-clock {
    margin-right: 5px;
}

/* Descrição e botão de download */
.entry-content {
    padding: 15px;
}

.category-news-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.entry-content button {
    display: inline-block;
    padding: 8px 15px;
    background-color: #0073e6;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

.entry-content button:hover {
    color: #f4f4f4;
}

.download_button::before {
    content: "⬇ ";
}

/* Evita empilhamento em telas menores */
@media (max-width: 992px) {
    .masonry-grid-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .masonry-grid-wrapper {
        grid-template-columns: 1fr;
    }
}
