/* mujun.wiki — Encyclopedia of Contradictions
   Palette:
     #ffffff  Page White
     #202122  Wiki Dark
     #3366cc  Link Blue
     #f8f9fa  Section Gray
     #a2a9b1  Border Light
     #54595d  Meta Gray
     #fee7e6  Contradiction Pink
     #cc3333  Callout Red
   Fonts: IBM Plex Sans (display + body), IBM Plex Mono (code/refs)
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "IBM Plex Sans", system-ui, sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #202122;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #3366cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

code, .mono {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: 0.85rem;
    background: #f8f9fa;
    padding: 0 0.25rem;
    border: 1px solid #a2a9b1;
    border-radius: 2px;
    color: #202122;
}

/* ================== Site header ================== */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #a2a9b1;
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr 360px;
    gap: 2rem;
    align-items: center;
    padding: 0.85rem 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    color: #202122;
    font-weight: 600;
}

.site-logo:hover {
    text-decoration: none;
}

.site-logo__glyph {
    font-size: 1.65rem;
    font-weight: 600;
    color: #cc3333;
    letter-spacing: -0.02em;
    line-height: 1;
}

.site-logo__name {
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

.site-logo__dot {
    color: #cc3333;
}

.site-nav {
    display: flex;
    gap: 1.4rem;
    font-size: 0.9rem;
}

.site-nav a {
    color: #54595d;
    border-bottom: 2px solid transparent;
    padding: 0.25rem 0;
    transition: color 0.15s, border-color 0.15s;
}

.site-nav a:hover {
    color: #3366cc;
    border-bottom-color: #3366cc;
    text-decoration: none;
}

.site-search {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    border: 1px solid #a2a9b1;
    border-radius: 2px;
    overflow: visible;
    background: #ffffff;
}

.site-search input {
    border: none;
    outline: none;
    padding: 0.5rem 0.75rem;
    font-family: inherit;
    font-size: 0.9rem;
    color: #202122;
    background: transparent;
}

.site-search input::placeholder {
    color: #a2a9b1;
}

.site-search__btn {
    border: none;
    border-left: 1px solid #a2a9b1;
    background: #f8f9fa;
    color: #202122;
    padding: 0 1rem;
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.15s;
}

.site-search__btn:hover {
    background: #ffffff;
    color: #3366cc;
}

.site-search__results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #a2a9b1;
    border-radius: 2px;
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
    max-height: 320px;
    overflow-y: auto;
    box-shadow: 0 2px 6px rgba(32, 33, 34, 0.06);
    z-index: 60;
}

.site-search__results li {
    padding: 0.4rem 0.75rem;
    cursor: pointer;
    font-size: 0.88rem;
    border-bottom: 1px solid #f8f9fa;
}

.site-search__results li:last-child {
    border-bottom: none;
}

.site-search__results li:hover,
.site-search__results li.is-highlight {
    background: #f8f9fa;
    color: #3366cc;
}

.site-search__results li .result-cat {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    color: #54595d;
    margin-left: 0.4rem;
}

.site-header__strip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #a2a9b1;
    font-size: 0.78rem;
    color: #54595d;
    font-family: "IBM Plex Mono", monospace;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 0 auto;
}

.strip-label {
    color: #54595d;
}

.strip-sep {
    color: #a2a9b1;
}

.site-header__strip a {
    color: #3366cc;
}

.strip-btn {
    margin-left: auto;
    border: 1px solid #a2a9b1;
    background: #ffffff;
    color: #202122;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    padding: 0.15rem 0.55rem;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.15s, color 0.15s;
}

.strip-btn:hover {
    background: #3366cc;
    color: #ffffff;
    border-color: #3366cc;
}

/* ================== Layout ================== */
.layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 240px;
    max-width: 1600px;
    margin: 0 auto;
    align-items: start;
}

.layout.is-sidebar-hidden {
    grid-template-columns: 0 minmax(0, 1fr) 240px;
}

