article {
}

article h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111;
    border-left: 4px solid #d71920;
    padding-left: 0.5rem;
}

article h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #111;
    border-left: 4px solid #d71920;
    padding-left: 0.5rem;
}

article p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

article ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

article li {
    margin-bottom: 0.5rem;
}

article strong {
    color: #000;
    font-weight: 600;
}

article a {
    color: #d71920;
}

article em {
    font-style: italic;
    color: #555;
}

article hr {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid #eee;
}

/* Desktop only: vanaf 768px */
@media (min-width: 768px) {
    .desktop-min-h-250 {
        min-height: 250px;
    }
}

/* Standaard = mobiel */
.mobile-min-h-350 {
    min-height: 350px;
}

/* Desktop en groter: overschrijven naar geen minimumhoogte */
@media (min-width: 768px) {
    .mobile-min-h-350 {
        min-height: auto; /* of 0 als je echt geen beperking wilt */
    }
}

.text-stroke {
    text-shadow:
            -1px -1px 0 black,
            1px -1px 0 black,
            -1px  1px 0 black,
            1px  1px 0 black;
}

.image-overlay {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0.75rem;
}

.image-overlay img {
    display: block;
    width: 100%;
    /*height: auto;*/
    object-fit: cover;
    border-radius: 0.75rem;
}

/* De gradient overlay, exact over de afbeelding */
.gradient-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
    border-radius: 0.75rem;
}

/* Tekst bovenop de gradient */
.image-overlay .text-content {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 2;
    color: white;
    font-weight: 600;
}

/* Extra styling */
.text-content .meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.dot-separator {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
}

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 0.5rem;
}

.nieuws-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

/* Desktop-layout vanaf 640px breed */
@media (min-width: 640px) {
    .nieuws-container {
        flex-direction: row;
    }

    .nieuws-afbeelding {
        flex: 0 0 30%; /* 30% breedte */
    }

    .nieuws-tekst {
        flex: 1; /* 70% resterende ruimte */
    }
}

.nieuws-afbeelding img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.seo h5 {
    color: rgba(190, 21, 34, 1);
    font-weight: bold;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding-top: 10px;
}