@font-face {
  font-family: "IRANSans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/divan/assets/fonts/IRANSansX-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "IRANSans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/divan/assets/fonts/IRANSansX-Bold.woff2") format("woff2");
}
:root {
  --ink: #1b1d21;
  --muted: #5c6370;
  --line: #e6e8eb;
  --soft: #f4f1ea;
  --accent: #8a3d1b;
  --font: "IRANSans", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  font-size: 17.5px;
  line-height: 1.9;
  -webkit-font-smoothing: auto;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}
a { color: inherit; }
.wrap { width: min(720px, calc(100% - 2rem)); margin: 0 auto; }
.bar {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}
.brand { text-decoration: none; display: flex; flex-direction: column; }
.brand strong { font-size: 1.05rem; }
.brand em { font-style: normal; font-size: .75rem; color: var(--muted); }
nav { display: flex; gap: .85rem; font-size: .9rem; }
nav a { text-decoration: none; color: var(--muted); }
main { padding: 1.6rem 0 3rem; }
.kicker {
  margin: 0 0 .35rem;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
}
h1 { margin: 0 0 .7rem; font-size: 1.7rem; line-height: 1.35; }
.lead { color: var(--muted); margin: 0 0 1.4rem; }
.crumb { font-size: .85rem; color: var(--muted); }
.crumb a { color: var(--accent); }
.cards { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.cards a {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: var(--soft);
}
.cards small { display: block; color: var(--accent); font-size: .75rem; margin-bottom: .25rem; }
.cards strong { display: block; font-size: 1.05rem; }
.cards em { display: block; font-style: normal; color: var(--muted); margin-top: .35rem; font-size: .92rem; }
.prose p { margin: 0 0 1rem; font-size: 1.05rem; }
