/* ==========================================================================
   base.css: Layout-Mechanik, Barrierefreiheit, Komponenten-Struktur.
   Farben, Schriften und Stimmung kommen aus theme-a.css bzw. theme-b.css.
   Die Fallback-Tokens hier greifen nur, wenn kein Theme geladen ist.
   ========================================================================== */

:root {
    --bg: #F4F3EF;
    --bg-alt: #ECEAE4;
    --fg: #14213D;
    --fg-muted: #5C6674;
    --line: rgba(20, 33, 61, 0.14);
    --accent: #D8782C;
    --accent-fg: #14213D;
    --stage-bg: #0B1220;
    --stage-fg: #F2F0EA;
    --stage-muted: #8FB0CC;
    --focus: #D8782C;
    --font-display: Georgia, "Times New Roman", serif;
    --font-body: system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-mono: Consolas, "Courier New", monospace;
    /* Layout */
    --wrap: 1280px;                          /* maximale Inhaltsbreite */
    --gutter: clamp(20px, 4vw, 64px);        /* Seitenrand links/rechts */
    --header-h: 64px;
    --measure: 36em;                         /* maximale Zeilenlänge für Fließtext */
    --space-section: clamp(72px, 10vw, 128px); /* Abstand oben/unten je Sektion */
    --space-posts: clamp(64px, 8vw, 112px);  /* Abstand zwischen Beiträgen und nach dem Player */

    /* Ecken: --radius für Bilder, Karten, Player, Facades; Pill für Buttons; Round für runde Knöpfe */
    --radius-none: 0;
    --radius: 4px;
    --radius-pill: 999px;
    --radius-round: 50%;

    /* Rahmen um Bilder und Player-Cover; das Hero-Portrait hat seinen eigenen Wert */
    --media-border: 1px solid rgba(20, 33, 61, 1);
    --hero-border: 0;

    /* Schriftgrößen (die Themes überschreiben sie) */
    --fs-body: 1.0625rem;
    --fs-lead: 1.25rem;
    --fs-hero: clamp(3.4rem, 9vw, 8rem);
    --fs-section: clamp(2.6rem, 6vw, 5.5rem);
    --fs-post-title: clamp(1.75rem, 3vw, 2.75rem);

    /* Bildformat des Portraits im Hero */
    --ratio-portrait: 5 / 6;

    --shadow: 0 24px 48px rgba(16, 26, 46, 0.18);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --duration: 700ms;                       /* Scroll-Reveal */
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-padding-top: calc(var(--header-h) + 16px);
    -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 400; line-height: 1.1; text-wrap: balance; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; }
[hidden] { display: none !important; }

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: 8px; left: 8px;
    z-index: 1000;
    padding: 12px 18px;
    background: var(--fg);
    color: var(--bg);
    text-decoration: none;
    transform: translateY(-200%);
}
.skip-link:focus { transform: none; }

/* --------------------------------------------------------------------------
   Header und Navigation
   -------------------------------------------------------------------------- */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--header-h);
}

.site-header__inner {
    height: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
    margin-right: auto;
}

.site-header__logo { width: 44px; height: 44px; flex-shrink: 0; }

/* LinkedIn in der Kopfzeile: mittig zwischen Namen und Navigation */
.site-header__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    text-decoration: none;
}
.site-header__social svg { display: block; }

.site-header__name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lang-switch { display: inline-flex; align-items: center; order: 2; flex-shrink: 0; }

.lang-switch__btn {
    min-width: 44px;
    min-height: 44px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    order: 3;
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle__bar {
    display: block;
    width: 22px; height: 2px;
    background: currentColor;
    transition: transform 250ms var(--ease), opacity 250ms var(--ease);
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    order: 1;
    padding: 12px var(--gutter) 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 250ms var(--ease), transform 250ms var(--ease), visibility 250ms;
}
.site-nav.is-open { opacity: 1; visibility: visible; transform: none; }

.site-nav__list { display: flex; flex-direction: column; }

.site-nav__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    text-decoration: none;
}

@media (max-width: 420px) {
    .site-header__name { display: none; }
}

@media (min-width: 900px) {
    .site-header__brand { margin-right: 0; }
    .site-header__social { margin-inline: auto; }
    /* Der freie Platz gehört dann den beiden Außenrändern des Symbols */
    .site-header__social ~ .site-nav { margin-left: 0; }
    .menu-toggle { display: none; }
    .site-nav {
        position: static;
        order: 1;
        margin-left: auto;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }
    .site-nav__list { flex-direction: row; gap: 4px; }
    .site-nav__link { min-height: 44px; padding: 0 14px; }
    .lang-switch { margin-left: 12px; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--header-h) + 8px);
}

