


.container {
    width: min(92%, var(--max));
    margin-inline: auto;
}

.site-header {
    border-bottom: 1px solid var(--border);
    background: #fafbfd;
}

.site-header .brand {
    display: inline-block;
    padding: 16px 0;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.breadcrumb {
    font-size: .875rem;
    color: var(--muted);
    margin-bottom: 8px;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li+li::before {
    content: "›";
    margin: 0 .25rem;
    color: var(--muted);
}

.page-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin: 28px 0 6px;
}

.updated {
    color: var(--muted);
    font-size: .9rem;
    margin: 0 0 20px;
}

.section {
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

.section:first-of-type {
    border-top: none;
}

.section h2 {
    font-size: clamp(1.1rem, 2.1vw, 1.3rem);
    margin: 0 0 8px;
}

.section p,
.section ul {
    margin: 0 0 12px;
}

.mailto {
    font-weight: 600;
    text-decoration: none;
    color: var(--accent);
    word-break: break-all;
}

.mailto:hover {
    text-decoration: underline;
}

.note {
    color: var(--muted);
    font-size: .9rem;
    margin-left: .25rem;
}

.site-footer {
    margin-top: 34px;
    border-top: 1px solid var(--border);
    background: #fafbfd;
}

.site-footer .small {
    font-size: .9rem;
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 1rem;
    margin: 8px 0 20px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}