.layout.is-sidebar-hidden .sidebar {
    transform: translateX(-100%);
    visibility: hidden;
    width: 0;
    overflow: hidden;
}

/* ================== Sidebar ================== */
.sidebar {
    position: sticky;
    top: 88px;
    align-self: start;
    height: calc(100vh - 88px);
    overflow-y: auto;
    background: #f8f9fa;
    border-right: 1px solid #a2a9b1;
    padding: 1.5rem 1.25rem;
    transition: transform 0.2s ease;
}

.sidebar__section {
    margin-bottom: 1.75rem;
}

.sidebar__section--meta {
    border-top: 1px solid #a2a9b1;
    padding-top: 1rem;
    margin-top: 2rem;
}

.sidebar__title {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #54595d;
    margin-bottom: 0.5rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #a2a9b1;
}

.sidebar__list {
    list-style: none;
    font-size: 0.85rem;
}

.sidebar__list li {
    line-height: 1.5;
    padding: 0.18rem 0;
}

.sidebar__list a {
    color: #3366cc;
}

.sidebar__tree {
    list-style: none;
    font-size: 0.85rem;
}

.tree-item {
    margin-bottom: 0.1rem;
}

.tree-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 14px 1fr auto;
    align-items: center;
    gap: 0.35rem;
    background: transparent;
    border: none;
    padding: 0.25rem 0.25rem;
    text-align: left;
    cursor: pointer;
    color: #202122;
    font-family: inherit;
    font-size: 0.86rem;
    border-radius: 2px;
    transition: background 0.15s;
}

.tree-toggle:hover {
    background: #ffffff;
    color: #3366cc;
}

.tree-caret {
    color: #54595d;
    font-size: 0.7rem;
    width: 14px;
    display: inline-block;
    transition: transform 0.15s;
}

.tree-label {
    font-weight: 500;
}

.tree-count {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    color: #54595d;
    background: #ffffff;
    border: 1px solid #a2a9b1;
    padding: 0 0.35rem;
    border-radius: 2px;
    line-height: 1.4;
}

.tree-children {
    list-style: none;
    margin: 0.2rem 0 0.4rem 1.25rem;
    padding-left: 0.65rem;
    border-left: 1px solid #a2a9b1;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s;
}

.tree-children li {
    padding: 0.18rem 0;
    line-height: 1.45;
}

.tree-children a {
    color: #3366cc;
    font-size: 0.83rem;
}

.tree-children a.is-active {
    color: #202122;
    font-weight: 600;
    background: #ffffff;
    padding: 0.05rem 0.4rem;
    border: 1px solid #a2a9b1;
    border-radius: 2px;
    display: inline-block;
}

.tree-item.is-open .tree-children {
    max-height: 600px;
    opacity: 1;
}

.sidebar__meta {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.74rem;
    color: #54595d;
    line-height: 1.7;
}

/* ================== Content ================== */
.content {
    padding: 1.75rem 2.5rem 4rem;
    min-width: 0;
}

.breadcrumb {
    font-size: 0.8rem;
    color: #54595d;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #f8f9fa;
}

.breadcrumb a {
    color: #3366cc;
}

.breadcrumb__sep {
    color: #a2a9b1;
    margin: 0 0.4rem;
    font-family: "IBM Plex Mono", monospace;
}

.breadcrumb__current {
    color: #202122;
    font-weight: 500;
}

.article {
    max-width: 740px;
}

.article__header {
    border-bottom: 1px solid #a2a9b1;
    padding-bottom: 0.85rem;
    margin-bottom: 1.5rem;
}

.article__title {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.2;
    color: #202122;
    letter-spacing: -0.01em;
    margin-bottom: 0.35rem;
}

.article__lead {
    font-size: 0.85rem;
    color: #54595d;
    font-style: italic;
    margin-bottom: 0.85rem;
}

.article__tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid transparent;
    margin-top: 0.5rem;
}

