/* Single-article specific styles — overgenomen uit
   ClaudeDesignReference/design/Article.html (inline <style>). */

.page-art {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 56px;
}

/* ─── Breadcrumbs ──────────────────────────────────── */
.crumbs {
    font-family: var(--serif);
    font-size: 13px;
    color: var(--ink-mute);
    letter-spacing: 0.08em;
    margin-top: 24px;
}

.crumbs a { color: var(--ink-mute); text-decoration: none; }
.crumbs a:hover { color: var(--terracotta); }
.crumbs .sep { margin: 0 8px; opacity: 0.5; }
.crumbs .current { color: var(--ink); }

/* ─── Article head ────────────────────────────────── */
.art-head {
    padding: 32px 0 56px;
    text-align: left;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.art-head .rubriek { margin-bottom: 22px; }

.art-head h1 {
    font-family: var(--display);
    font-size: 84px;
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin: 0 0 24px;
    text-wrap: balance;
}

.art-head h1 em { font-style: italic; color: var(--plum); }

.art-head .deck {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    line-height: 1.45;
    color: var(--ink-soft);
    margin: 0 0 28px;
    max-width: 56ch;
    text-wrap: pretty;
}

.art-head .meta-bar {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    font-family: var(--serif);
    font-size: 14px;
    color: var(--ink-mute);
    flex-wrap: wrap;
}

.art-head .meta-bar .author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
}

.art-head .meta-bar .author .av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--pink);
    overflow: hidden;
    flex: 0 0 auto;
}

.art-head .meta-bar .author .av img,
.art-head .meta-bar .author .av svg { width: 100%; height: 100%; object-fit: cover; }

.art-head .meta-bar .author strong { font-style: italic; font-weight: 500; font-size: 16px; }
.art-head .meta-bar .sep-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rule); }

/* ─── Hero image ──────────────────────────────────── */
.art-hero {
    margin: 0 -56px 24px;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-2);
}

.art-hero img,
.art-hero svg { width: 100%; height: 100%; display: block; object-fit: cover; }

.art-hero .caption {
    position: absolute;
    left: 24px;
    bottom: 24px;
    font-family: var(--hand);
    font-size: 22px;
    color: var(--paper);
    background: rgba(42, 29, 21, 0.65);
    padding: 6px 14px;
    border-radius: 4px;
    backdrop-filter: blur(2px);
    transform: rotate(-1deg);
}

/* ─── Article body ────────────────────────────────── */
.art-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 0 64px;
    font-family: var(--serif-body);
    font-size: 19px;
    line-height: 1.75;
    color: var(--ink);
}

.art-body > p,
.art-body > .wp-block-paragraph { margin: 0 0 22px; text-wrap: pretty; }

.art-body > p:first-of-type::first-letter,
.art-body > .wp-block-paragraph:first-of-type::first-letter,
.art-body > p.has-drop-cap::first-letter {
    font-family: var(--display);
    font-size: 84px;
    float: left;
    line-height: 0.88;
    padding: 4px 14px 0 0;
    color: var(--plum);
    font-style: italic;
}

.art-body h2,
.art-body .wp-block-heading {
    font-family: var(--display);
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 48px 0 18px;
}

.art-body h2 em,
.art-body .wp-block-heading em { font-style: italic; color: var(--terracotta); }

.art-body a {
    color: var(--terracotta);
    text-decoration: underline;
    text-decoration-color: var(--ochre-soft);
    text-underline-offset: 3px;
}

/* Pull-quote — werkt zowel voor handgeschreven .pull als voor core/quote (wp-block-quote) */
.art-body .pull,
.art-body blockquote.wp-block-quote,
.art-body blockquote {
    margin: 48px -40px;
    padding: 32px 40px;
    font-family: var(--display);
    font-style: italic;
    font-size: 32px;
    line-height: 1.25;
    color: var(--plum);
    border-top: 2px solid var(--ochre);
    border-bottom: 2px solid var(--ochre);
    border-left: 0;
    text-align: left;
    text-wrap: balance;
    background: transparent;
}

.art-body .pull cite,
.art-body blockquote cite {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--ink-mute);
    margin-top: 16px;
    font-weight: 400;
    font-size: 15px;
}

.art-body figure,
.art-body .wp-block-image {
    margin: 48px -40px;
}

.art-body figure img,
.art-body figure .pic,
.art-body .wp-block-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
    display: block;
}

.art-body figure figcaption,
.art-body .wp-block-image figcaption {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--ink-mute);
    line-height: 1.5;
    padding-left: 12px;
    border-left: 2px solid var(--ochre);
    text-align: left;
}

/* Interview-flow — losse blokken die Heleen vrij kan mixen.
   Vraag: eigen plum left-bar + bold plum tekst.
   Antwoord (tekst): ingesprongen paragraaf onder de vraag.
   Antwoord (beeld): core/image met block-style "Interview antwoord (beeld)" —
   ingesprongen, max-width, geen full-bleed.
   Tussen Q en A kunnen ook gewone paragrafen / images / quotes staan. */

