.news-detail-page {
    padding: 0 0 48px;
}

/* HERO */
.news-detail-hero {
    padding: 30px 0 20px;
}

.news-detail-backlink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.news-detail-backlink:hover {
    color: var(--text);
    transform: translateX(-2px);
}

.news-detail-hero__card {
    padding: 28px 30px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow);
}

.news-detail-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.news-detail-badge,
.news-detail-date {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.news-detail-badge {
    background: rgba(91, 140, 255, 0.12);
    border: 1px solid rgba(91, 140, 255, 0.18);
    color: #bfd0ff;
}

.news-detail-date {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
}

.news-detail-hero__card h1 {
    margin: 0 0 14px;
    line-height: 1.08;
}

.news-detail-intro {
    margin: 0;
    max-width: 860px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* CONTENT */
.news-detail-section {
    padding-top: 8px;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
    align-items: start;
}

/* LINKERBLOK */
.news-detail-main {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 26px;
    padding: 34px;
    box-shadow: var(--shadow);
}

.news-detail-content {
    font-size: 1.03rem;
    line-height: 1.9;
    color: var(--text);
}

.news-detail-content > *:first-child {
    margin-top: 0;
}

.news-detail-content > *:last-child {
    margin-bottom: 0;
}

.news-detail-content p {
    margin: 0 0 18px;
}

.news-detail-content h1,
.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4,
.news-detail-content h5,
.news-detail-content h6 {
    margin: 28px 0 14px;
    line-height: 1.2;
    color: var(--text);
}

.news-detail-content h1 {
    font-size: 2rem;
}

.news-detail-content h2 {
    font-size: 1.65rem;
}

.news-detail-content h3 {
    font-size: 1.35rem;
}

.news-detail-content h4,
.news-detail-content h5,
.news-detail-content h6 {
    font-size: 1.1rem;
}

.news-detail-content ul,
.news-detail-content ol {
    margin: 0 0 20px 22px;
    padding: 0;
}

.news-detail-content li {
    margin-bottom: 8px;
}

.news-detail-content a {
    color: #8cbcff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.news-detail-content a:hover {
    color: #b8d7ff;
}

.news-detail-content strong {
    color: #ffffff;
    font-weight: 800;
}

.news-detail-content em {
    color: #e5e7eb;
}

.news-detail-content blockquote {
    margin: 24px 0;
    padding: 16px 18px;
    border-left: 4px solid rgba(91, 140, 255, 0.45);
    background: rgba(255,255,255,0.03);
    border-radius: 0 16px 16px 0;
    color: var(--muted);
}

.news-detail-content hr {
    margin: 28px 0;
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.news-detail-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 24px auto;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.news-detail-content figure {
    margin: 24px 0;
}

.news-detail-content figure img {
    margin: 0 auto 10px;
}

.news-detail-content figcaption {
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.news-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
}

.news-detail-content th,
.news-detail-content td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.news-detail-content th {
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-weight: 700;
}

.news-detail-content td {
    color: var(--muted);
}

.news-detail-content pre,
.news-detail-content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.news-detail-content pre {
    margin: 24px 0;
    padding: 16px 18px;
    overflow-x: auto;
    border-radius: 16px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    color: #f8fafc;
}

.news-detail-content code {
    padding: 2px 6px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: #dbeafe;
}

.news-detail-content pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}

.news-back {
    margin-top: 28px;
}

/* RECHTERBLOK */
.news-detail-sidebar {
    position: sticky;
    top: 100px;
}

.news-detail-sidebar__card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 26px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.news-detail-sidebar__card h3 {
    margin: 0 0 18px;
}

/* MEER NIEUWS */
.news-related-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-related-item {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.news-related-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(91, 140, 255, 0.35);
    transform: translateY(-2px);
}

.news-related-category {
    display: block;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.news-related-item strong {
    color: var(--text);
    line-height: 1.45;
}

.news-related-empty {
    color: var(--muted);
    margin: 0;
}

/* NIET GEVONDEN */
.news-detail-empty {
    padding: 34px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow);
    text-align: center;
}

.news-detail-empty h1 {
    margin: 0 0 12px;
}

.news-detail-empty p {
    margin: 0 0 20px;
    color: var(--muted);
}

/* MOBILE */
@media (max-width: 980px) {
    .news-detail-layout {
        grid-template-columns: 1fr;
    }

    .news-detail-sidebar {
        position: static;
    }
}

@media (max-width: 760px) {
    .news-detail-page {
        padding-bottom: 32px;
    }

    .news-detail-hero__card,
    .news-detail-main,
    .news-detail-sidebar__card,
    .news-detail-empty {
        padding: 20px;
        border-radius: 20px;
    }

    .news-detail-content {
        font-size: 1rem;
        line-height: 1.8;
    }

    .news-detail-content table,
    .news-detail-content thead,
    .news-detail-content tbody,
    .news-detail-content th,
    .news-detail-content td,
    .news-detail-content tr {
        display: block;
        width: 100%;
    }

    .news-detail-content th {
        border-bottom: none;
    }

    .news-detail-content td {
        border-top: none;
    }
}