.hero__inner {
    position: relative;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 24px var(--gutter) 64px;
    display: grid;
    gap: 32px;
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    z-index: 1;
}

.hero__title { font-family: var(--font-display); font-size: var(--fs-hero); }
.hero__title em { font-style: italic; }
.hero__first, .hero__last { display: block; }

.hero__intro { max-width: var(--measure); font-size: var(--fs-lead); }
.hero__intro p + p { margin-top: 0.75em; }

.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; }

.hero__portrait { position: relative; z-index: 1; }
.hero__portrait img { width: 100%; aspect-ratio: var(--ratio-portrait); object-fit: cover; object-position: 50% 20%; border-radius: var(--radius); border: var(--hero-border); }
.hero__caption { margin-top: 12px; font-size: 0.8125rem; color: var(--fg-muted); }

.hero__work { display: none; }
.hero__watermark { position: absolute; opacity: 0; pointer-events: none; }

@media (min-width: 900px) {
    .hero__inner {
        grid-template-columns: 7fr 5fr;
        align-items: center;
        column-gap: 64px;
        padding-top: 72px;
        padding-bottom: 96px;
    }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 22px;
    text-decoration: none;
    transition: background-color 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}
.button--link { padding: 0; min-height: 44px; }

/* --------------------------------------------------------------------------
   Sektionen
   -------------------------------------------------------------------------- */

.section { position: relative; padding: var(--space-section) 0; }

.section__inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section__head {
    display: grid;
    gap: 18px;
    margin-bottom: 48px;
}

.section__title { font-family: var(--font-display); font-size: var(--fs-section); }
.section__intro { max-width: var(--measure); }
.section__intro p + p { margin-top: 0.75em; }

.section__empty { color: var(--fg-muted); }

@media (min-width: 900px) {
    .section__head {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        column-gap: 32px;
        align-items: end;
        margin-bottom: 80px;
    }
    .section__label { grid-column: 1 / span 5; grid-row: 1; }
    .section__title { grid-column: 1 / span 6; grid-row: 2; }
    .brush--section  { grid-column: 1 / span 3; grid-row: 3; }
    .section__intro  { grid-column: 8 / span 5; grid-row: 2 / span 2; align-self: end; }
}

/* Pinselmarken */
.brush { width: 160px; height: auto; }
.brush__main { stroke: currentColor; stroke-width: 3.5; stroke-linecap: round; }
.brush__thin { stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; opacity: 0.6; }

/* --------------------------------------------------------------------------
   Beiträge
   -------------------------------------------------------------------------- */

.posts { display: flex; flex-direction: column; gap: var(--space-posts); }
/* In der Musik stehen die Beiträge oben, die Alben darunter */
.posts + .players { margin-top: var(--space-posts); }
.players + .posts { margin-top: var(--space-posts); }

.post { display: grid; gap: 20px; }

.post__media img,
.post__image { width: 100%; border-radius: var(--radius); border: var(--media-border); }

.post__body { display: flex; flex-direction: column; gap: 14px; }

/* Querformat: Bild und Text mittig. Die versetzte Variante steht weiter unten.
   Das Bild wird über die Rasterspalten zentriert, nicht über automatische Außenränder,
   sonst schrumpft die Figur auf die Bildbreite, solange das Bild noch nicht geladen ist. */
.post--landscape .post__body { text-align: center; align-items: center; }
.post__title { font-family: var(--font-display); font-size: var(--fs-post-title); }
.post__text p + p { margin-top: 0.75em; }
.post__text ul, .post__text ol { padding-left: 1.4em; margin: 0.5em 0; }
.post__text ul { list-style: disc; }
.post__text ol { list-style: decimal; }

@media (min-width: 900px) {
    .post {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        column-gap: 32px;
        align-items: start;
    }
    .post--landscape .post__media { grid-column: 2 / span 10; }
    .post--landscape .post__body  { grid-column: 3 / span 8; }

    .post--landscape-left .post__media { grid-column: 3 / -1; }
    .post--landscape-left .post__body  { grid-column: 1 / span 5; }

    .post--portrait .post__media { grid-column: 1 / span 5; }
    .post--portrait .post__body  { grid-column: 7 / span 5; padding-top: 40px; }

    .post--portrait-left .post__media { grid-column: 8 / span 5; grid-row: 1; }
    .post--portrait-left .post__body  { grid-column: 1 / span 6; grid-row: 1; padding-top: 40px; }

    .post--text .post__body { grid-column: 3 / span 8; }

}

