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;
}

main .hero-image .container .hero-text h2 {
    font-size: 1.7rem;
    margin-top: 10px;
}

/* ARCHIVE PAGE */
.archive-container {
    max-width: 1100px;
    margin: 50px auto 80px auto;
    padding: 0 20px;
}

/* Search bar */
.search-bar {
    text-align: center;
    margin-bottom: 40px;
}

.search-bar form {
    display: inline-flex;
    gap: 10px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 5px;
}

.search-bar input {
    border: none;
    padding: 12px 20px;
    width: 280px;
    font-size: 16px;
    border-radius: 50px 0 0 50px;
    outline: none;
}

.search-bar button {
    background: #153C54;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 600;
}

.search-bar button:hover {
    background: #0e2d3f;
}

/* Results */
.search-results h3 {
    font-size: 20px;
    color: #153C54;
    margin-bottom: 20px;
    text-align: center;
}

.highlight {
    color: #0073e6;
    font-weight: 600;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* Report cards */
.report-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.report-card .timeline-marker {
    position: absolute;
    left: 12px;
    top: 25px;
    width: 10px;
    height: 10px;
    background: #153C54;
    border-radius: 50%;
}

.report-card-content {
    margin-left: 25px;
}

.report-card-content .time {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.report-card-content .short-description {
    font-weight: 600;
    color: #153C54;
    margin-bottom: 5px;
}

.report-card-content .description {
    color: #444;
    font-size: 14px;
    line-height: 1.5;
}

/* Artikeloverzicht zonder afbeelding */
.article-list-item {
    background: #fff;
    border-radius: 14px;
    padding: 20px 25px;
    margin-bottom: 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.article-list-item h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #153C54;
    line-height: 1.4;
}

.article-list-item h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-list-item h3 a:hover {
    color: #0e2d3f;
    text-decoration: underline;
}

.article-list-item .article-snippet {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.article-list-item .article-meta {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-list-item .article-meta i {
    color: #153C54;
    font-size: 13px;
    opacity: 0.8;
}

.article-list-item .article-meta .separator {
    color: #bbb;
    font-weight: 400;
}

/* Responsief */
@media (max-width: 768px) {
    .article-list-item {
        padding: 18px;
    }
    .article-list-item h3 {
        font-size: 18px;
    }

    .search-bar input {
        width: 180px;
    }
}