/* Google Fonts are now loaded dynamically via shared.js (only the selected font) */

:root {
  --bg: #f4f1e8;
  --bg-shape-1: #ebe4d3;
  --bg-shape-2: #e7e0ce;
  --frame: rgba(252, 250, 244, 0.88);
  --surface: #faf6ec;
  --surface-soft: #f5efdf;
  --ink: #171613;
  --text: #25221c;
  --muted: #6d685b;
  --line: #ddd5c4;
  --chip: #efe8d7;
  --chip-active: #171613;
  --chip-active-ink: #f2ede0;
  --accent: #968965;
  --font-main: "Avenir Next", "Segoe UI", sans-serif;

      --content-max: 74ch;
      --body-size: 1.04rem;
      --body-leading: 1.66;
      --section-gap: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, var(--bg-shape-1) 0%, transparent 42%),
    radial-gradient(circle at 86% 85%, var(--bg-shape-2) 0%, transparent 40%),
    var(--bg);
  font-family: var(--font-main);
}

body[data-font-family='avenir'] {
  --font-main: "Avenir Next", "Segoe UI", sans-serif;
}

body[data-font-family='inter'] {
  --font-main: Inter, "Segoe UI", sans-serif;
}

body[data-font-family='manrope'] {
  --font-main: Manrope, "Segoe UI", sans-serif;
}

body[data-font-family='worksans'] {
  --font-main: "Work Sans", "Segoe UI", sans-serif;
}

body[data-font-family='source3'] {
  --font-main: "Source Sans 3", "Segoe UI", sans-serif;
}

body[data-font-family='ibmplex'] {
  --font-main: "IBM Plex Sans", "Segoe UI", sans-serif;
}

body[data-font-family='montserrat'] {
  --font-main: Montserrat, "Segoe UI", sans-serif;
}

body[data-font-family='opensans'] {
  --font-main: "Open Sans", "Segoe UI", sans-serif;
}

body[data-font-family='lato'] {
  --font-main: Lato, "Segoe UI", sans-serif;
}

body[data-font-family='quicksand'] {
  --font-main: Quicksand, "Segoe UI", sans-serif;
}

body[data-font-family='futura'] {
  --font-main: Futura, "Avenir Next", "Trebuchet MS", sans-serif;
}

body[data-theme='light'] {
  --bg: #f6f5f2;
  --bg-shape-1: #ecebe6;
  --bg-shape-2: #e8e6e0;
  --frame: rgba(255, 255, 255, 0.92);
  --surface: #ffffff;
  --surface-soft: #f6f6f4;
  --ink: #141414;
  --text: #252525;
  --muted: #6e6e6e;
  --line: #dddddd;
  --chip: #f2f2f2;
  --chip-active: #121212;
  --chip-active-ink: #f4f4f4;
  --accent: #7a7a7a;
}

body[data-theme='sepia'] {
  --bg: #f4f1e8;
  --bg-shape-1: #ebe4d3;
  --bg-shape-2: #e7e0ce;
  --frame: rgba(252, 250, 244, 0.88);
  --surface: #faf6ec;
  --surface-soft: #f5efdf;
  --ink: #171613;
  --text: #25221c;
  --muted: #6d685b;
  --line: #ddd5c4;
  --chip: #efe8d7;
  --chip-active: #171613;
  --chip-active-ink: #f2ede0;
  --accent: #968965;
}

body[data-theme='dark'] {
  --bg: #101010;
  --bg-shape-1: #191919;
  --bg-shape-2: #151515;
  --frame: rgba(18, 18, 18, 0.9);
  --surface: #171717;
  --surface-soft: #1e1e1e;
  --ink: #ededed;
  --text: #d8d8d8;
  --muted: #a2a2a2;
  --line: #313131;
  --chip: #242424;
  --chip-active: #ececec;
  --chip-active-ink: #121212;
  --accent: #aa9561;
}

    body[data-font-size='m'] {
      --content-max: 74ch;
      --body-size: 1.04rem;
      --body-leading: 1.66;
      --section-gap: 40px;
    }

    body[data-font-size='s'] {
      --content-max: 68ch;
      --body-size: 0.96rem;
      --body-leading: 1.57;
      --section-gap: 34px;
    }

    body[data-font-size='l'] {
      --content-max: 80ch;
      --body-size: 1.12rem;
      --body-leading: 1.73;
      --section-gap: 46px;
    }

    body[data-font-size='xl'] {
      --content-max: 86ch;
      --body-size: 1.2rem;
      --body-leading: 1.8;
      --section-gap: 52px;
    }


.shell {
  width: min(1280px, 96vw);
  margin: clamp(16px, 2.8vw, 34px) auto;
  transition: none;
}

