/* ============================================
   Fonts
   ============================================ */
@font-face {
    font-family: 'Chinese Rock';
    src: url('../assets/fonts/chinese-rock.woff2') format('woff2'),
         url('../assets/fonts/chinese-rock.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   Design tokens
   ============================================ */
:root {
    --bg:           #0d0a08;
    --bg-elev:      #15100c;
    --border:       #2a211a;
    --text:         #e8dcc0;
    --text-muted:   #a89a7a;
    --accent:       #c8201e;
    --accent-warm:  #d97c2a;

    --content-max:  72rem;
    --gutter:       clamp(1rem, 4vw, 2rem);

    --serif:  'Chinese Rock', Georgia, 'Times New Roman', serif;
    --sans:   system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ============================================
   Reset CSS
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

ul,
ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text);
}

/* ============================================
   Layout — Header
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(13, 10, 8, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0.875rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-header__logo img {
    height: 32px;
    width: auto;
}

@media (min-width: 768px) {
    .site-header__logo img {
        height: 40px;
    }
}

.site-header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.site-header__menu {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}
.site-header__link {
    font-family: var(--serif);
    letter-spacing: 0.08em;
    font-size: 1.05rem;
    text-transform: uppercase;
    color: var(--text);
}
.site-header__link:hover {
    color: var(--accent-warm);
    opacity: 1;
}
.site-header__link.is-active {
    color: var(--accent-warm);
}

@media (max-width: 560px) {
    .site-header__nav { gap: 0.5rem 0.85rem; }
    .site-header__menu { gap: 0.8rem; }
    .site-header__link { font-size: 0.9rem; letter-spacing: 0.04em; }
    .site-header__lang { font-size: 0.8rem; padding: 0.2rem 0.45rem; }
}

.site-header__lang {
    font-family: var(--serif);
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    padding: 0.25rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--text);
}

.lang-switch {
    display: flex;
    gap: 0.4rem;
}
.site-header__lang.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ============================================
   Showcase — shared background behind hero + news
   (image fades through a long gradient to solid black
   by the bottom of the Latest news section)
   ============================================ */
.showcase {
    position: relative;
    z-index: 0;
    isolation: isolate;
}
.showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../assets/fond-site.jpeg');
    background-size: cover;
    background-position: center 22%;
    background-repeat: no-repeat;
    z-index: -2;
}
.showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 10, 8, 0.55) 0%,
        rgba(13, 10, 8, 0.32) 26%,
        rgba(13, 10, 8, 0.50) 56%,
        rgba(13, 10, 8, 0.92) 90%,
        rgba(13, 10, 8, 1) 100%
    );
    z-index: -1;
}

/* ============================================
   Layout — Hero
   ============================================ */
.hero {
    position: relative;
    overflow: hidden;
    background: transparent;
    min-height: calc(100vh - 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem var(--gutter) 4rem;
    text-align: center;
}

.hero__visual {
    position: absolute;
    inset: 0;
    background-image: url('../assets/fond-site.jpeg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    opacity: 0.55;
    z-index: 0;
}

.hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 10, 8, 0.55) 0%,
        rgba(13, 10, 8, 0.25) 40%,
        rgba(13, 10, 8, 0.85) 100%
    );
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 50rem;
    margin: 0 auto;
}

.hero__eyebrow {
    font-family: var(--serif);
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    color: var(--accent-warm);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: clamp(2.75rem, 9vw, 6.5rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.hero__lede {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    color: var(--text-muted);
    max-width: 38rem;
    margin: 0 auto;
    line-height: 1.6;
}

.hero__scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
    z-index: 1;
}

/* ============================================
   Sections — generic content
   ============================================ */
.section {
    padding: 4rem var(--gutter);
}

.section__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.section__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
}

.section__lede {
    color: var(--text-muted);
    max-width: 40rem;
    margin-bottom: 2.5rem;
}

/* ============================================
   Pillars (site sections — News + Characters)
   ============================================ */
.pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.pillar {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.pillar:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.pillar__index {
    font-family: var(--serif);
    color: var(--accent);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.pillar__title {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.pillar__text {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

.pillar__link {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--accent-warm);
}

.pillar__link:hover {
    color: var(--accent);
    opacity: 1;
}

.pillar__link--disabled {
    color: var(--text-muted);
    pointer-events: none;
    cursor: default;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
}

/* ============================================
   Article cards (latest-news feed + article index)
   ============================================ */
.section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.section__head .section__title {
    margin-bottom: 0;
}
.section__more {
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--accent-warm);
    white-space: nowrap;
}
.section__more:hover {
    color: var(--accent);
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.acard {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e4dbcb;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.acard:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    transform: translateY(-3px);
}
.acard__thumb {
    display: block;
    background: #e8e2d6;
}
.acard__thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.acard__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.1rem 1.35rem 1.35rem;
}
.acard__meta {
    font-size: 0.78rem;
    color: #8a7a61;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.acard__title {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
    color: #1b1610;
}
.acard__title a {
    color: inherit;
}
.acard__title a:hover {
    color: var(--accent);
    opacity: 1;
}
.acard__text {
    color: #5e5444;
    font-size: 0.9rem;
    flex-grow: 1;
}
.acard__link {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--serif);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: var(--accent);
}
.acard__link:hover {
    color: #9c1715;
    opacity: 1;
}

/* Character cards (poster style, distinct from article .acard) */
.ccard {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #17120d;
    color: #fff;
}
.ccard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    transition: transform 0.35s ease;
}
.ccard:hover img {
    transform: scale(1.04);
}
.ccard__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(13, 10, 8, 0) 35%, rgba(13, 10, 8, 0.55) 62%, rgba(13, 10, 8, 0.93) 100%);
}
.ccard__tag {
    font-family: var(--serif);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-warm);
}
.ccard__name {
    font-family: var(--serif);
    font-size: 1.7rem;
    line-height: 1;
    margin-top: 0.35rem;
    color: #fff;
}
.ccard__role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 0.5rem;
}
.ccard__cta {
    font-family: var(--serif);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: var(--accent-warm);
    margin-top: 0.8rem;
}
.ccard:hover .ccard__cta {
    color: #fff;
}

/* "More articles" / "More characters" suggestions at the bottom of a page */
.related {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.related__title {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin-bottom: 1.5rem;
}
.related__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.related__head .related__title {
    margin-bottom: 0;
}
.related__all {
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--accent-warm);
    white-space: nowrap;
}
.related__all:hover {
    color: var(--accent);
}

/* ============================================
   Article page
   ============================================ */
.article {
    max-width: 44rem;
    margin: 0 auto;
    padding: 2.5rem var(--gutter) 4rem;
}

.article-eyebrow {
    font-family: var(--serif);
    color: var(--accent-warm);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.article-title {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    line-height: 1.02;
    margin-bottom: 1.5rem;
}

.article-lede {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border);
}

.article-meta time,
.article-meta span {
    display: inline-block;
}

.article-meta > * + *::before {
    content: " · ";
    margin: 0 0.4em;
    color: var(--border);
}

.article-hero {
    margin: 2.5rem calc(-1 * var(--gutter));
    overflow: hidden;
    border-radius: 4px;
}

@media (min-width: 768px) {
    .article-hero {
        margin-left: -2rem;
        margin-right: -2rem;
    }
}

.article-hero img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 35%;
}

.article-hero figcaption {
    padding: 0.75rem var(--gutter);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
}

.article-body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text);
}

.article-body > * + * {
    margin-top: 1.5rem;
}

.article-body h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.125rem);
    margin-top: 3rem;
}

.article-body h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-top: 2rem;
}

.article-body strong {
    color: var(--text);
    font-weight: 600;
}

.article-body em {
    font-style: italic;
}

.article-body a {
    color: var(--accent-warm);
    border-bottom: 1px solid currentColor;
}

.article-body a:hover {
    color: var(--accent);
    opacity: 1;
}

.article-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 0.25rem 0 0.25rem 1.25rem;
    font-style: italic;
    color: var(--text-muted);
}