/* --------------------------------------------------------------------------
   YouTube-Facade (Zwei-Klick)
   -------------------------------------------------------------------------- */

.video-facade {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    border: var(--media-border);
    background: var(--stage-bg);
    color: var(--stage-fg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.video-facade__thumb {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.55;
}
.video-facade__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 24px;
    background: var(--accent);
    color: var(--accent-fg);
}
.video-facade__note {
    position: absolute;
    left: 16px; right: 16px; bottom: 12px;
    font-size: 0.8125rem;
    text-align: center;
    opacity: 0.85;
}
.video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------------------------------
   Musik-Player
   -------------------------------------------------------------------------- */

.players { display: flex; flex-direction: column; gap: 40px; }

.player {
    display: grid;
    gap: 28px;
}

.player__cover img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); border: var(--media-border); }

.player__info { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.player__title { font-family: var(--font-display); }
.player__credits { font-size: 0.875rem; color: var(--fg-muted); }

.player__controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.player__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: var(--radius-round);
    transition: background-color 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}
.player__btn--play { width: 60px; height: 60px; }

.player__progress-wrap {
    flex: 1 1 220px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.player__time {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-variant-numeric: tabular-nums;
    min-width: 3.2em;
}
.player__time--total { text-align: right; }

.player__progress {
    flex: 1;
    position: relative;
    height: 24px;
    cursor: pointer;
}
.player__progress::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 11px;
    height: 2px;
    background: var(--line);
}
.player__progress-fill {
    position: absolute;
    left: 0; top: 11px;
    height: 2px;
    width: 0%;
    background: var(--accent);
}
.player__progress-knob {
    position: absolute;
    top: 6px; left: 0;
    width: 12px; height: 12px;
    border-radius: var(--radius-round);
    background: var(--accent);
    transform: translateX(-6px);
}

.player__volume-wrap { display: flex; align-items: center; gap: 8px; }

.player__volume {
    width: 96px;
    height: 24px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}
.player__volume::-webkit-slider-runnable-track { height: 2px; background: var(--line); }
.player__volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px; height: 14px;
    margin-top: -6px;
    border-radius: var(--radius-round);
    background: var(--accent);
}
.player__volume::-moz-range-track { height: 2px; background: var(--line); }
.player__volume::-moz-range-thumb { width: 14px; height: 14px; border: 0; border-radius: var(--radius-round); background: var(--accent); }

.player__tracks { display: grid; }

.player__track-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 48px;
    padding: 0 8px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 0.875rem;
}
.player__track-num { min-width: 2.2em; color: var(--fg-muted); font-variant-numeric: tabular-nums; }
.player__track-name { flex: 1; min-width: 0; }
.player__track-dur { color: var(--fg-muted); font-variant-numeric: tabular-nums; }

