/* Sources & Disclaimers — navy/blue design system.
 *
 * Collapsed by default: a subtle single-line summary "ⓘ Bronnen en disclaimers ▾".
 * Expanded body styled as an amber info-note (disclaimer feel) with blue source links.
 */

.sources-disclaimers {
    padding: 24px 0 32px;
    border-top: 1px solid var(--line);
    font-family: var(--font);
}

.sd-details {
    background: transparent;
}

/* Summary: subtle single line, not a callout. */
.sd-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13.5px;
    color: var(--muted);
    user-select: none;
    -webkit-user-select: none;
}
.sd-summary::-webkit-details-marker { display: none; }
.sd-summary::marker { content: ''; }

.sd-summary-icon {
    color: var(--blue);
    font-size: 16px;
    line-height: 1;
}
.sd-summary-label {
    flex: 1;
    font-weight: 600;
    color: var(--ink);
}
.sd-summary-toggle {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-right: 4px;
}
.sd-details[open] .sd-summary-toggle {
    transform: rotate(-135deg);
}

.sd-summary:hover {
    color: var(--ink);
}
.sd-summary:hover .sd-summary-toggle {
    border-color: var(--ink);
}

/* Expanded body: amber info-note (disclaimer pattern). */
.sd-body {
    margin-top: 14px;
    padding: 16px 18px;
    background: #fffbeb;
    border-radius: var(--r);
    border: 1px solid #f6e3b0;
    font-size: 13px;
    line-height: 1.55;
    color: #7a5a14;
}

.sd-item {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f6e3b0;
}
.sd-item:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.sd-item-title {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 6px;
    text-transform: none;
    letter-spacing: 0;
}

.sd-item-body p:last-child { margin-bottom: 0; }
.sd-item-body strong { color: var(--ink); font-weight: 700; }
.sd-item-body a {
    color: var(--blue-d);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.sd-item-body a:hover { color: var(--blue); }

.sd-footer {
    font-size: 11.5px;
    color: var(--muted);
    margin: 14px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    text-align: center;
}
.sd-footer a {
    color: var(--blue-d);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.sd-footer a:hover { color: var(--blue); }
