main .hero-image .container .hero-text {
    text-align: center;
}

main .hero-image .container .hero-text h1 {
    margin-top: 8vh;
    font-size: 3rem;
}
 
main .hero-image {
    height: 20vh !important;
    border-bottom: 4px solid #153C54;
}

/* ===== Report Category Overview Page ===== */

/* Section titles */
.report-section {
    margin: 40px 0px;
}

.section-title {
    border-left: 5px solid #153C54;
    padding-left: 12px;
    margin-bottom: 20px;
    color: #153C54;
    font-size: 1.8rem;
}

/* Report items */
.report-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    padding: 20px 25px;
    margin-bottom: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.report-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Report item title */
.report-item h3 {
    font-size: 1.5rem;
    color: #153C54;
    margin-bottom: 8px;
}

/* Tijd en beschrijving */
.report-item .time {
    color: #005bbb;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.report-item p.poppins {
    color: #444;
    line-height: 1.5;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Button */
.report-item .btn {
    display: inline-block;
    background: #153C54;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.report-item .btn:hover {
    background: #005bbb;
    transform: translateY(-2px);
}

/* Oudere items iets lichter tonen */
.report-section.older .report-item {
    opacity: 0.9;
    background: #f9fafc;
}

.show-more-button {
    text-align: center;
    margin: 30px auto;
    background-color: #153C54;
    padding: 7px 12px;
    border-radius: 8px;
    width: min-content;
}

.show-more-button a {
    color: #fff;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
}

.show-more-button a:hover {
    color: white;
    transform: translateY(-2px);
}

.categorie-grid {
    display: grid;
    grid-template-columns: 9fr 3fr;
}

/* Responsive */
@media (max-width: 768px) {
    .report-item {
        padding: 15px 18px;
    }

    .categorie-grid {
        grid-template-columns: 1fr;
    }

    .stats-category-overview {
        margin: 20px 0px;
    }
	
	main .hero-image .container .hero-text h1 {
        font-size: 2.0rem;
    }
}
