:root {
  --ink: #201b12;
  --muted: #716957;
  --paper: #fffdf7;
  --paper-deep: #fff6da;
  --honey: #f5ad18;
  --honey-dark: #b96d00;
  --line: #e9dfc8;
  --green: #18794e;
  --green-soft: #e8f5ed;
  --orange-soft: #fff1d6;
  --shadow: 0 24px 70px rgba(90, 60, 10, 0.1);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 88% 8%, rgba(245, 173, 24, 0.14), transparent 30rem),
    var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--honey);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
  box-shadow: 3px 3px 0 var(--ink);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
}

nav a {
  padding-block: 10px;
}

nav a:hover,
.footer-links a:hover {
  color: var(--honey-dark);
}

nav a.nav-meme {
  color: var(--muted);
  font-weight: 600;
}

nav a.nav-meme:hover {
  color: var(--ink);
}

.hero {
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding: 76px 0 94px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--honey-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h1 span {
  color: var(--honey-dark);
}

.hero-description {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 750;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--honey);
  box-shadow: 4px 4px 0 var(--ink);
}

.button-primary:hover {
  box-shadow: 6px 6px 0 var(--ink);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.button-secondary:hover {
  border-color: #cfb87f;
  background: #fff;
}

.trust-panel {
  position: relative;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.trust-panel::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 34px solid rgba(245, 173, 24, 0.11);
  transform: rotate(30deg);
}

.trust-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 18px;
  color: #fff;
  background: var(--green);
  font-size: 26px;
  font-weight: 800;
}

.trust-panel > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.trust-panel h2 {
  margin-bottom: 24px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.trust-panel ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.trust-panel li {
  margin-bottom: 12px;
}

.trust-panel li::before {
  content: "•";
  margin-right: 10px;
  color: var(--honey-dark);
}

.trust-panel a {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 750;
}

.directory,
.how-it-works {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 50px);
  letter-spacing: -0.045em;
}

.result-count {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.search-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.search-box {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.search-box:focus-within {
  border-color: var(--honey-dark);
  box-shadow: 0 0 0 3px rgba(245, 173, 24, 0.17);
}

.search-box > span {
  color: var(--muted);
  font-size: 27px;
  line-height: 1;
  transform: rotate(-18deg);
}

.search-box input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
}

.search-box input::placeholder {
  color: #9c9380;
}

kbd {
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 6px;
  color: var(--muted);
  background: var(--paper);
  font-size: 12px;
}

.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
}

.filter-row-secondary {
  padding-top: 10px;
}

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

.filter-chip {
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}

.filter-chip:hover {
  color: var(--ink);
  background: var(--paper-deep);
}

.filter-chip.is-active {
  border-color: #e8c66f;
  color: var(--ink);
  background: #fff2c7;
  font-weight: 750;
}

.status-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.status-filter select {
  padding: 8px 30px 8px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
  background: #fff;
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.plugin-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.plugin-card:hover,
.plugin-card:focus-visible {
  border-color: #d6bd7d;
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(90, 60, 10, 0.1);
  outline: none;
}

.plugin-card h3 a:hover {
  color: var(--honey-dark);
}

.card-top,
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.category-label,
.platform-label,
.security-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
}

.category-label {
  color: var(--honey-dark);
  background: var(--orange-soft);
}

.platform-label {
  color: #1f4b63;
  background: #e7f3f8;
}

.security-badge.passed {
  color: var(--green);
  background: var(--green-soft);
}

.security-badge.warning {
  color: #995c00;
  background: var(--orange-soft);
}