.article-tab {
    background: transparent;
    border: 1px solid transparent;
    border-bottom: none;
    padding: 0.45rem 0.95rem;
    font-family: inherit;
    font-size: 0.85rem;
    color: #3366cc;
    cursor: pointer;
    border-radius: 2px 2px 0 0;
    transition: background 0.15s, color 0.15s;
    margin-right: 2px;
}

.article-tab:hover {
    background: #f8f9fa;
}

.article-tab.is-active {
    background: #ffffff;
    border-color: #a2a9b1;
    color: #202122;
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin-bottom: -1px;
}

.tab-badge {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.7rem;
    color: #54595d;
    margin-left: 0.3rem;
}

/* ================== Infobox ================== */
.infobox {
    float: right;
    width: 280px;
    margin: 0 0 1rem 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #a2a9b1;
    font-size: 0.82rem;
    line-height: 1.55;
}

.infobox__title {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #a2a9b1;
    margin-bottom: 0.4rem;
    color: #202122;
}

.infobox__subtitle {
    text-align: center;
    font-size: 0.78rem;
    color: #54595d;
    font-style: italic;
    margin-bottom: 0.65rem;
}

.infobox__figure {
    margin-bottom: 0.65rem;
    border: 1px solid #a2a9b1;
    background: #ffffff;
}

.infobox__figure svg {
    display: block;
    width: 100%;
    height: auto;
}

.infobox__caption {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.7rem;
    color: #54595d;
    background: #f8f9fa;
    border-top: 1px solid #a2a9b1;
    padding: 0.3rem 0.5rem;
    text-align: center;
    line-height: 1.4;
}

.infobox__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
}

.infobox__table th,
.infobox__table td {
    padding: 0.32rem 0.4rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #a2a9b1;
}

.infobox__table tr:last-child th,
.infobox__table tr:last-child td {
    border-bottom: none;
}

.infobox__table th {
    font-weight: 600;
    color: #54595d;
    width: 42%;
    background: transparent;
}

.infobox__table td {
    color: #202122;
}

.infobox__table code {
    font-size: 0.72rem;
    padding: 0 0.25rem;
}

/* ================== Article body ================== */
.article__intro p {
    margin-bottom: 1rem;
}

.article__intro strong {
    font-weight: 600;
}

.toc {
    clear: right;
    background: #f8f9fa;
    border: 1px solid #a2a9b1;
    padding: 1rem 1.25rem;
    margin: 2rem 0;
    max-width: 460px;
}

.toc__title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #202122;
    margin-bottom: 0.55rem;
    border-bottom: 1px solid #a2a9b1;
    padding-bottom: 0.35rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.toc__toggle {
    background: transparent;
    border: none;
    color: #3366cc;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    cursor: pointer;
    padding: 0;
}

.toc__toggle:hover {
    text-decoration: underline;
}

.toc__list,
.toc__list ol {
    list-style: none;
    padding-left: 0;
    counter-reset: none;
    font-size: 0.88rem;
}

.toc__list ol {
    margin-left: 1.25rem;
    margin-top: 0.15rem;
    border-left: 1px dotted #a2a9b1;
    padding-left: 0.75rem;
}

.toc__list li {
    padding: 0.12rem 0;
}

.toc__list a {
    color: #3366cc;
}

.toc.is-collapsed .toc__list {
    display: none;
}

.article__section {
    margin: 2rem 0;
}

.article__section h2 {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: #202122;
    border-bottom: 1px solid #a2a9b1;
    padding-bottom: 0.35rem;
    margin-bottom: 0.85rem;
    letter-spacing: -0.005em;
}

.article__section h3 {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #202122;
    margin: 1.4rem 0 0.55rem;
}

.article__section p {
    margin-bottom: 0.9rem;
}

.article__section em {
    color: #202122;
}

/* ================== Callout (Contradiction) ================== */
.callout {
    background: #fee7e6;
    border-left: 3px solid #cc3333;
    padding: 0.75rem 1rem;
    margin: 1.5rem 0;
}

