/* Stijl voor de hero-vaccinatie sectie */
  
.hero-vaccinatie {
    background: linear-gradient(145deg, #e0f2ff, #f0f8ff);
    border-radius: 1rem;
    box-shadow: 0 6px 18px rgba(0, 64, 128, 0.1);
    padding: 2rem 2.5rem;
    margin: 3rem auto;
    max-width: 900px;
    transition: transform 0.3s ease;
}

.hero-content h1 {
    color: #004080;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-content h2 {
    color: #004080;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.0rem;
    line-height: 1.7;
    color: #374151;
}

.hero-content .lees-meer {
    margin-top: 1rem;
    display: inline-block;
    color: #004080;
    background-color: #e6f0ff;
    padding: 0.6rem 0rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
}

.hero-content .lees-meer:hover {
    background-color: #d0e8ff;
    text-decoration: underline;
}

.artikel-container {
    background: white;
    max-width: 800px;
    margin: auto;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.artikel-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.subtitel {
    color: #666;
    font-size: 1.1em;
    margin-top: 10px;
}

h1 {
    font-size: 2em;
    margin-top: 10px;
}

h2 {
   color: #004080;
}

.datum {
    color: #aaa;
    font-size: 0.9em;
    margin-bottom: 20px;
    margin-bottom: 40px; /* extra ruimte onder h1 */
}

.tekst {
    line-height: 1.6;
    font-size: 1.1em;
}

figure {
    text-align: center;
    margin-bottom: 40px; /* extra ruimte onder h1 */
}

figure figcaption {
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
}

.custom-heading {
    font-family: Arial, sans-serif;
    color: #2c3e50;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 5px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.custom-subheading {
    font-family: Arial, sans-serif;
    padding-bottom: 3px;
    margin-top: 30px;
    margin-bottom: 5px;
    font-size: 1.3em;
}

.custom-subsubheading {
    font-family: Arial, sans-serif;
    padding-bottom: 3px;
    margin-top: 30px;
    margin-bottom: 5px;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .hero-vaccinatie {
        padding: 1.5rem;
        margin: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

.vaccinatie-lijst {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
}

.vaccinatie-kaart {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.vaccinatie-kaart:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.vaccinatie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.vaccinatie-titel {
    font-size: 1.4rem;
    font-weight: bold;
    color: #111827;
    margin: 0; /* verwijder ondermarge zodat het netjes blijft */
    flex: 1; /* zorgt ervoor dat de titel ruimte krijgt */
}

.vaccinatie-link {
    color: #004080;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap; /* voorkomt dat 'Lees meer' op een aparte regel komt */
}

.vaccinatie-link:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .vaccinatie-titel {
        font-size: 1.0rem;
        font-weight: bold;
        color: #111827;
        margin: 0; /* verwijder ondermarge zodat het netjes blijft */
        flex: 1; /* zorgt ervoor dat de titel ruimte krijgt */
    }
    
    .vaccinatie-link {
        color: #004080;
        font-weight: bold;
        text-decoration: none;
        white-space: nowrap; /* voorkomt dat 'Lees meer' op een aparte regel komt */
        font-size: 0.9rem;
    }
}