.article-body ul,
.article-body ol {
    padding-left: 1.5rem;
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.article-body li + li {
    margin-top: 0.5rem;
}

.article-body li::marker {
    color: var(--accent-warm);
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.article-tags li { margin: 0; }

.article-tags a {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.article-tags a:hover {
    border-color: var(--accent);
    color: var(--text);
    opacity: 1;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    padding: 2.5rem var(--gutter) 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg-elev);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.site-footer p + p {
    margin-top: 0.5rem;
}

.site-footer a {
    color: var(--text);
}

/* ============================================
   Character wiki pages (infobox + accordions)
   ============================================ */
.profile {
    max-width: 60rem;
    margin: 0 auto;
    padding-bottom: 4rem;
}
.profile__cover {
    position: relative;
    aspect-ratio: 16 / 5;
    background: #17120d;
    overflow: hidden;
}
.profile__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
.profile__inner {
    padding: 0 var(--gutter);
}
.profile__head {
    display: flex;
    align-items: flex-end;
    gap: 1.25rem;
    margin-top: -3.5rem;
    position: relative;
    z-index: 1;
}
.profile__avatar {
    width: 7.5rem;
    height: 7.5rem;
    flex-shrink: 0;
    border-radius: 14px;
    border: 4px solid var(--bg-elev);
    object-fit: cover;
    object-position: center 22%;
    background: #17120d;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}
.profile__id {
    padding-bottom: 0.4rem;
    min-width: 0;
}
.profile__eyebrow {
    font-family: var(--serif);
    color: var(--accent-warm);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 0.35rem;
}
.profile__name {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1;
}
.profile__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.1rem;
}
.chip {
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg-elev);
    color: var(--text-muted);
}
.chip strong {
    color: var(--text);
    font-weight: 600;
}
.profile__byline {
    margin-top: 0.85rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.profile__byline span {
    color: var(--text);
}
.profile__intro {
    margin-top: 1.4rem;
    font-size: 1.125rem;
    line-height: 1.7;
}
.profile__intro p + p {
    margin-top: 0.9rem;
}
.profile__facts {
    margin-top: 1.5rem;
    padding: 1.1rem 1.4rem;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
    gap: 0.9rem 1.5rem;
}
.profile__facts > div {
    min-width: 0;
}
.profile__facts dt {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}
.profile__facts dd {
    margin: 0.15rem 0 0;
    font-size: 0.95rem;
}
@media (max-width: 600px) {
    .profile__avatar { width: 5.5rem; height: 5.5rem; }
    .profile__head { margin-top: -2.5rem; }
    .profile__name { font-size: 1.9rem; }
}

/* Accordions (native <details>) */
.accordions {
    clear: both;
    margin-top: 2rem;
}
.accordion {
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-elev);
    margin-top: 1rem;
    overflow: hidden;
}
.accordion > summary {
    cursor: pointer;
    list-style: none;
    padding: 1rem 1.25rem;
    font-family: var(--serif);
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.accordion > summary::-webkit-details-marker {
    display: none;
}
.accordion > summary::after {
    content: "+";
    font-family: var(--sans);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--accent);
    flex-shrink: 0;
}
.accordion[open] > summary::after {
    content: "\2013";
}
.accordion > summary:hover {
    color: var(--accent);
}
.accordion__body {
    padding: 0.25rem 1.25rem 1.4rem;
    font-size: 1.0625rem;
    line-height: 1.75;
}
.accordion__body > * + * {
    margin-top: 0.9rem;
}
.accordion__body h3 {
    font-size: 1.15rem;
    margin-top: 1.6rem;
    color: var(--text);
}
.accordion__body ul {
    padding-left: 1.4rem;
    list-style: disc;
}
.accordion__body li + li {
    margin-top: 0.4rem;
}
.accordion__body a {
    color: #b3471a;
    border-bottom: 1px solid currentColor;
}
.accordion__body a:hover {
    color: var(--accent);
    opacity: 1;
}
.accordion__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}
.accordion__gallery figure {
    margin: 0;
}
.accordion__gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.accordion__gallery figcaption {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

/* Inline media (photo / video) inside accordion bodies */
.media-figure {
    margin: 0 0 1.25rem;
}
.media-figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}
.media-figure figcaption {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
    font-style: italic;
}
.video-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
}
.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Relationships — cast list with optional portrait thumbnail */
.rel {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}
.rel + .rel {
    margin-top: 1.6rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--border);
}
.rel__img {
    width: 5.5rem;
    height: 5.5rem;
    flex-shrink: 0;
    border-radius: 8px;
    object-fit: cover;
    object-position: 22% 28%;
    border: 1px solid var(--border);
}
.rel__body {
    min-width: 0;
}
.rel__body h3 {
    margin-top: 0;
}
.rel__body h3 a {
    color: var(--accent);
    text-decoration: none;
}
.rel__body h3 a:hover {
    color: #9c1715;
    text-decoration: none;
    opacity: 1;
}
.rel__body p {
    margin-top: 0.4rem;
}
@media (max-width: 480px) {
    .rel__img { width: 4rem; height: 4rem; }
}

/* ============================================
   Light "media" theme — article pages & indexes
   Applied via <body class="theme-light">. Scoped to <main> so the
   dark sticky masthead and footer (and the light logo) stay readable.
   All article/index components use CSS vars, so overriding the vars
   on main is enough to flip the whole reading area to light.
   ============================================ */
.theme-light {
    background: #ece6da;
}
.theme-light main {
    --bg:         #ece6da;
    --bg-elev:    #ffffff;
    --border:     #ddd3c0;
    --text:       #211a12;
    --text-muted: #6d6051;
    background: var(--bg);
    color: var(--text);
}
.theme-light main .article-body a {
    color: #b3471a;
}
.theme-light main .article-body a:hover {
    color: var(--accent);
}