.art-body .interview-vraag,
.art-body p.interview-vraag {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--plum);
    font-size: 19px;
    line-height: 1.4;
    margin: 36px 0 14px;
    padding-left: 20px;
    border-left: 3px solid var(--plum);
}

.art-body .interview-antwoord,
.art-body p.interview-antwoord {
    margin: 0 0 22px 23px;
    color: var(--ink);
}

/* Beeld-antwoord (core/image met block-style 'interview-antwoord') —
   indent + bounded breedte zodat het visueel bij het antwoord hoort, niet
   full-bleed zoals een gewone figure. */
.art-body .wp-block-image.is-style-interview-antwoord,
.art-body figure.is-style-interview-antwoord {
    margin: 0 0 28px 23px;
    max-width: 560px;
}

.art-body .wp-block-image.is-style-interview-antwoord img,
.art-body figure.is-style-interview-antwoord img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    border-radius: 6px;
    margin-bottom: 8px;
}

.art-body .wp-block-image.is-style-interview-antwoord figcaption,
.art-body figure.is-style-interview-antwoord figcaption {
    text-align: left;
    padding-left: 12px;
    border-left: 2px solid var(--ochre);
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--ink-mute);
}

/* ─── Inline email signup ─────────────────────────── */
.inline-signup {
    margin: 48px 0;
    padding: 36px 40px;
    background:
        radial-gradient(ellipse 60% 60% at 20% 30%, rgba(233, 189, 175, 0.40), transparent 70%),
        radial-gradient(ellipse 50% 50% at 85% 80%, rgba(233, 211, 106, 0.45), transparent 70%),
        var(--bg-3);
    border: 1.5px solid var(--rule);
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.inline-signup::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: 80px;
    height: 22px;
    background: rgba(196, 168, 208, 0.7);
}

.inline-signup h3 {
    font-family: var(--display);
    font-size: 30px;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.inline-signup h3 em { font-style: italic; color: var(--plum); }

.inline-signup p {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink-soft);
    margin: 0 0 20px;
    font-size: 16px;
}

.inline-signup form {
    display: inline-flex;
    align-items: center;
    background: var(--paper);
    border-radius: 999px;
    border: 1.5px solid var(--ink);
    padding: 4px 4px 4px 20px;
    max-width: 460px;
    width: 100%;
    gap: 10px;
}

.inline-signup input {
    flex: 1;
    border: 0;
    background: transparent;
    font-family: var(--serif-body);
    font-size: 15px;
    outline: none;
    padding: 10px 0;
}

.inline-signup input::placeholder { color: var(--ink-mute); font-style: italic; }

.inline-signup button {
    border: 0;
    background: var(--plum);
    color: var(--paper);
    font-family: var(--serif);
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 999px;
    cursor: pointer;
}

/* ─── Author bio card ─────────────────────────────── */
.author-card {
    margin: 64px 0 40px;
    padding: 32px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 28px;
    background: var(--paper);
    border: 1.5px solid var(--rule);
    border-radius: 8px;
    box-shadow: 5px 7px 0 rgba(42, 29, 21, 0.05);
}

.author-card .av {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: var(--pink);
}

.author-card .av img,
.author-card .av svg { width: 100%; height: 100%; object-fit: cover; }

.author-card .info { display: flex; flex-direction: column; gap: 6px; }

.author-card .info .eye {
    font-family: var(--serif);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--terracotta);
}

.author-card .info h4 {
    font-family: var(--display);
    font-size: 28px;
    line-height: 1;
    margin: 0;
}

.author-card .info h4 em { font-style: italic; color: var(--plum); }

.author-card .info p {
    font-family: var(--serif-body);
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 4px 0 8px;
}

.author-card .info .links {
    display: flex;
    gap: 16px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    flex-wrap: wrap;
}

.author-card .info .links a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 1px;
}

.author-card .info .links a:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ─── Comments ────────────────────────────────────── */
.comments {
    margin: 64px 0 0;
    padding: 48px 0;
    border-top: 1.5px solid var(--rule);
}

.comments-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}

.comments-head h3 {
    font-family: var(--display);
    font-size: 38px;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.015em;
}

.comments-head h3 em { font-style: italic; color: var(--plum); }

.comments-head .count {
    font-family: var(--hand);
    font-size: 24px;
    color: var(--ochre);
    transform: rotate(-2deg);
}

.comment-list { list-style: none; padding: 0; margin: 0; }
.comment-list ol.children { list-style: none; padding: 0; margin: 0; }

.comment-list .comment-wrap {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px dashed var(--rule);
}

.comment-list li:last-child > .comment-wrap { border-bottom: none; }

.comment-list .children li > .comment-wrap {
    margin-left: 74px;
    grid-template-columns: 44px 1fr;
    padding-top: 20px;
}

