.nieuws-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: 200px;
}

.nieuws-loader {
    text-align: center;
    padding: 60px;
    color: #888;
    font-style: italic;
}

.nieuws-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.pinned-item {
    width: calc(50% - 15px);
    position: relative;
    overflow: hidden;
    height: 350px;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.pinned-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.pinned-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.pinned-item:hover .pinned-bg {
    transform: scale(1.08);
}

.pinned-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 25px;
    box-sizing: border-box;
    z-index: 2;
}

.pinned-title {
    color: #fff;
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.col-70 {
    width: calc(70% - 15px);
    display: flex;
    column-gap: 20px;
}

.col-30 {
    width: calc(30% - 15px);
}

.news-item-large {
    margin-bottom: 35px;
    padding-bottom: 35px;
}

.news-item-large:last-child { 
    border-bottom: none; 
}

.news-item-large .news-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin-bottom: 15px;
}

.news-item-large .news-title {
    margin: 0 0 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.news-item-large .news-title a {
    text-decoration: none;
    color: #222;
    font-size: 16px;
}

.news-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.news-list-small {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list-small li {
    border-bottom: 1px solid #28265a14;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.news-list-small li:last-child {
    border-bottom: none; 
}

.meta-info {
    font-size: 12px;
    color: #28265a;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.list-title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 600;
}

.list-title a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

@media (max-width: 850px) {
    .pinned-item {
        width: 100%; height: 280px;
    }
    .col-70, .col-30 { 
        width: 100%; 
    }
    .col-30 { 
        margin-top: 30px; 
        padding-top: 30px; 
        border-top: 2px solid #eee;
    }
}