/* ===== Typography ===== */

:root {
  --brand: #a43b16;
  --orange: #f37321;
  --orange-hover: #e26417;
  --text: #684323;
  --sas-bg: #0b0b0b;
  --sas-yellow: #ffd400;
  --sas-text: #ffffff;
  --sas-muted: #cfd2d7;
  --border: #e5e7eb;
  --sas-bg: #0b0b0b;
  --sas-yellow: #ffd400;
  --sas-text: #ffffff;
  --sas-orange: #e26417;
  --sas-orange-hover: #cc540d;
}

body {
  font-family: "Inter", "Roboto", system-ui, -apple-system, Segoe UI, Arial,
    sans-serif;
}
h1,
h2,
h3,
h4 {
  font-weight: 500;
  line-height: 1.25;
  color: #6f5650;
}
p {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
}
.entry-title {
  font-size: clamp(24px, 3.2vw, 32px);
}
.small {
  font-size: 14px;
}
.muted {
  color: #6b7280;
}
span,
strong,
b {
  color: var(--brand);
}

.btn {
  display: inline-block;
  font-size: 14px;
  padding: 5px 15px;
  background: var(--brand);
  color: #fff;
  border-radius: 2px;
  text-decoration: none;
}

@media (max-width: 768px) {
  p {
    font-size: 12px;
  }
}