.callout__label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #cc3333;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.callout__text {
    color: #202122;
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* ================== Data table ================== */
.figure {
    margin: 1.4rem 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    background: #ffffff;
    border: 1px solid #a2a9b1;
}

.data-table caption {
    text-align: left;
    font-size: 0.78rem;
    color: #54595d;
    padding: 0.35rem 0.6rem;
    background: #f8f9fa;
    border-bottom: 1px solid #a2a9b1;
    font-style: italic;
}

.data-table th,
.data-table td {
    padding: 0.5rem 0.7rem;
    border-bottom: 1px solid #a2a9b1;
    text-align: left;
    vertical-align: top;
}

.data-table thead th {
    background: #f8f9fa;
    font-weight: 600;
    font-size: 0.8rem;
    color: #54595d;
    border-bottom: 1px solid #a2a9b1;
}

.data-table tbody tr:last-child th,
.data-table tbody tr:last-child td {
    border-bottom: none;
}

.tag {
    display: inline-block;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    padding: 0.05rem 0.45rem;
    border: 1px solid #a2a9b1;
    border-radius: 2px;
    background: #f8f9fa;
    color: #54595d;
}

.tag--bad {
    background: #fee7e6;
    border-color: #cc3333;
    color: #cc3333;
}

.tag--warn {
    background: #f8f9fa;
    border-color: #a2a9b1;
    color: #54595d;
}

.tag--ok {
    background: #ffffff;
    border-color: #3366cc;
    color: #3366cc;
}

/* ================== Lists ================== */
.proposal-list {
    list-style: none;
    border-top: 1px solid #a2a9b1;
}

.proposal-list li {
    display: grid;
    grid-template-columns: 200px 90px 1fr;
    gap: 0.75rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 0.88rem;
    align-items: baseline;
}

.proposal-list__name {
    font-weight: 600;
    color: #202122;
}

.proposal-list__year {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    color: #54595d;
}

.proposal-list__desc {
    color: #202122;
}

.related-list {
    list-style: none;
    columns: 2;
    column-gap: 1.5rem;
    font-size: 0.88rem;
}

.related-list li {
    padding: 0.3rem 0;
    border-bottom: 1px solid #f8f9fa;
    break-inside: avoid;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
}

.related-list__meta {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    color: #54595d;
}

.further-list {
    list-style: none;
    font-size: 0.88rem;
}

.further-list li {
    padding: 0.3rem 0 0.3rem 1.25rem;
    text-indent: -1.25rem;
    border-bottom: 1px solid #f8f9fa;
}

.further-list li:before {
    content: "·";
    color: #54595d;
    margin-right: 0.55rem;
}

/* ================== References / footnotes ================== */
.ref a {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.7rem;
    color: #3366cc;
    text-decoration: none;
}

.ref a:hover {
    text-decoration: underline;
}

.footnotes {
    list-style: none;
    border-top: 1px solid #a2a9b1;
    margin-top: 0.5rem;
    padding-top: 0.6rem;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    color: #202122;
    counter-reset: footnotes;
}

.footnotes li {
    padding: 0.3rem 0;
    line-height: 1.6;
}

.fn-num {
    color: #54595d;
    font-weight: 500;
    margin-right: 0.35rem;
}

.footnotes em {
    font-style: italic;
}

/* ================== Article footer ================== */
.article__footer {
    border-top: 1px solid #a2a9b1;
    margin-top: 2.5rem;
    padding-top: 1rem;
    font-size: 0.82rem;
    color: #54595d;
}

.article__edited {
    margin-bottom: 0.5rem;
}

.article__cite {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.74rem;
    background: #f8f9fa;
    border: 1px solid #a2a9b1;
    padding: 0.5rem 0.7rem;
    margin: 0.7rem 0;
    color: #202122;
}

