:root {
  --bg: #f4f2ed;
  --paper: #fffcf7;
  --paper-soft: #fbf7ef;
  --ink: #25312c;
  --muted: #66736d;
  --line: #e5dcce;
  --green: #1f6b55;
  --green-soft: #ddede5;
  --amber: #eaa83e;
  --rose: #b95b5b;
  --blue: #426b8f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f8f6f0 0%, var(--bg) 360px),
    var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.8;
  word-break: normal;
  line-break: strict;
}

a {
  color: inherit;
}

h1,
.hero-title,
.button-primary,
.button-secondary,
.nav-cta {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

h2,
h3,
.article-card h3,
.step-card h3,
.scene-card h3 {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 252, 247, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner,
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  text-decoration: none;
  font-weight: 850;
  color: var(--green);
  letter-spacing: 0.01em;
  font-size: 18px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
}

.nav-cta,
.button-primary {
  background: var(--green);
  color: #fff !important;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 850;
  cursor: pointer;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(31, 107, 85, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  border: 1px solid #cfe3d8;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 850;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button-primary:hover,
.button-secondary:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button-primary:hover,
.nav-cta:hover {
  background: #185844;
  box-shadow: 0 14px 28px rgba(31, 107, 85, 0.2);
}

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

.hero {
  position: relative;
  padding: 56px 0 38px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(31, 107, 85, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(66, 107, 143, 0.08), transparent 44%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.88fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

h1 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-title {
  max-width: 760px;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
  max-width: 640px;
}

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

.trust-list {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 0 0 0 2px;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trust-list li {
  display: flex;
  gap: 8px;
}

.diagnosis-card,
.result-card,
.article-card,
.ad-slot,
.affiliate-card,
.summary-box,
.kpi-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.diagnosis-card {
  position: relative;
  padding: 22px;
  box-shadow: 0 20px 46px rgba(37, 49, 44, 0.08);
}

.diagnosis-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border-top: 4px solid rgba(31, 107, 85, 0.72);
  pointer-events: none;
}

.diagnosis-card h2 {
  margin: 8px 0 8px;
  font-size: 23px;
  line-height: 1.35;
  text-wrap: balance;
}

.diagnosis-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.card-label {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.time-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 34px;
  border-radius: 999px;
  background: #24332d;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.input-help {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

textarea,
input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

textarea:focus,
input:focus {
  border-color: #9fc8b8;
  box-shadow: 0 0 0 4px rgba(31, 107, 85, 0.09);
  background: #fffefb;
}

textarea {
  min-height: 124px;
  resize: vertical;
  margin: 10px 0 12px;
}

.diagnosis-card .button-primary {
  width: 100%;
  justify-content: center;
}

.safety-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.sample-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 4px;
}

.sample-chip {
  border: 1px solid #cfe3d8;
  background: #f3f8f5;
  color: var(--green);
  border-radius: 999px;
  padding: 8px 11px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.16s ease, transform 0.16s ease;
}

.sample-chip:hover {
  background: #e7f3ed;
  transform: translateY(-1px);
}

.result-card {
  margin-top: 20px;
  padding: 24px;
  display: none;
  box-shadow: 0 16px 40px rgba(37, 49, 44, 0.06);
}

.result-card.is-visible {
  display: block;
}

.result-header {
  max-width: 720px;
}

.result-header h2 {
  margin: 10px 0 8px;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.28;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.score-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(128px, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.score-box {
  background: #f8f5ef;
  border: 1px solid rgba(229, 220, 206, 0.72);
  border-radius: 14px;
  padding: 12px;
}

.score-main {
  background: #eef8f2;
  border-color: #cfe3d8;
}

.score-box span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.score-box strong {
  display: block;
  color: var(--green);
  font-size: 24px;
  line-height: 1.2;
}

.score-box small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 4px;
}

.danger strong {
  color: var(--rose);
}

.result-two-column {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.rewrite-box {
  background: linear-gradient(180deg, #f2fbf6, #eef8f2);
  border: 1px solid #cfe3d8;
  border-radius: 14px;
  padding: 16px;
  margin-top: 12px;
}

.rewrite-box span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 8px;
}

.rewrite-box strong {
  display: block;
  font-size: 16px;
  line-height: 1.8;
}

.action-box {
  background: linear-gradient(180deg, #fff9ea, #fffdf7);
  border-color: #e8d6a8;
}

.action-box span {
  color: #8b5e15;
}

.reward-box {
  margin-top: 14px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #24332d, #1b4d3e);
  color: #fff;
}

.reward-box p {
  color: #d7e6de;
}

.reward-unlocked {
  display: none;
  margin-top: 12px;
  background: #eef8f2;
  color: var(--ink);
  border-radius: 14px;
  padding: 12px;
}

.reward-unlocked.is-visible {
  display: block;
}

.section {
  padding: 50px 0;
}

.section-soft {
  background: rgba(255, 252, 247, 0.44);
  border-top: 1px solid rgba(229, 220, 206, 0.72);
  border-bottom: 1px solid rgba(229, 220, 206, 0.72);
}

.section h2 {
  font-size: clamp(26px, 3.3vw, 38px);
  line-height: 1.24;
  margin: 0 0 12px;
}

.section-lead {
  color: var(--muted);
  max-width: 760px;
}

.step-grid,
.scene-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

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

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

.step-card,
.scene-card {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.step-card:hover,
.scene-card:hover {
  transform: translateY(-2px);
  border-color: #cfe3d8;
  background: #fffdf9;
}

.step-card span,
.scene-card small {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 4px 9px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.step-card:nth-child(2) span,
.scene-card:nth-child(2) small {
  background: #eef2f7;
  color: var(--blue);
}

.step-card:nth-child(3) span,
.scene-card:nth-child(3) small {
  background: #fff3d9;
  color: #9a6416;
}

.scene-card:nth-child(4) small {
  background: #f7e7e7;
  color: #8b3838;
}

.step-card h3,
.scene-card h3 {
  margin: 12px 0 8px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.45;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.step-card p,
.scene-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.article-card {
  display: block;
  min-width: 0;
  padding: 18px 18px 42px;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  min-height: 176px;
  position: relative;
}

.article-card:hover {
  transform: translateY(-2px);
  border-color: #cfe3d8;
  background: #fffdf9;
}

.article-card small {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 9px;
  background: #edf6f1;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.article-card h3 {
  margin: 8px 0;
  line-height: 1.45;
  letter-spacing: 0;
  font-size: clamp(17px, 1.45vw, 19px);
  text-wrap: balance;
  overflow-wrap: break-word;
}

.article-card p {
  color: var(--muted);
  margin: 0;
}

.article-card::after {
  content: "読む";
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.ad-slot {
  margin: 18px 0;
  padding: 15px;
  background: #f8f5ef;
  border-style: dashed;
}

.ad-meta,
.pr-label {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 900;
}

.ad-meta {
  background: #e9e2d8;
  color: var(--muted);
}

.pr-label {
  background: #f4e8ce;
  color: #8b5e15;
}

.affiliate-card {
  margin-top: 14px;
  padding: 18px;
  background: linear-gradient(180deg, #fff9ea, #fffdf7);
  border-color: #e8d6a8;
}

.affiliate-card .muted:first-of-type {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 800;
}

.affiliate-card h3 {
  margin: 8px 0;
  line-height: 1.45;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.action-hint {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.82);
  border: 1px solid rgba(232, 214, 168, 0.78);
  color: #6f5425;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

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

.share-card {
  margin-top: 18px;
  background:
    radial-gradient(circle at top right, rgba(234, 168, 62, 0.2), transparent 30%),
    linear-gradient(145deg, #ffffff, #eef8f2);
  border: 1px solid #cfe3d8;
  border-radius: 22px;
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.share-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
}

.share-card-top small {
  color: var(--muted);
  font-weight: 800;
}

.share-card-title {
  font-weight: 900;
  font-size: clamp(25px, 3.2vw, 36px);
  line-height: 1.18;
  margin-top: 16px;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}

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

.share-meter-grid div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(207, 227, 216, 0.85);
  border-radius: 16px;
  padding: 12px;
}

.share-meter-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.share-meter-grid strong {
  display: block;
  color: var(--green);
  font-size: 28px;
  line-height: 1.1;
  margin-top: 4px;
}

.share-mission {
  margin: 16px 0 0;
  font-weight: 850;
}

.share-url {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.share-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 300px);
  gap: 34px;
  align-items: start;
  padding: 34px 0 56px;
}

.article-main {
  min-width: 0;
  max-width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  overflow: hidden;
}

.article-main h1 {
  max-width: 100%;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.28;
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: break-word;
  line-break: strict;
  text-wrap: balance;
}

.article-main h2 {
  margin-top: 34px;
  line-height: 1.35;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.article-main p {
  max-width: 64ch;
  overflow-wrap: break-word;
}

.example-bad,
.example-good {
  padding: 14px;
  border-radius: 16px;
  font-weight: 800;
}

.example-bad {
  background: #fff0f0;
  color: #8b3838;
}

.example-good {
  background: #f0f8f4;
  color: var(--green);
}

.sidebar {
  min-width: 0;
  position: sticky;
  top: 86px;
}

.sidebar-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 14px;
}

.kpi-panel {
  padding: 18px;
  margin-top: 22px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.kpi-box {
  background: #f8f5ef;
  border-radius: 16px;
  padding: 12px;
}

.kpi-box span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.kpi-box strong {
  font-size: 22px;
}

footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 860px) {
  .hero-grid,
  .article-layout,
  .article-grid,
  .step-grid,
  .scene-grid,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

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

  .result-two-column {
    grid-template-columns: 1fr;
  }

  .article-main {
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .container,
  .header-inner {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    padding: 34px 0 24px;
  }

  h1 {
    font-size: clamp(32px, 11vw, 42px);
    line-height: 1.18;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions a,
  .diagnosis-card .button-primary,
  .share-actions button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

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

  .score-main {
    grid-column: 1 / -1;
  }

  .share-card {
    padding: 16px;
  }

  .share-meter-grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    min-height: auto;
  }

  .article-card small {
    overflow-wrap: anywhere;
    word-break: normal;
  }
}


.case-match-section {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(207, 227, 216, 0.9);
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfffc 0%, #fffdf8 100%);
}

.case-match-heading {
  max-width: 760px;
}

.case-match-heading h3 {
  margin: 8px 0 6px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.case-match-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.case-match-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.case-match-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  padding: 15px;
}

.case-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.case-card-top span {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 9px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.case-card-top strong {
  color: var(--green);
  font-size: 20px;
  line-height: 1;
}

.case-match-card h4 {
  margin: 12px 0 10px;
  font-size: 17px;
  line-height: 1.48;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.case-match-card dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.case-match-card dt {
  margin-bottom: 2px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.case-match-card dd {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.72;
  overflow-wrap: break-word;
}

.case-vote-note {
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 920px) {
  .case-match-grid {
    grid-template-columns: 1fr;
  }
}


.case-vote-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.case-vote-actions button {
  appearance: none;
  min-width: 0;
  border: 1px solid rgba(207, 227, 216, 0.95);
  border-radius: 999px;
  background: #ffffff;
  color: var(--green);
  font-weight: 900;
  font-size: 12px;
  line-height: 1.2;
  padding: 9px 8px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.case-vote-actions button:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 122, 93, 0.35);
  background: #f2faf6;
}

.case-vote-actions.is-voted button {
  opacity: 0.72;
}

.case-vote-thanks {
  margin: 9px 0 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.55;
}

.contribution-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  margin-top: 20px;
  padding: 22px;
  border: 1px solid rgba(207, 227, 216, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(16, 122, 93, 0.08), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7fbf8 100%);
}

.contribution-copy h3 {
  margin: 8px 0;
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.28;
  letter-spacing: 0;
  text-wrap: balance;
}

.contribution-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.contribution-preview {
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(228, 218, 203, 0.92);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.86);
}

.contribution-preview label {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}

.contribution-preview label small {
  color: var(--muted);
  font-weight: 800;
}

.contribution-preview textarea,
.contribution-preview input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(228, 218, 203, 0.98);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  line-height: 1.65;
  padding: 11px 12px;
  box-sizing: border-box;
}

.contribution-preview textarea {
  min-height: 84px;
  resize: vertical;
}

.contribution-consent {
  padding: 11px 12px;
  border-radius: 14px;
  background: #f3f8f5;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.contribution-consent label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.contribution-consent input {
  width: auto;
  margin-top: 3px;
}

.contribution-status {
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.55;
}

@media (max-width: 560px) {
  .case-vote-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .contribution-card {
    grid-template-columns: 1fr;
  }
}
