/* ============================================================
   AFYONNARGILE.COM — "KÖZ" TASARIM SİSTEMİ v1.0
   Koyu kömür zemin · köz turuncusu · pirinç detay
   ============================================================ */

:root {
  --bg-0: #171210;
  --bg-1: #1e1712;
  --bg-2: #292018;
  --bg-3: #332920;
  --ember: #f26b21;
  --ember-2: #ff8a3d;
  --brass: #c9a24b;
  --brass-soft: #e5c878;
  --text: #f4ede3;
  --muted: #a99c8b;
  --wa: #25d366;
  --wa-dark: #128c4a;
  --line: rgba(201, 162, 75, 0.16);
  --radius: 20px;
  --radius-lg: 24px;
  --container: 1160px;
  --font-display: "Fraunces", Georgia, serif;
  --font-ui: "Manrope", -apple-system, "Segoe UI", sans-serif;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: clamp(16px, 1.05vw, 17px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Tipografi ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 580;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(40px, 5.4vw, 68px); }
h2 { font-size: clamp(30px, 3.4vw, 44px); }
h3 { font-size: clamp(20px, 1.6vw, 24px); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brass);
  opacity: 0.7;
}

.lead { color: var(--muted); font-size: clamp(17px, 1.25vw, 19px); max-width: 56ch; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

section { padding: clamp(72px, 9vw, 128px) 0; }

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  will-change: transform;
}
.btn svg { flex: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--ember) 0%, var(--ember-2) 100%);
  color: #1a0f06;
  box-shadow: 0 8px 28px rgba(242, 107, 33, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(242, 107, 33, 0.48);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover { border-color: var(--brass); transform: translateY(-2px); }

.btn-wa {
  background: var(--wa);
  color: #06130a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(37, 211, 102, 0.42); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(23, 18, 16, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 620;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo em { font-style: normal; color: var(--brass); }
.logo small {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--text); }

.header-cta { flex: none; padding: 11px 22px; font-size: 15px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(150px, 18vw, 210px) 0 clamp(80px, 9vw, 120px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}
.hero h1 { max-width: 13ch; }
.hero h1 em { font-style: italic; color: var(--brass-soft); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}
.trust-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.02);
}
.trust-chips .star { color: var(--brass-soft); }

/* Köz kompozisyonu (fotoğraf gelene kadar CSS-only) */
.hero-visual { position: relative; aspect-ratio: 1 / 1.05; }
.ember-orb {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 62%, rgba(255, 138, 61, 0.5) 0%, rgba(242, 107, 33, 0.22) 34%, transparent 68%),
    radial-gradient(circle at 50% 78%, rgba(255, 196, 120, 0.32) 0%, transparent 42%);
  filter: blur(2px);
}
.brass-ring {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.brass-ring.r1 { inset: 0; }
.brass-ring.r2 { inset: 12%; border-color: rgba(201, 162, 75, 0.26); }
.brass-ring.r3 { inset: 26%; border-color: rgba(201, 162, 75, 0.38); }
.spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember-2);
  filter: blur(1px);
  opacity: 0.8;
  animation: float 7s ease-in-out infinite;
}
.spark.s2 { width: 4px; height: 4px; animation-duration: 9s; animation-delay: -3s; }
.spark.s3 { width: 5px; height: 5px; animation-duration: 11s; animation-delay: -6s; }
@keyframes float {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(-26px); opacity: 0.35; }
}

.hero-photo {
  position: absolute;
  inset: 4% 8%;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(23, 18, 16, 0.45));
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(242, 107, 33, 0.09) 0%, transparent 60%);
  pointer-events: none;
}

/* ---------- Güven bandı ---------- */
.trust-band { padding: 0; border-block: 1px solid var(--line); background: var(--bg-1); }
.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 20px;
}
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item .t-icon { color: var(--brass); flex: none; }
.trust-item strong { display: block; font-size: 15px; }
.trust-item span { font-size: 13px; color: var(--muted); }

/* ---------- Kartlar / Kategoriler ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
  overflow: hidden;
}
.cat-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--brass));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.cat-card:hover { transform: translateY(-4px); border-color: rgba(201, 162, 75, 0.4); background: var(--bg-3); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-icon { color: var(--brass); }
.cat-card p { margin: 0; font-size: 14.5px; color: var(--muted); flex: 1; }
.cat-link { font-size: 14.5px; font-weight: 700; color: var(--ember-2); }

/* ---------- Neden biz ---------- */
.why { background: var(--bg-1); border-block: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-item { padding: 26px 24px; border-left: 1px solid var(--line); }
.why-item h3 { font-family: var(--font-ui); font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.why-item p { margin: 0; font-size: 14.5px; color: var(--muted); }
.why-num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--brass);
  display: block;
  margin-bottom: 14px;
}

