    /*Specifieke layout voor de blogpagina*/
    :root {
        --accent: #6a0dad;
        --accent-2: #1e7f8a;
        --muted: #6b6b74;
        --card: #fff;
        --container: 1100px;
    }

    .post-grid {
        display: grid;
        grid-template-columns: 1fr 320px;
        gap: 28px;
        align-items: start;
    }

    /* Top band with title (not a header element) */
    .post-hero {
        background: linear-gradient(90deg, rgba(106, 13, 173, 0.06), rgba(30, 127, 138, 0.03));
        border-radius: 12px;
        padding: 22px;
        margin-bottom: 18px;
        display: flex;
        gap: 18px;
        align-items: center;
        box-shadow: 0 10px 30px rgba(11, 22, 55, 0.04);
    }

    .post-hero .hero-left {
        flex: 1 1 auto;
        min-width: 0;
    }

    .post-title {
        margin: 0 0 8px 0;
        font-size: 1.9rem;
        color: var(--accent);
        line-height: 1.05;
        word-break: break-word;
    }

    .post-sub {
        color: var(--muted);
        font-size: 0.95rem;
    }

    .author-box {
        /* vernieuwde, responsive author-box */
        background: var(--card);
        border-radius: 10px;
        padding: 10px 12px;
        display: flex;
        gap: 12px;
        align-items: center;
        box-shadow: 0 6px 18px rgba(11, 22, 55, 0.04);
        min-width: 0;
        width: 100%;
        /* laat de box niet onnodig uitrekken in de hero */
        flex: 0 0 auto;
    }

    .author-box__img {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        object-fit: cover;
        flex: 0 0 64px;
    }

    .author-box__info {
        display: flex;
        flex-direction: column;
        min-width: 0;
        /* belangrijk zodat tekst kan afbreken in flex */
        overflow: hidden;
    }

    .author-box__by {
        color: var(--muted);
        font-size: 0.85rem;
        margin-bottom: 2px;
    }

    .author-box__name {
        font-weight: 700;
        font-size: 1rem;
        color: #111;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .author-box__role {
        color: var(--muted);
        font-size: 0.9rem;
    }

    .author-box__actions {
        margin-left: auto;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    /* kleine iconen */
    .author-box__actions a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 6px 16px rgba(11, 22, 55, 0.04);
        color: var(--accent);
        text-decoration: none;
        font-size: 0.95rem;
    }

    /* Artikelinhoud */
    .post-article {
        background: var(--card);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 28px rgba(11, 22, 55, 0.04);
    }

    .post-lead {
        margin-top: 0;
        color: #111;
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .post-figure {
        margin: 18px 0;
        border-radius: 10px;
        overflow: hidden;
    }

    .post-figure img {
        width: 100%;
        height: auto;
        display: block;
    }

    .post-content {
        color: #111;
        line-height: 1.75;
    }

    .post-content h2 {
        margin-top: 1.4rem;
        color: var(--accent);
    }

    .post-content ul {
        margin: 0 0 16px 1.1rem;
    }

    .post-content ul.wp {
        list-style: none;
        padding: 0;
        margin: 10px 0 18px;
        display: block;
    }

    .post-content ul.wp li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .post-content ul.wp li i {
        color: var(--accent);
        margin-top: 4px;
        min-width: 20px;
        text-align: center;
    }

    .callout {
        margin: 18px 0;
        padding: 14px;
        border-radius: 10px;
        background: linear-gradient(90deg, rgba(106, 13, 173, 0.04), rgba(30, 127, 138, 0.02));
        border: 1px solid rgba(106, 13, 173, 0.05);
    }

    /* Sidebar */
    .sidebar {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .card {
        background: var(--card);
        padding: 14px;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(11, 22, 55, 0.04);
    }

    .share-vertical {
        position: sticky;
        top: 28px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .share-vertical a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        background: #fff;
        color: var(--accent);
        box-shadow: 0 8px 20px rgba(11, 22, 55, 0.04);
        text-decoration: none;
    }

    .toc {
        font-size: 0.95rem;
        color: var(--muted);
    }

    .post-footer {
        margin-top: 18px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
    }

    .tag-pill {
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        padding: 6px 10px;
        border-radius: 999px;
        font-weight: 600;
        color: var(--muted);
    }

    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        /* 16:9 */
        padding-top: 25px;
        height: 0;
        margin: 18px 0;
    }
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .post-grid {
            grid-template-columns: 1fr;
        }

        .author-box {
            flex: 0 0 auto;
            width: 100%;
            justify-content: flex-start;
        }

        .post-hero {
            flex-direction: column;
            align-items: stretch;
        }

        .post-hero .hero-left {
            order: 2;
        }

        .author-box {
            order: 1;
        }

        .share-vertical {
            position: relative;
            flex-direction: row;
            justify-content: flex-start;
            padding: 8px 0;
            top: auto;
        }
    }

    @media (max-width: 768px) {
        .post-hero {
            padding: 16px;
        }

        .post-title {
            font-size: 1.6rem;
        }

        .post-lead {
            font-size: 1.02rem;
        }

        .author-box {
            flex: 0 0 auto;
            width: auto;
            justify-content: flex-start;
        }
        .video-container {
            padding-bottom: 56.25%;
            /* 16:9 */
            padding-top: 25px;
            height: 0;
            margin: 14px 0;

        }
    }

    @media (max-width: 640px) {
        .post-title {
            font-size: 1.45rem;
        }

        .post-lead {
            font-size: 1rem;
        }

        .author-box img {
            border-radius: 50%;
            width: 70px;
            height: 70px;
            flex: 0 0 70px;
        }
    }

    /* specifieke media query voor vermindering van beweging */
    @media (prefers-reduced-motion: reduce) {
        * {
            transition: none !important;
        }
    }

    /* Text-to-Speech Controls Styles */
    .tts-controls {
        margin-left: 10px;
    }

    @media (max-width: 600px) {
        .tts-controls {
            margin-left: 0;
            margin-top: 10px;
        }
    }