.player__track-btn[aria-current="true"] { color: var(--accent); }
.player__track-btn[aria-current="true"] .player__track-num { color: var(--accent); }
.player__track-btn[aria-current="true"]::after {
    content: "";
    width: 0; height: 0;
    border-left: 8px solid currentColor;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.player__track-btn.is-playing[aria-current="true"]::after {
    width: 8px; height: 10px;
    border: 0;
    border-left: 3px solid currentColor;
    border-right: 3px solid currentColor;
}

@media (min-width: 720px) {
    .player__tracks { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 40px; }
}

@media (min-width: 900px) {
    .player {
        grid-template-columns: 340px minmax(0, 1fr);
        column-gap: 56px;
    }
    .player__tracks { grid-column: 1 / -1; }
    .player--compact { grid-template-columns: 200px minmax(0, 1fr); }
}

/* Mini-Player */
.mini-player {
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 8px 8px 8px;
    background: var(--stage-bg);
    color: var(--stage-fg);
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.mini-player__cover { width: 48px; height: 48px; object-fit: cover; flex-shrink: 0; border-radius: var(--radius); }
.mini-player__text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.mini-player__title {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mini-player__bar { height: 2px; background: rgba(255, 255, 255, 0.2); position: relative; }
.mini-player__fill { position: absolute; left: 0; top: 0; height: 2px; width: 0%; background: var(--accent); }
.mini-player__play { width: 44px; height: 44px; }

@media (min-width: 720px) {
    .mini-player { left: auto; width: 360px; right: 24px; bottom: 24px; }
}

/* --------------------------------------------------------------------------
   Footer und Scroll-Top
   -------------------------------------------------------------------------- */

.site-footer { padding: 64px 0 120px; }

.site-footer__inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 0.9375rem;
}

.site-footer__links { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.site-footer__links a { display: inline-flex; align-items: center; min-height: 44px; }

.scroll-top {
    position: fixed;
    right: 20px; bottom: 20px;
    z-index: 80;
    width: 48px; height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 250ms var(--ease), transform 250ms var(--ease), visibility 250ms;
}
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: none; }
body.has-mini-player .scroll-top { bottom: 92px; }
@media (min-width: 720px) {
    body.has-mini-player .scroll-top { bottom: 104px; right: 24px; }
}

/* --------------------------------------------------------------------------
   Scroll-Reveal (nur mit JS und ohne Reduced Motion; Ruhezustand ist sichtbar)
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
    html.js-reveal .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
    }
    html.js-reveal .reveal.is-visible { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Unterseiten (Impressum, Datenschutz)
   -------------------------------------------------------------------------- */

.site-nav--static {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    margin-left: auto;
    transition: none;
}

.legal { padding: calc(var(--header-h) + 48px) 0 96px; }

.legal__inner {
    max-width: 44rem;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.legal__head { display: flex; flex-direction: column; gap: 10px; }
.legal__title { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1; }
.legal__subtitle { color: var(--fg-muted); font-size: 0.9375rem; }

.legal__section { display: flex; flex-direction: column; gap: 12px; }
.legal__section h2 { font-family: var(--font-display); font-size: 1.5rem; margin-top: 8px; }
.legal__section h3 { font-size: 1rem; font-weight: 700; margin-top: 8px; }
.legal__section ul { padding-left: 1.3em; list-style: disc; display: flex; flex-direction: column; gap: 6px; }
.legal__section a { text-decoration: underline; text-underline-offset: 0.2em; overflow-wrap: anywhere; }

/* --------------------------------------------------------------------------
   Spotify (Link am Album, Playlist-Facade)
   -------------------------------------------------------------------------- */

.player__spotify {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    align-self: flex-start;
    text-decoration: none;
    font-size: 0.875rem;
}

.spotify { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }

.embed-facade {
    position: relative;
    min-height: 152px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px 16px 40px;
    background: var(--stage-bg);
    color: var(--stage-fg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.embed-facade.is-loaded { padding: 0; background: transparent; border: 0; min-height: 0; gap: 8px; align-items: stretch; }
.embed-facade__title { font-size: 0.9375rem; }
.embed-facade iframe { width: 100%; height: 352px; border: 0; border-radius: var(--radius); }
.embed-facade .video-facade__note { position: absolute; }
.embed-facade.is-loaded .video-facade__note { display: none; }

.spotify__artist a { display: inline-flex; align-items: center; min-height: 44px; }

/* Entwurfsvorschau für Admins */
.preview-banner {
    position: sticky;
    top: 0;
    z-index: 200;
    padding: 10px var(--gutter);
    background: #D8782C;
    color: #0B1220;
    font-size: 0.875rem;
}
.preview-banner a { color: inherit; font-weight: 700; margin-left: 12px; }

/* --------------------------------------------------------------------------
   Druck: helle Seite, ohne Player und Bedienelemente
   -------------------------------------------------------------------------- */

@media print {
    :root { --bg: #fff; --fg: #000; --fg-muted: #444; --line: #999; }
    body::before, .site-header, .menu-toggle, .lang-switch, .scroll-top, .mini-player,
    .player__controls, .player__status, .video-facade__btn, .video-facade__note, .embed-facade,
    .hero__actions, .hero__watermark, .brush, .preview-banner, .site-footer__design { display: none !important; }
    body { background: #fff; color: #000; font-size: 11pt; }
    .hero { padding-top: 0; }
    .section, .section--music, .section--film { background: #fff !important; color: #000 !important; padding: 24pt 0; break-inside: avoid; }
    .section--music *, .section--film * { color: #000 !important; }
    .post, .player { break-inside: avoid; }
    .post__media img { box-shadow: none !important; transform: none !important; border: 0 !important; max-height: 60vh; width: auto; max-width: 100%; }
    .hero__portrait img { transform: none !important; box-shadow: none !important; max-width: 40%; }
    .player__tracks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .player__track-btn { border-bottom: 1px solid #ccc; min-height: 0; padding: 4px 0; }
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #444; }
    .i18n-en[hidden] { display: none !important; }
}