.comment-list .av {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.comment-list .children .av { width: 44px; height: 44px; }

.comment-list .av img,
.comment-list .av svg { width: 100%; height: 100%; display: block; }

.comment-list .head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.comment-list .head .name {
    font-family: var(--display);
    font-style: italic;
    font-size: 19px;
    color: var(--ink);
}

.comment-list .head .badge-author {
    background: var(--plum);
    color: var(--paper);
    font-family: var(--serif);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 3px;
}

.comment-list .head .when {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink-mute);
    font-size: 13px;
}

.comment-list .body {
    font-family: var(--serif-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 8px;
}

.comment-list .actions {
    display: flex;
    gap: 16px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: var(--ink-mute);
}

.comment-list .actions a {
    color: var(--ink-soft);
    text-decoration: none;
}

.comment-list .actions a:hover { color: var(--terracotta); }

.comment-form-wrap {
    margin-top: 40px;
    padding: 32px;
    background: var(--bg-3);
    border: 1.5px solid var(--rule);
    border-radius: 8px;
}

.comment-form-wrap > .comment-reply-title {
    font-family: var(--display);
    font-size: 24px;
    margin: 0 0 6px;
    line-height: 1;
}

.comment-form-wrap > .comment-reply-title em { font-style: italic; color: var(--terracotta); }

.comment-form-wrap > .must-log-in,
.comment-form-wrap > .logged-in-as {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink-mute);
    font-size: 14px;
    margin: 0 0 16px;
}

.comment-form .comment-form-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    border: 1px solid var(--rule);
    background: var(--paper);
    border-radius: 6px;
    padding: 12px 16px;
    font-family: var(--serif-body);
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.15s;
    box-sizing: border-box;
}

.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--plum); }

.comment-form input::placeholder,
.comment-form textarea::placeholder { color: var(--ink-mute); font-style: italic; }

.comment-form textarea { min-height: 120px; resize: vertical; }

.comment-form .comment-form-field-label {
    display: block;
    font-family: var(--serif);
    font-size: 13px;
    color: var(--ink-mute);
    margin-bottom: 4px;
}

.comment-form .comment-form-cookies-consent,
.comment-form .comment-form-newsletter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: var(--ink-mute);
    margin: 8px 0 0;
}

.comment-form .comment-form-cookies-consent input,
.comment-form .comment-form-newsletter input {
    width: auto;
    accent-color: var(--plum);
}

.comment-form .form-submit { margin-top: 16px; }

.comment-form .submit {
    border: 0;
    background: var(--plum);
    color: var(--paper);
    font-family: var(--serif);
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 999px;
    cursor: pointer;
}

.comment-form .submit:hover { background: var(--terracotta); }

/* ─── Related posts ───────────────────────────────── */
.related {
    margin: 80px 0 0;
    padding: 56px 0 80px;
    border-top: 1.5px solid var(--rule);
}

.related h3 {
    font-family: var(--display);
    font-size: 42px;
    line-height: 1;
    margin: 0 0 36px;
    letter-spacing: -0.015em;
}

.related h3 em { font-style: italic; color: var(--plum); }

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.rel-card {
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rel-card .pic {
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    overflow: hidden;
    filter: drop-shadow(4px 6px 0 rgba(42, 29, 21, 0.06));
    background: var(--bg-2);
}

.rel-card .pic img,
.rel-card .pic svg { width: 100%; height: 100%; object-fit: cover; display: block; }

.rel-card h4 {
    font-family: var(--display);
    font-size: 22px;
    line-height: 1.15;
    margin: 0;
}

.rel-card h4 em { font-style: italic; color: var(--terracotta); }

.rel-card .when {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink-mute);
    font-size: 13px;
}

.rel-card .rubriek-inline {
    font-family: var(--serif);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--terracotta);
}

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
    .page-art { padding: 0 20px; }
    .art-head h1 { font-size: 48px; }
    .art-head .deck { font-size: 18px; }
    .art-hero { margin: 0 -20px 24px; }
    .art-body { font-size: 17px; line-height: 1.65; padding: 16px 0 32px; }
    .art-body > p:first-of-type::first-letter,
    .art-body > .wp-block-paragraph:first-of-type::first-letter,
    .art-body > p.has-drop-cap::first-letter { font-size: 56px; }
    .art-body h2 { font-size: 26px; margin: 32px 0 12px; }
    .art-body .pull,
    .art-body blockquote { margin: 32px 0; padding: 24px 0; font-size: 22px; }
    .art-body figure { margin: 32px 0; }
    .author-card { grid-template-columns: 80px 1fr; padding: 20px; }
    .related-grid { grid-template-columns: 1fr; }
    .related h3 { font-size: 32px; }
    .comments-head h3 { font-size: 28px; }
    .comment-form .comment-form-flex { grid-template-columns: 1fr; }
}