/* ---------- Süreç ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative;
  padding: 34px 30px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 560;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--brass);
  display: block;
  margin-bottom: 18px;
}
.step p { margin: 0; font-size: 15px; color: var(--muted); }

/* ---------- Vitrin / ürün kartları ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(201, 162, 75, 0.4); }
.product-media {
  aspect-ratio: 4 / 3.4;
  background:
    radial-gradient(circle at 50% 70%, rgba(242, 107, 33, 0.18) 0%, transparent 60%),
    linear-gradient(160deg, var(--bg-3) 0%, var(--bg-1) 100%);
  display: grid;
  place-items: center;
  color: var(--brass);
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media.is-contain img { object-fit: contain; padding: 10%; }
.product-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-body h3 { font-family: var(--font-ui); font-size: 16.5px; font-weight: 800; margin: 0; }
.product-body p { margin: 0; font-size: 13.5px; color: var(--muted); flex: 1; }
.price-cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ember-2);
  text-decoration: none;
}
.price-cta:hover { color: var(--brass-soft); }

/* ---------- Yorumlar ---------- */
.reviews { background: var(--bg-1); border-block: 1px solid var(--line); }
.review-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.review-score {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--brass-soft);
}
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  padding: 26px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--muted);
}
.review-card footer { margin-top: 16px; font-size: 13.5px; font-weight: 700; color: var(--text); }
.review-card .stars { color: var(--brass-soft); letter-spacing: 2px; margin-bottom: 10px; }
.review-card.review-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border-style: dashed;
  border-color: rgba(201, 162, 75, 0.35);
}
.review-card.review-cta h3 { font-family: var(--font-ui); font-size: 17px; font-weight: 800; margin: 0; color: var(--text); }
.review-card.review-cta .btn { margin-top: 12px; }

/* ---------- Toptan ---------- */
.wholesale-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: clamp(36px, 5vw, 64px);
  background:
    radial-gradient(circle at 85% 20%, rgba(242, 107, 33, 0.14) 0%, transparent 55%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.wholesale-card .btn { justify-self: start; }

/* ---------- Rehber ---------- */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.guide-card {
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.guide-card:hover { transform: translateY(-4px); border-color: rgba(201, 162, 75, 0.4); }
.guide-card .tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
}
.guide-card h3 { margin: 12px 0 8px; font-family: var(--font-ui); font-size: 17.5px; font-weight: 800; }
.guide-card p { margin: 0; font-size: 14px; color: var(--muted); }

/* ---------- SSS ---------- */
.faq-list { max-width: 760px; }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 700;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--brass);
  transition: transform 0.3s var(--ease);
  flex: none;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: 0 0 22px; color: var(--muted); max-width: 62ch; }

/* ---------- Final CTA + mağaza ---------- */
.final-cta {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(242, 107, 33, 0.16) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; }
.final-cta h2 { max-width: 20ch; margin-inline: auto; }
.final-cta .hero-actions { justify-content: center; }

.store-block {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.store-cell {
  padding: 26px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.store-cell h3 { font-family: var(--font-ui); font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); margin-bottom: 10px; }
.store-cell p { margin: 0; font-size: 15px; color: var(--muted); }
.store-cell a { color: var(--ember-2); font-weight: 700; text-decoration: none; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-1);
  padding: 56px 0 32px;
  font-size: 14px;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-grid h3 { font-family: var(--font-ui); font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-grid a { color: var(--muted); text-decoration: none; }
.footer-grid a:hover { color: var(--text); }
.legal-note {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(169, 156, 139, 0.75);
}
.legal-note strong { color: var(--muted); }
.copyright { margin-top: 18px; font-size: 12.5px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---------- Sabit WhatsApp pill ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--wa);
  color: #06130a;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.wa-float.visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { transform: translateY(-2px); }

/* ---------- 18 yaş kapısı ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(14, 10, 8, 0.82);
  backdrop-filter: blur(8px);
}
.age-gate[hidden] { display: none; }
.age-card {
  max-width: 440px;
  width: 100%;
  padding: 40px 36px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}
.age-card h2 { font-size: 26px; }
.age-card p { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.age-actions { display: grid; gap: 10px; }

/* ---------- Kategori sayfası ---------- */
.page-hero { padding: clamp(140px, 16vw, 190px) 0 clamp(48px, 6vw, 72px); }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 13.5px;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; opacity: 0.5; }

.category-guide {
  max-width: 820px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 30px;
}
.category-guide summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-ui);
}
.category-guide summary::-webkit-details-marker { display: none; }
.category-guide summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--brass);
  transition: transform 0.3s var(--ease);
}
.category-guide details[open] summary::after,
.category-guide[open] > summary::after { transform: rotate(45deg); }
.category-guide h3 { margin-top: 18px; }
.category-guide p, .category-guide li { color: var(--muted); font-size: 15.5px; }

/* ---------- Reveal animasyonları ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .spark { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .card-grid, .review-grid, .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .trust-band-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: none; }
  .trust-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    gap: 4px;
    background: rgba(23, 18, 16, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 28px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; font-size: 17px; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 8px; }
  .hero-visual { position: absolute; inset: 0; opacity: 0.35; pointer-events: none; z-index: -1; }
  .hero h1 { max-width: none; }
  .hero-actions .btn { width: 100%; }

  .steps, .wholesale-card { grid-template-columns: 1fr; }
  .store-block { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .card-grid, .review-grid, .guide-grid, .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-band-grid { grid-template-columns: 1fr 1fr; }
  .wa-float span { display: none; }
  .wa-float { padding: 16px; }
}

/* ---------- Rehber makale sayfası ---------- */
.article { max-width: 760px; }
.article h2 { font-size: clamp(24px, 2.4vw, 32px); margin-top: 1.8em; }
.article h3 { margin-top: 1.5em; }
.article p, .article li { color: var(--muted); }
.article strong { color: var(--text); }
.article a { color: var(--ember-2); }
.article ul, .article ol { padding-left: 22px; }
.article-meta { font-size: 13.5px; color: var(--muted); margin-bottom: 28px; }
.article-cta {
  margin-top: 40px;
  padding: 30px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.article-cta p { margin: 0 0 18px; color: var(--muted); }