body.boot-loading .shell {
  opacity: 0;
  pointer-events: none;
}

.frame {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--frame);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

@media (min-width: 761px) {
  .frame {
    overflow: visible;
  }
}

.topbar {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  padding-right: 42px;
}

.topbar-actions {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.brand-wrap {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.brand {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}

.brand-link {
  text-decoration: none;
  color: inherit;
}

.status {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.ghost-btn {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ghost-btn:hover {
  border-color: var(--accent);
}

.icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.icon-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 220ms ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

#openSettings:hover svg {
  transform: rotate(10deg);
}

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

.workspace {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 250px;
  gap: 1px;
  background: var(--line);
}

.panel {
  background: var(--surface);
}

.left,
.right {
  padding: 22px 18px;
}

.center {
  padding: clamp(18px, 4vw, 54px) clamp(20px, 5vw, 64px);
}

.panel-title {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-family: var(--font-main);
  font-weight: 600;
}

.panel-head {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.panel-link:hover {
  color: var(--ink);
}

.panel-arrow {
  font-size: 0.95rem;
  color: var(--muted);
}

.search-input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--ink);
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 0.86rem;
}

.post-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.post-link {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--ink);
  text-align: left;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

.post-link:hover {
  border-color: var(--accent);
}

.post-link.active {
  background: var(--chip);
  border-color: var(--accent);
}

.post-title {
  display: block;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
}

.post-meta-row {
  margin-top: 7px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  column-gap: 10px;
}

.meta-date {
  font-size: 0.74rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.meta-date.recent::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.length-meter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.glass-icon {
  width: 13px;
  height: 13px;
  display: inline-block;
}

.glass-icon path {
  fill: color-mix(in srgb, var(--muted) 84%, transparent);
}

.length-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
}

.length-bars i {
  width: 3px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 30%, transparent);
  height: 6px;
}

.length-bars i:nth-child(2) {
  height: 9px;
}

.length-bars i:nth-child(3) {
  height: 12px;
}

.length-bars i.on {
  background: var(--muted);
}

.meta-rating {
  font-size: 0.74rem;
  color: var(--muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 4px;
}

.hearts {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.heart {
  position: relative;
  font-size: 0.8rem;
  line-height: 1;
  width: 14px;
  height: 14px;
  color: var(--line);
  flex-shrink: 0;
}

.heart svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.vote-count {
  font-variant-numeric: tabular-nums;
}

.heart.full {
  color: #c25e5e;
}

.heart.half {
  fill: url(#half-fill);
}

.heart.half svg {
  fill: url(#half-fill);
  color: #c25e5e;
}

.heart.empty {
  color: var(--line) !important;
}

.section-gap {
  margin-top: 18px;
}

.collapse-inline {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  margin: 0;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  font-weight: 600;
}

.collapse-inline:hover {
  color: var(--ink);
}

.collapse-inline .arrow {
  transition: transform 180ms ease;
}

.collapse-inline[aria-expanded='true'] .arrow {
  transform: rotate(180deg);
}

.collapsible {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height 220ms ease, opacity 220ms ease, margin-top 220ms ease;
}

.collapsible.open {
  max-height: 420px;
  opacity: 1;
  margin-top: 10px;
}

.tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-chip {
  border: 1px solid var(--line);
  background: var(--chip);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.tag-chip.active {
  background: var(--chip-active);
  color: var(--chip-active-ink);
  border-color: var(--chip-active);
}

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

h1,
h2 {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 500;
  overflow: visible;
  padding-left: 1px;
}

h1 {
  font-size: clamp(1.15rem, 1.45vw, 1.46rem);
  line-height: 1.34;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  text-wrap: pretty;
}

h2 {
  font-size: clamp(1.14rem, 1.62vw, 1.44rem);
  line-height: 1.34;
  margin-top: var(--section-gap);
  margin-bottom: 12px;
  scroll-margin-top: 28px;
}

p {
  margin: 0 0 15px;
  color: var(--text);
  line-height: var(--body-leading);
  font-size: var(--body-size);
}

article p,
article li {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

article strong {
  font-weight: 600;
}

ul {
  margin: 0 0 16px 22px;
  padding: 0;
  color: var(--text);
  line-height: var(--body-leading);
  font-size: var(--body-size);
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: var(--section-gap) 0 18px;
}

.intro {
  color: var(--ink);
}

.term {
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  cursor: help;
}

.rating-box {
  margin: 28px auto 0;
  max-width: var(--content-max);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.rating-title {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.heart-scale {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.heart-btn {
  border: 0;
  background: transparent;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  position: relative;
  color: var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.heart-btn svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.heart-btn.full {
  color: #c25e5e;
}

.heart-btn.half {
  fill: url(#half-fill);
}

.heart-btn.half svg {
  fill: url(#half-fill);
  color: #c25e5e;
}

.heart-btn.empty {
  color: var(--line) !important;
}

.rating-hint {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.rating-footer {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.toc {
  position: sticky;
  top: 18px;
  max-height: calc(100dvh - 56px);
  overflow: auto;
  padding-right: 3px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.toc::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.toc-list a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.43;
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 8px;
}

.toc-list a:hover,
.toc-list a:focus-visible,
.toc-list a.active {
  color: var(--ink);
  border-color: var(--line);
}

.quick-actions {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.toc-quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: static;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 170ms ease, transform 170ms ease;
}

.toc-quick.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.top-quick {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1;
}

.toc-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 170ms ease;
  z-index: 20;
}

.toc-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.toc-drawer {
  position: fixed;
  right: 10px;
  bottom: 64px;
  width: min(320px, calc(100vw - 20px));
  max-height: min(70vh, 480px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 10px;
  z-index: 21;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 170ms ease, transform 170ms ease;
}

.toc-drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.loading,
.error,
.empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.loading-quiet {
  color: transparent;
  user-select: none;
  min-height: 1.2rem;
}

.loading-quiet::after {
  content: "";
  display: block;
  width: 44%;
  height: 0.52rem;
  border-radius: 999px;
  background: var(--surface-soft);
  opacity: 0.72;
}

#content {
  min-height: 82vh;
  transition: opacity 70ms linear, filter 70ms linear;
}

#content.is-loading-soft {
  opacity: 0.64;
  filter: saturate(0.88);
}

.settings-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 170ms ease;
  z-index: 29;
}

.settings-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.settings {
  position: fixed;
  top: 14px;
  right: 14px;
  width: min(324px, calc(100vw - 28px));
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 170ms ease, transform 170ms ease;
  z-index: 30;
}

.settings.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.settings-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.settings-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.settings-head h3 {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.close-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 8px;
  padding: 6px 8px;
  cursor: pointer;
}

.close-btn.icon-only {
  padding: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
}

.setting {
  margin-bottom: 14px;
}

.setting p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid var(--line);
  background: var(--chip);
  color: var(--ink);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.83rem;
  cursor: pointer;
}

.chip.active {
  background: var(--chip-active);
  border-color: var(--chip-active);
  color: var(--chip-active-ink);
}

.setting-select {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--line) 86%, #ffffff 14%);
  border-radius: 11px;
  background-color: color-mix(in srgb, var(--surface-soft) 90%, var(--surface) 10%);
  color: var(--ink);
  padding: 9px 34px 9px 12px;
  font-size: 0.84rem;
  line-height: 1.2;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, color-mix(in srgb, var(--muted) 82%, transparent) 50%),
    linear-gradient(135deg, color-mix(in srgb, var(--muted) 82%, transparent) 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 10px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  box-shadow: inset 0 1px 0 color-mix(in srgb, #ffffff 32%, transparent);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.setting-select:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line) 55%);
}

.setting-select:focus-visible {
  outline: none;
  border-color: color-mix(in srgb, var(--accent) 62%, var(--line) 38%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.vote-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10020;
  max-width: min(320px, calc(100vw - 24px));
  border: 1px solid color-mix(in srgb, #c18383 42%, var(--line) 58%);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface) 92%, #ffffff 8%);
  color: #8e5353;
  padding: 7px 10px;
  font-size: 0.74rem;
  letter-spacing: 0.01em;
  line-height: 1.35;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease;
}

.vote-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.term-popup {
  position: fixed;
  z-index: 25;
  width: min(300px, calc(100vw - 20px));
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease;
}

.term-popup.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.term-word {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.term-definition {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.55;
}

.fade {
  opacity: 0;
  transform: translateY(6px);
  animation: rise 120ms ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .workspace {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .right {
    display: none;
  }
}

.mobile-only {
  display: none;
}

@media (max-width: 860px) {
  .mobile-only {
    display: inline-block;
  }

  .workspace {
    grid-template-columns: 1fr;
  }

  .shell {
    padding: 0;
  }

  .frame {
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 6px;
  }

  .left {
    display: none;
  }

  .center {
    padding: 10px 8px;
  }

  .topbar {
    align-items: center;
    flex-direction: row;
    padding: 9px 10px;
    gap: 6px;
    padding-right: 10px;
  }

  .topbar-actions {
    position: static;
    transform: none;
  }

  .rating-footer {
    justify-content: flex-start;
  }

  .post-meta-row {
    margin-top: 6px;
  }
}
