/* political.wiki */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #f9fafb; color: #111827; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.8; }
.site-header { background: #f9fafb; text-align: center; padding: 3rem 2rem 2rem; }
.header-inner { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.book-icon { display: inline-block; width: 20px; height: 24px; border: 2px solid #111827; border-radius: 2px; position: relative; }
.book-icon::before { content: ''; position: absolute; top: 4px; left: 4px; right: 4px; height: 1px; background: #111827; box-shadow: 0 4px 0 #111827, 0 8px 0 #111827; }
.brand { font-family: 'Merriweather', serif; font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem); }
.tagline { font-size: 0.75rem; color: #737373; margin-top: 0.3rem; }
.search-bar { max-width: 400px; margin: 1.5rem auto 0; background: #ffffff; border: 1px solid #d1d5db; border-radius: 4px; padding: 0.6rem 1rem; }
.search-placeholder { font-size: 0.8rem; color: #9ca3af; }
.breadcrumb { max-width: 900px; margin: 0 auto; padding: 0.8rem 2rem; font-size: 0.7rem; color: #737373; }
.breadcrumb .current { color: #2563eb; }
.article-layout { max-width: 900px; margin: 0 auto; padding: 1rem 2rem 4rem; display: grid; grid-template-columns: 1fr 280px; gap: 32px; }
.article-main { background: #ffffff; padding: 2rem; border-radius: 4px; }
.last-updated { font-family: 'IBM Plex Mono', monospace; font-size: 0.65rem; color: #9ca3af; margin-bottom: 1rem; }
.section-heading { font-family: 'Merriweather', serif; font-weight: 700; font-size: 1.4rem; border-bottom: 1px solid #e5e7eb; padding-bottom: 8px; margin-bottom: 16px; }
.subsection-heading { font-family: 'Merriweather', serif; font-weight: 700; font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.edit-link { font-family: 'Inter', sans-serif; font-size: 0.7rem; color: #2563eb; font-weight: 400; cursor: pointer; }
.article-text { font-size: 0.85rem; margin-bottom: 1rem; }
.section-rule { border: none; border-top: 1px solid #e5e7eb; margin: 2rem 0; }
.see-also { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.see-also-col { display: flex; flex-direction: column; gap: 0.3rem; }
.wiki-link { color: #2563eb; font-size: 0.85rem; text-decoration: none; }
.wiki-link:hover { text-decoration: underline; }
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.toc { background: #f3f4f6; border-radius: 4px; padding: 1rem; }
.toc-title { font-family: 'Merriweather', serif; font-weight: 700; font-size: 0.85rem; margin-bottom: 0.5rem; }
.toc-link { display: block; font-size: 0.75rem; color: #111827; text-decoration: none; padding: 0.2rem 0; }
.toc-link.active { color: #2563eb; }
.toc-link.indent { padding-left: 1rem; }
.infobox { border: 1px solid #d1d5db; border-radius: 4px; padding: 16px; background: #f9fafb; }
.infobox-title { font-family: 'Merriweather', serif; font-weight: 700; font-size: 0.9rem; text-align: center; margin-bottom: 0.8rem; padding-bottom: 0.5rem; border-bottom: 1px solid #e5e7eb; }
.infobox-table { width: 100%; font-size: 0.75rem; border-collapse: collapse; }
.infobox-table tr:nth-child(even) { background: #f3f4f6; }
.infobox-table td { padding: 0.3rem 0.5rem; }
.info-label { font-weight: 700; color: #374151; white-space: nowrap; }
@media (max-width: 700px) { .article-layout { grid-template-columns: 1fr; } .sidebar { order: -1; } }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
