/* ==========================================================================
   Section Nieuws - Homepage - Thomas Vaer (zwart-wit)
   ========================================================================== */

#nieuws-section { padding: 100px 0; background: #0e0e0e; position: relative; overflow: hidden; }

.nieuws-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 45px; }
#nieuws-section .nieuws-section-header h2 { font-size: 56px; color: white; margin: 0; text-transform: uppercase; font-weight: 700; }
#nieuws-section .nieuws-section-header .button { border-color: rgba(255,255,255,0.2); font-size: 14px; }
#nieuws-section .nieuws-section-header .button:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

.nieuws-section-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }

.nieuws-section-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.nieuws-section-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.nieuws-section-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.nieuws-section-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.nieuws-section-card:hover .nieuws-section-card-media img { transform: scale(1.08); }
.nieuws-section-placeholder { width: 100%; height: 100%; background: rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: center; font-size: 36px; color: rgba(255,255,255,0.08); }
.nieuws-section-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to top, rgba(14,14,14,0.7), transparent); pointer-events: none; }
.nieuws-section-video-badge { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #121212; font-size: 11px; z-index: 2; }

.nieuws-section-card-content { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.nieuws-section-date { font-size: 12px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; display: block; }
.nieuws-section-card-content h3 { font-size: 20px; line-height: 1.3; color: white; margin: 0 0 8px; text-transform: none; font-weight: 600; }
.nieuws-section-excerpt { flex: 1; }
.nieuws-section-excerpt p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.4); margin: 0; }
.nieuws-section-read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: white; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 14px; transition: gap 0.3s ease; }
.nieuws-section-card:hover .nieuws-section-read-more { gap: 14px; }

@media only screen and (max-width: 1000px) {
    #nieuws-section { padding: 70px 0; }
    #nieuws-section .nieuws-section-header h2 { font-size: 36px; }
    .nieuws-section-grid { grid-template-columns: repeat(2, 1fr); }
    .nieuws-section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media only screen and (max-width: 700px) {
    .nieuws-section-grid { grid-template-columns: 1fr; gap: 16px; }
    #nieuws-section .nieuws-section-header h2 { font-size: 30px; }
}
