:root {
  --bg: #f6f0e7;
  --ink: #1a1a2e;
  --muted: #746b60;
  --accent: #c8522a;
  --line: #d9ccb7;
  --panel: #fffaf3;
  --panel-soft: #fff7ef;
}

body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0)),
    var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

.page-wrap {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 34px 24px 72px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 18px;
  padding: 4px 10px;
  border: 1px solid rgba(200, 82, 42, 0.24);
  border-radius: 999px;
  background: #fff3ec;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(36px, 5.8vw, 58px);
  font-weight: 800;
  line-height: 1.08;
}

.lead-text {
  max-width: 780px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.article-card {
  margin-bottom: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(68, 45, 28, 0.06);
}

h2 {
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 750;
  line-height: 1.25;
}

h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

p,
li {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.85;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--ink);
}

ul {
  padding-left: 1.25rem;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 18px 0 4px;
}

.comparison-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.comparison-table th,
.comparison-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  vertical-align: top;
}

.comparison-table th {
  color: var(--ink);
  background: var(--panel-soft);
  font-weight: 800;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.note {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  background: var(--panel-soft);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.75;
}

.source-box {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.45);
}

.cta-box {
  margin-top: 28px;
  padding: 28px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

.cta-box h2,
.cta-box p {
  color: white;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 6px;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.btn-main:hover {
  background: #a94122;
  color: white;
}

.small-muted {
  color: var(--muted);
  font-size: 13px;
}

.powered-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  margin-top: 26px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.powered-badge i {
  color: var(--accent);
  font-size: 13px;
}

@media (max-width: 700px) {
  .page-wrap {
    padding: 24px 16px 48px;
  }

  .back-link {
    margin-bottom: 30px;
  }

  .article-card,
  .cta-box {
    padding: 20px;
  }
}