.demand-label {
  margin: 18px 0 0;
  color: var(--orange, #c46b00);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plugin-card h3,
.plugin-card .demand-title {
  margin: 4px 0 8px;
  font-size: 24px;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.author {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
}

.description {
  min-height: 0;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.tag {
  padding: 5px 8px;
  border-radius: 6px;
  color: #746a56;
  background: #f7f3e9;
  font-size: 11px;
}

.feedback {
  margin: 0 0 20px;
  padding: 12px 14px;
  border-left: 3px solid var(--honey);
  color: var(--muted);
  background: #fffbef;
  font-size: 12px;
  line-height: 1.6;
}

.feedback cite {
  display: block;
  margin-top: 4px;
  font-style: normal;
}

.card-footer {
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid #f0eadc;
  font-size: 12px;
}

.card-footer a {
  font-weight: 750;
}

.card-footer a:hover {
  color: var(--honey-dark);
}

.card-links {
  min-width: 0;
}

.card-footer .version {
  color: var(--muted);
  white-space: nowrap;
}

.empty-state {
  margin-top: 28px;
  padding: 70px 24px;
  border: 1px dashed #d9c79a;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 249, 230, 0.5);
}

.empty-state > span {
  display: block;
  margin-bottom: 12px;
  color: var(--honey-dark);
  font-size: 42px;
  transform: rotate(-18deg);
}

.empty-state h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.empty-state p {
  margin-bottom: 20px;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-right: 0;
}

.steps li:first-child {
  border-radius: 18px 0 0 18px;
}

.steps li:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 18px 18px 0;
}

.steps span {
  display: block;
  margin-bottom: 42px;
  color: var(--honey-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

footer {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
}

footer strong {
  font-size: 15px;
}

footer p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
  font-weight: 650;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 58px;
  }

  .trust-panel {
    max-width: 600px;
  }

  .plugin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps li {
    border-right: 1px solid var(--line);
    border-radius: 0;
  }

  .steps li:first-child {
    border-radius: 18px 0 0;
  }

  .steps li:nth-child(2) {
    border-radius: 0 18px 0 0;
  }

  .steps li:nth-child(3) {
    border-top: 0;
    border-radius: 0 0 0 18px;
  }

  .steps li:last-child {
    border-top: 0;
    border-radius: 0 0 18px;
  }
}

@media (max-width: 640px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 72px;
  }

  /* Keep 抽象区 + GitHub; hide the rest to save space. */
  nav a:not(:last-child):not(.nav-meme):not([aria-current="page"]) {
    display: none;
  }

  nav {
    gap: 14px;
    font-size: 13px;
  }

  h1 {
    font-size: clamp(43px, 14vw, 62px);
  }

  .hero {
    min-height: auto;
    padding: 54px 0 72px;
  }

  .hero-description {
    font-size: 16px;
  }

  .trust-panel {
    padding: 28px;
  }

  .directory,
  .how-it-works {
    padding: 68px 0;
  }

  .section-heading,
  .filter-row,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-count {
    margin: 0;
  }

  .status-filter {
    width: 100%;
    justify-content: space-between;
  }

  .plugin-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps li,
  .steps li:first-child,
  .steps li:nth-child(2),
  .steps li:nth-child(3),
  .steps li:last-child {
    min-height: 0;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 0;
  }

  .steps li:first-child {
    border-radius: 18px 18px 0 0;
  }

  .steps li:last-child {
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
  }

  .steps span {
    margin-bottom: 24px;
  }

  footer {
    justify-content: center;
    padding: 38px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

.plugin-page {
  padding: 28px 0 88px;
}

.breadcrumb {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a:hover {
  color: var(--honey-dark);
}

.plugin-detail {
  max-width: 820px;
}

.detail-badges {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.plugin-detail h1 {
  margin-bottom: 12px;
  font-size: clamp(36px, 6vw, 58px);
}

.plugin-meta {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.detail-lead {
  margin-bottom: 36px;
  font-size: 17px;
}

.detail-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.detail-section h2 {
  margin-bottom: 14px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.detail-copy,
.detail-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.detail-copy p {
  margin: 0 0 14px;
}

.detail-copy p:last-child {
  margin-bottom: 0;
}

.install-commands {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.command-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.command-row pre {
  margin: 0;
  overflow-x: auto;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.55;
}

.command-row code {
  white-space: pre;
}

.copy-button {
  min-width: 72px;
  padding-inline: 14px;
}

.install-notes ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.install-notes li + li {
  margin-top: 8px;
}

.detail-feedback {
  margin: 0;
}

@media (max-width: 640px) {
  .command-row {
    grid-template-columns: 1fr;
  }

  .copy-button {
    width: 100%;
  }
}

/* ── B 面：抽象区 · A 面用色反相 + 区域拒绝页 ───────────────── */

body.side-b {
  /* A: paper/ink/honey → B: ink/paper/cool（蜜金反相成冷青） */
  --ink: #fffdf7;
  --muted: #b8a78c;
  --paper: #201b12;
  --paper-deep: #2c2418;
  --honey: #3d9ecc;
  --honey-dark: #6ec4e8;
  --line: #3f3628;
  --refuse: #3d9ecc;
  --green: #e8a0c0;
  --green-soft: #3a2430;
  --orange-soft: #2a3a42;
  --shadow: none;
  font-family:
    "Iowan Old Style", "Palatino Linotype", "Songti SC", "Noto Serif SC", Georgia, "Times New Roman",
    serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(61, 158, 204, 0.16), transparent 28rem),
    var(--paper);
  color: var(--ink);
}

body.side-b::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 253, 247, 0.35) 3px
  );
}

body.side-b > * {
  position: relative;
  z-index: 1;
}

body.side-b .brand-mark {
  background: var(--refuse);
  border-color: var(--ink);
  color: var(--paper);
  border-radius: 0;
  box-shadow: none;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

body.side-b .brand small {
  color: var(--muted);
}

body.side-b nav a:hover,
body.side-b .footer-links a:hover {
  color: var(--honey-dark);
}

body.side-b nav a[aria-current="page"] {
  color: var(--honey-dark);
  text-decoration: underline;
  text-underline-offset: 6px;
}

body.side-b .button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

body.side-b .button-secondary:hover {
  border-color: var(--refuse);
  background: var(--paper-deep);
}

body.side-b .security-badge.warning {
  color: var(--paper);
  background: var(--refuse);
}

body.side-b .demand-label {
  color: var(--refuse);
}

body.side-b .author,
body.side-b .description,
body.side-b .result-count {
  color: var(--muted);
}

body.side-b .tag {
  border-color: var(--line);
  background: var(--paper-deep);
  color: var(--muted);
}

body.side-b .empty-state h3 {
  color: var(--ink);
}

body.side-b .empty-state p {
  color: var(--muted);
}

.refusal-hero {
  max-width: 720px;
  padding: 72px 0 48px;
  animation: refusal-in 520ms ease-out both;
}

@keyframes refusal-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.refusal-kicker {
  margin: 0 0 10px;
  color: var(--refuse);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.refusal-date {
  margin: 0 0 28px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

body.side-b .refusal-hero h1 {
  max-width: 18ch;
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 650;
  color: var(--ink);
}

.refusal-en {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-style: italic;
}

.refusal-attempt {
  margin: 0 0 28px;
  padding: 14px 16px;
  border-left: 3px solid var(--refuse);
  background: rgba(61, 158, 204, 0.12);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
}

.refusal-attempt-en {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
}

.refusal-lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 38rem;
}

.refusal-lead strong {
  color: var(--ink);
  font-weight: 700;
}

.button-refuse {
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--refuse);
  color: var(--paper);
  box-shadow: none;
  font-family: inherit;
}

.button-refuse:hover {
  background: var(--honey-dark);
  color: var(--paper);
  box-shadow: none;
  transform: none;
}

.button-refuse-ghost {
  border-radius: 0;
  box-shadow: none;
}

.button-refuse-ghost:hover {
  transform: none;
  box-shadow: none;
}

.refusal-eyebrow {
  color: var(--refuse) !important;
  letter-spacing: 0.12em;
}

.meme-disclaimer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: baseline;
  margin-bottom: 28px;
  padding: 14px 16px;
  border: 1px dashed var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.meme-disclaimer strong {
  color: var(--refuse);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  margin-bottom: 64px;
}

.meme-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper-deep);
  transition: border-color 160ms ease, background 160ms ease;
}

.meme-card:hover {
  border-color: var(--refuse);
  background: #332a1c;
}

.meme-vibe {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.meme-badge {
  border-radius: 0 !important;
}

.meme-punchline {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

.meme-warning {
  margin: 0;
  color: var(--honey-dark);
  font-size: 12px;
  line-height: 1.55;
}

.meme-install {
  margin-top: 8px;
}

.meme-install-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

body.side-b .command-row pre {
  border-radius: 0;
  border-color: var(--line);
  background: #18140e;
  color: var(--ink);
  font-size: 12px;
}

body.side-b .copy-button {
  border-radius: 0;
}

body.side-b .meme-card .demand-title a {
  color: var(--ink);
}

body.side-b .meme-card .demand-title a:hover {
  color: var(--honey-dark);
}

body.side-b .card-footer,
body.side-b .card-links {
  color: var(--muted);
}

body.side-b .card-links:hover {
  color: var(--honey-dark);
}

body.side-b footer {
  border-top: 1px solid var(--line);
  padding-block: 36px 48px;
  color: var(--muted);
}

body.side-b footer strong {
  color: var(--ink);
}

body.side-b .breadcrumb {
  color: var(--muted);
}

body.side-b .breadcrumb a {
  color: var(--honey-dark);
}

body.side-b .plugin-detail h1 {
  color: var(--ink);
}

body.side-b .plugin-meta,
body.side-b .detail-lead,
body.side-b .detail-copy,
body.side-b .detail-copy p {
  color: var(--muted);
}

body.side-b .detail-section {
  border-top-color: var(--line);
}

body.side-b .detail-section h2 {
  color: var(--ink);
}

body.side-b .detail-warning {
  margin: 0 0 8px;
  max-width: 40rem;
}

@media (max-width: 720px) {
  .refusal-hero {
    padding-top: 48px;
  }

  body.side-b .refusal-hero h1 {
    max-width: none;
  }
}
