.boletim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.boletim-header .badge {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
}

.boletim-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.boletim-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.boletim-thumb {
    position: relative;
    overflow: hidden;
}

.boletim-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.boletim-card:hover .boletim-thumb img {
    transform: scale(1.05);
}

.boletim-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.65);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.boletim-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.boletim-body h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.boletim-body p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pagination .page-item .page-link {
    border-radius: 10px;
    margin: 0 0.2rem;
    border: 1px solid #e5e7eb;
    color: var(--text-primary);
    font-weight: 600;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .boletim-thumb img {
        height: 200px;
    }
}

