@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Space+Mono:wght@700&display=swap');

/* ============================================
   INDIRELLA v2 — Sıfırdan, Temiz CSS
   Kural: max-width SADECE .wrap'te, başka hiçbir yerde
   ============================================ */

:root {
  --acc:      #6c63ff;
  --acc-h:    #7d75ff;
  --acc-bg:   rgba(108,99,255,0.1);
  --bg:       #0d0e14;
  --bg2:      #13151f;
  --bg3:      #1a1d2e;
  --bg4:      #21253a;
  --txt:      #e8eaf0;
  --txt2:     #8b91a8;
  --txt3:     #4a5068;
  --brd:      rgba(255,255,255,0.06);
  --brd2:     rgba(255,255,255,0.1);
  --success:  #10b981;
  --warning:  #f59e0b;
  --danger:   #ef4444;
  --r:        8px;
  --r2:       12px;
  --nav-h:    54px;
  --font:     'DM Sans', sans-serif;
  --font-mono:'Space Mono', monospace;
}

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

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

/* TEK max-width kuralı — tüm sayfalarda aynı */
.wrap {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

a { color: var(--acc); text-decoration: none; }
a:hover { color: var(--acc-h); }
img { max-width: 100%; display: block; }

/* ============ HEADER ============ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg2);
  border-bottom: 1px solid var(--brd);
  height: var(--nav-h);
}

.admin-bar #site-header { top: 32px; }

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  height: var(--nav-h);
}

.site-logo {
  font-family: var(--font-mono);
  font-size: 19px;
  font-weight: 700;
  color: var(--acc);
  letter-spacing: -1px;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo span { color: var(--txt3); }

.nav-search {
  flex: 1;
  max-width: 460px;
  position: relative;
}

.nav-search input {
  width: 100%;
  height: 36px;
  background: var(--bg3);
  border: 1px solid var(--brd2);
  border-radius: var(--r);
  padding: 0 12px 0 36px;
  color: var(--txt);
  font-family: var(--font);
  font-size: 13px;
  outline: none;
  transition: border-color 0.15s;
}
.nav-search input::placeholder { color: var(--txt3); }
.nav-search input:focus { border-color: var(--acc); }
.nav-search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--txt3);
  pointer-events: none;
  width: 15px;
  height: 15px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  color: var(--txt2);
  padding: 6px 12px;
  border-radius: var(--r);
  display: block;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links .current-menu-item a {
  background: var(--bg3);
  color: var(--txt);
}

.theme-toggle {
  width: 38px;
  height: 21px;
  border-radius: 11px;
  background: var(--acc);
  border: none;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.theme-toggle-knob {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  margin-left: auto;
}

/* ============ KATEGORİ BANDI ============ */
.cat-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--brd);
}
.cat-bar-inner {
  display: flex;
  gap: 4px;
  padding: 8px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-bar-inner::-webkit-scrollbar { display: none; }

.cat-pill {
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--brd2);
  color: var(--txt2);
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.15s;
  flex-shrink: 0;
}
.cat-pill:hover,
.cat-pill.is-active {
  background: var(--acc);
  border-color: var(--acc);
  color: #fff;
}

/* ============ ANA LAYOUT ============ */
.site-layout {
  display: flex;
  gap: 0;
  min-height: calc(100vh - var(--nav-h) - 90px);
}

/* ============ SIDEBAR ============ */
.sidebar-wrap {
  width: 220px;
  flex-shrink: 0;
  border-right: 1px solid var(--brd);
  transition: width 0.2s, opacity 0.2s;
  overflow: hidden;
}

.sidebar-wrap.collapsed {
  width: 0;
  opacity: 0;
  pointer-events: none;
}

.sidebar {
  width: 220px;
  padding: 20px 0;
  position: sticky;
  top: calc(var(--nav-h) + 90px);
  max-height: calc(100vh - var(--nav-h) - 90px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.admin-bar .sidebar {
  top: calc(var(--nav-h) + 90px + 32px);
}

.sidebar-section { margin-bottom: 20px; }

.sidebar-heading {
  font-size: 10px;
  font-weight: 600;
  color: var(--txt3);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0 16px 6px;
}

.sidebar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--txt2);
  text-decoration: none;
  transition: all 0.12s;
}
.sidebar-item:hover { background: var(--bg3); color: var(--txt); }
.sidebar-item.is-active { color: var(--acc); background: var(--acc-bg); }

.sidebar-count {
  font-size: 11px;
  background: var(--bg3);
  padding: 1px 7px;
  border-radius: 10px;
  color: var(--txt3);
}