.article__cite-label {
    color: #54595d;
    font-weight: 500;
    margin-right: 0.4rem;
}

.article__cite code {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.74rem;
}

.article__actions {
    list-style: none;
    display: flex;
    gap: 1rem;
    border-top: 1px solid #f8f9fa;
    padding-top: 0.55rem;
    flex-wrap: wrap;
}

.article__actions a {
    color: #3366cc;
    font-size: 0.82rem;
}

/* ================== Right rail ================== */
.rail {
    position: sticky;
    top: 88px;
    align-self: start;
    height: calc(100vh - 88px);
    overflow-y: auto;
    padding: 1.75rem 1.25rem;
    border-left: 1px solid #f8f9fa;
}

.rail__section {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f8f9fa;
}

.rail__section:last-child {
    border-bottom: none;
}

.rail__title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #54595d;
    margin-bottom: 0.65rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #a2a9b1;
}

.rail__list {
    list-style: none;
    padding-left: 0.25rem;
    font-size: 0.83rem;
    counter-reset: rail-toc;
}

.rail__list li {
    padding: 0.18rem 0;
    line-height: 1.4;
    border-left: 2px solid transparent;
    padding-left: 0.55rem;
    transition: border-color 0.15s, background 0.15s;
}

.rail__list li.is-current {
    border-left-color: #cc3333;
    background: #fee7e6;
}

.rail__list a {
    color: #3366cc;
}

.rail__list li.is-current a {
    color: #202122;
    font-weight: 600;
}

.rail__list .rail-sub {
    font-size: 0.78rem;
    padding-left: 1rem;
    color: #54595d;
}

.rail__stats {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.25rem 0.75rem;
    font-size: 0.82rem;
    font-family: "IBM Plex Mono", monospace;
}

.rail__stats dt {
    color: #54595d;
}

.rail__stats dd {
    color: #202122;
    text-align: right;
    font-weight: 500;
}

.rail__lang {
    list-style: none;
    font-size: 0.85rem;
    columns: 2;
    column-gap: 0.5rem;
}

.rail__lang li {
    padding: 0.12rem 0;
}

/* ================== Footer ================== */
.site-footer {
    border-top: 1px solid #a2a9b1;
    background: #f8f9fa;
    margin-top: 3rem;
}

.site-footer__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
}

.site-footer__brand {
    font-weight: 600;
    color: #202122;
    font-size: 0.88rem;
}

.site-footer__links {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    font-size: 0.84rem;
}

.site-footer__legal {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    color: #54595d;
    text-align: right;
    line-height: 1.6;
    grid-column: 1 / -1;
    border-top: 1px solid #a2a9b1;
    padding-top: 1rem;
    text-align: center;
}

.site-footer__rev {
    margin-left: 0.5rem;
    color: #54595d;
}

.site-footer__rev code {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.72rem;
    color: #cc3333;
}

/* ================== Highlight on hash navigation ================== */
.article__section.is-flash {
    animation: sectionFlash 1.2s ease-out;
}

@keyframes sectionFlash {
    0% { background: #fee7e6; }
    100% { background: transparent; }
}

/* ================== Responsive ================== */
@media (max-width: 1180px) {
    .layout {
        grid-template-columns: 240px minmax(0, 1fr);
    }
    .rail {
        display: none;
    }
}

@media (max-width: 880px) {
    .site-header__inner {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .site-nav {
        flex-wrap: wrap;
        gap: 0.85rem;
    }
    .site-search {
        width: 100%;
    }
    .layout {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
        height: auto;
        max-height: 320px;
        border-right: none;
        border-bottom: 1px solid #a2a9b1;
    }
    .infobox {
        float: none;
        width: 100%;
        margin: 1rem 0;
    }
    .content {
        padding: 1.25rem;
    }
    .related-list,
    .rail__lang {
        columns: 1;
    }
    .proposal-list li {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }
    .site-footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .site-footer__links {
        flex-wrap: wrap;
    }
}