/* Sidebar toggle butonu */
.sidebar-toggle {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--acc);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: background 0.15s;
}
.sidebar-toggle:hover { background: var(--acc-h); }
.sidebar-toggle svg { color: #fff; }

/* ============ MAIN CONTENT ============ */
.main-content {
  flex: 1;
  min-width: 0;
  padding: 28px 28px 60px;
}

/* ============ SECTION HEADER ============ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.section-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--txt);
}
.see-all {
  font-size: 12px;
  color: var(--acc);
}
.see-all:hover { color: var(--acc-h); }

/* ============ VIEW TOGGLE ============ */
.view-toggle {
  display: flex;
  gap: 4px;
  background: var(--bg3);
  border-radius: var(--r);
  padding: 3px;
}
.view-btn {
  width: 30px;
  height: 26px;
  border: none;
  background: transparent;
  border-radius: 5px;
  cursor: pointer;
  color: var(--txt3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.view-btn.is-active { background: var(--bg4); color: var(--txt); }

/* ============ KART GRID ============ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 32px;
}

.program-card {
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  padding: 16px 14px;
  text-decoration: none;
  display: block;
  transition: border-color 0.15s, transform 0.1s;
}
.program-card:hover {
  border-color: var(--acc);
  transform: translateY(-1px);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg3);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-icon img { width: 34px; height: 34px; object-fit: contain; }

.card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-cat {
  font-size: 11px;
  color: var(--txt2);
  margin-bottom: 8px;
}

/* ============ LİSTE GÖRÜNÜMÜ ============ */
.programs-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}

.list-item {
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: var(--r);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: border-color 0.15s;
}
.list-item:hover { border-color: var(--acc); }

.list-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.list-icon img { width: 26px; height: 26px; object-fit: contain; }

.list-info { flex: 1; min-width: 0; }
.list-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--txt);
}
.list-desc {
  font-size: 12px;
  color: var(--txt2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-meta {
  font-size: 11px;
  color: var(--txt3);
  text-align: right;
  flex-shrink: 0;
  line-height: 1.8;
}

/* ============ ROZETLER ============ */
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 5px;
}
.badge-free    { background: #064e3b; color: #6ee7b7; }
.badge-paid    { background: #451a03; color: #fcd34d; }
.badge-new     { background: #2e1065; color: #c4b5fd; }
.badge-update  { background: #1e3a8a; color: #93c5fd; }
.badge-popular { background: #500724; color: #fbcfe8; }

/* ============ BUTONLAR ============ */
.btn-primary {
  background: var(--acc);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 10px 22px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--acc-h); color: #fff; }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-outline {
  background: transparent;
  color: var(--txt2);
  border: 1px solid var(--brd2);
  border-radius: var(--r);
  padding: 10px 18px;
  font-family: var(--font);
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.15s;
}
.btn-outline:hover { border-color: var(--acc); color: var(--acc); }

.btn-dl {
  background: var(--acc);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-dl:hover { background: var(--acc-h); color: #fff; }

/* ============ PROGRAM DETAY ============ */
.single-header {
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.single-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--bg3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.single-icon img { width: 60px; height: 60px; object-fit: contain; }

.single-meta { flex: 1; min-width: 0; }
.single-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 6px;
}
.single-title span {
  font-size: 13px;
  font-weight: 400;
  color: var(--txt3);
  margin-left: 8px;
}
.single-tagline {
  font-size: 14px;
  color: var(--txt2);
  margin-bottom: 14px;
  line-height: 1.6;
}
.single-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.single-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}
.info-card {
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: var(--r);
  padding: 14px 16px;
}
.info-label {
  font-size: 10px;
  color: var(--txt3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.info-value { font-size: 14px; font-weight: 600; color: var(--txt); }

/* Program açıklama */
.program-body {
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  padding: 28px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--txt2);
  margin-bottom: 24px;
}
.program-body h2, .program-body h3 {
  color: var(--txt);
  margin: 20px 0 10px;
  font-weight: 600;
}
.program-body h2 { font-size: 18px; }
.program-body h3 { font-size: 15px; }
.program-body p { margin-bottom: 12px; }
.program-body ul, .program-body ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.program-body li { margin-bottom: 4px; }
.program-body strong { color: var(--txt); font-weight: 600; }
.program-body hr { border: none; border-top: 1px solid var(--brd); margin: 20px 0; }

/* ============ HERO GRID ============ */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 28px;
  border-radius: var(--r2);
  overflow: hidden;
  height: 340px;
}

.hero-item {
  position: relative;
  background: var(--bg3) center/cover no-repeat;
  text-decoration: none;
  overflow: hidden;
  display: block;
}
.hero-item:hover .hero-overlay { background: rgba(0,0,0,0.55); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 40%, rgba(0,0,0,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  transition: background 0.2s;
}

.hero-cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--acc2);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.hero-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}

.hero-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 14px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--acc);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--r);
  width: fit-content;
  transition: background 0.15s;
}
.hero-item:hover .hero-btn { background: var(--acc2); }

.hero-grid-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.hero-grid-item {
  position: relative;
  background: var(--bg3) center/cover no-repeat;
  text-decoration: none;
  overflow: hidden;
  display: block;
}
.hero-grid-item:hover .hero-grid-overlay { background: rgba(0,0,0,0.55); }

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 30%, rgba(0,0,0,0.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px 14px;
  transition: background 0.2s;
}

.hero-grid-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-grid-cat {
  font-size: 10px;
  color: var(--acc2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (max-width: 700px) {
  .hero-grid { grid-template-columns: 1fr; height: auto; }
  .hero-item { height: 260px; }
  .hero-grid-right { grid-template-columns: 1fr 1fr; }
  .hero-grid-item { height: 140px; }
}

/* ============ SON EKLENENLER LİSTESİ ============ */
.programs-latest {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.latest-item {
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  transition: border-color 0.15s;
}
.latest-item:hover { border-color: var(--acc); }

.latest-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--r);
  background: var(--bg3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.latest-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r); }

.latest-info { flex: 1; min-width: 0; }

.latest-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.latest-version {
  font-size: 11px;
  font-weight: 400;
  color: var(--txt3);
}

.latest-desc {
  font-size: 13px;
  color: var(--txt2);
  margin-bottom: 8px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.latest-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.latest-dl, .latest-date {
  font-size: 11px;
  color: var(--txt3);
}

/* ============ SAYFALAMA ============ */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 24px 0 0;
  flex-wrap: wrap;
}
.page-numbers {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  border: 1px solid var(--brd);
  font-size: 13px;
  color: var(--txt2);
  text-decoration: none;
  transition: all 0.15s;
}
.page-numbers:hover,
.page-numbers.current {
  background: var(--acc);
  color: #fff;
  border-color: var(--acc);
}

/* ============ FOOTER ============ */
#site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--brd);
  padding: 28px 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--acc);
}
.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.footer-links a { font-size: 13px; color: var(--txt2); }
.footer-links a:hover { color: var(--txt); }
.footer-copy { font-size: 12px; color: var(--txt3); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .sidebar-wrap { display: none; }
  .nav-links { display: none; }
  .wrap { padding-left: 16px; padding-right: 16px; }
  .main-content { padding: 20px 16px 48px; }
}

@media (max-width: 600px) {
  .programs-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .single-header { flex-direction: column; }
  .info-grid { grid-template-columns: 1fr 1fr; }
}

/* ============ İKİ KOLON: SON EKLENENLER + NASIL ============ */
.two-col-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.two-col-left,
.two-col-right {
  min-width: 0;
}

/* ---- Nasıl? listesi ---- */
.nasil-liste {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.nasil-item {
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: border-color 0.15s;
}
.nasil-item:hover { border-color: var(--acc); }

.nasil-thumb {
  width: 64px;
  height: 56px;
  border-radius: var(--r);
  background: var(--bg3);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nasil-thumb img { width: 100%; height: 100%; object-fit: cover; }
.nasil-thumb--empty { background: var(--bg3); }

.nasil-info { flex: 1; min-width: 0; }

.nasil-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 4px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nasil-desc {
  font-size: 12px;
  color: var(--txt2);
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nasil-date {
  font-size: 11px;
  color: var(--txt3);
}

.nasil-bos {
  color: var(--txt2);
  font-size: 13px;
  padding: 24px 0;
  text-align: center;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .two-col-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ============ TEK YAZI SAYFASI (single.php) ============ */
.single-post-header {
  margin-bottom: 32px;
}

.single-post-thumb {
  width: 100%;
  border-radius: var(--r2);
  overflow: hidden;
  margin-bottom: 20px;
  max-height: 400px;
}
.single-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-post-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.post-cat-badge {
  background: var(--bg3);
  color: var(--acc);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.post-cat-badge:hover { background: var(--acc); color: #fff; }

.post-date {
  font-size: 12px;
  color: var(--txt3);
}

.single-post-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--txt);
  line-height: 1.35;
  margin: 0 0 12px;
}

.single-post-excerpt {
  font-size: 15px;
  color: var(--txt2);
  line-height: 1.6;
  margin: 0 0 24px;
  border-left: 3px solid var(--acc);
  padding-left: 14px;
}

.post-body {
  font-size: 15px;
  color: var(--txt);
  line-height: 1.8;
}

.post-body h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--txt);
}

.post-body h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--txt);
}

.post-body p { margin: 0 0 16px; }

.post-body ul, .post-body ol {
  padding-left: 22px;
  margin: 0 0 16px;
}

.post-body li { margin-bottom: 6px; }

.post-body img {
  max-width: 100%;
  border-radius: var(--r);
  margin: 16px 0;
}

.post-body a {
  color: var(--acc);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.post-body table th,
.post-body table td {
  padding: 10px 14px;
  border: 1px solid var(--brd);
  text-align: left;
}

.post-body table th {
  background: var(--bg2);
  font-weight: 600;
  color: var(--txt);
}

.post-body table tr:nth-child(even) td {
  background: var(--bg2);
}

.post-body code {
  background: var(--bg3);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-family: monospace;
}

.post-body blockquote {
  border-left: 3px solid var(--acc);
  margin: 20px 0;
  padding: 12px 18px;
  background: var(--bg2);
  border-radius: 0 var(--r) var(--r) 0;
  color: var(--txt2);
  font-style: italic;
}
