/* ═══════════════════════════════════════════════════
   TelNoKimin.com — Light Theme CSS
   Mobile-first, gov-style, clean
═══════════════════════════════════════════════════ */

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

:root {
  --bg:       #f5f6f8;
  --bg2:      #eef0f3;
  --white:    #ffffff;
  --border:   #dde1e9;
  --border2:  #c8cdd8;
  --text:     #1a1d23;
  --sub:      #4b5568;
  --dim:      #8693a8;
  --blue:     #1a56db;
  --blue-bg:  #eff4ff;
  --blue-bd:  #c3d3fa;
  --red:      #e02424;
  --red-bg:   #fdf2f2;
  --red-bd:   #f8c3c3;
  --orange:   #c27803;
  --org-bg:   #fdf6b2;
  --org-bd:   #f6d860;
  --green:    #057a55;
  --grn-bg:   #f0fdf4;
  --grn-bd:   #84e1bc;
  --body:     'Inter', sans-serif;
  --mono:     'JetBrains Mono', monospace;
  --r:        8px;
  --rr:       5px;
  --shadow:   0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow2:  0 4px 12px rgba(0,0,0,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow);
}

/* SVG LOGO */
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo svg { height: 32px; width: auto; }

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 7px 12px;
  flex: 1;
  max-width: 340px;
  margin: 0 12px;
  transition: border-color .2s, box-shadow .2s;
}
.header-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.header-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--mono);
  font-size: 13px;
  width: 100%;
}
.header-search input::placeholder { color: var(--dim); }
.header-search svg { color: var(--dim); flex-shrink: 0; }

.hnav { display: flex; gap: 2px; align-items: center; }
.hnav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--sub);
  padding: 5px 9px;
  border-radius: var(--rr);
  transition: all .15s;
  white-space: nowrap;
}
.hnav a:hover { color: var(--blue); background: var(--blue-bg); text-decoration: none; }

/* ── FOOTER ── */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 28px 16px;
  text-align: center;
  margin-top: 40px;
}
.footer-logo { display: flex; justify-content: center; margin-bottom: 14px; }
.footer-logo svg { height: 28px; }
.footer-links { display: flex; gap: 4px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.footer-links a {
  font-size: 13px;
  color: var(--dim);
  padding: 3px 7px;
  border-radius: 4px;
  transition: color .15s;
}
.footer-links a:hover { color: var(--blue); text-decoration: none; }
.footer-copy { font-size: 12px; color: var(--dim); }

/* ── BREADCRUMB ── */
.bc {
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--dim);
  flex-wrap: wrap;
}
.bc a { color: var(--sub); }
.bc a:hover { color: var(--blue); text-decoration: none; }
.bc-sep { color: var(--border2); }

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2px;
}
.badge-red    { background: var(--red-bg);  color: var(--red);    border: 1px solid var(--red-bd); }
.badge-orange { background: var(--org-bg);  color: var(--orange); border: 1px solid var(--org-bd); }
.badge-green  { background: var(--grn-bg);  color: var(--green);  border: 1px solid var(--grn-bd); }
.badge-blue   { background: var(--blue-bg); color: var(--blue);   border: 1px solid var(--blue-bd); }
.badge-gray   { background: var(--bg2);     color: var(--sub);    border: 1px solid var(--border); }
.badge-purple { background: #f3f0ff;        color: #6d28d9;       border: 1px solid #c4b5fd; }

/* ── CARD ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.card-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── SECTION LABEL ── */
.sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sec-label::after { content: ""; flex: 1; height: 1px; background: var(--border); }

/* ── NOTICE ── */
.notice-danger {
  background: var(--red-bg);
  border: 1px solid var(--red-bd);
  border-left: 3px solid var(--red);
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--red);
  margin-bottom: 12px;
  font-weight: 500;
}

/* ── FORM MESSAGES ── */
.form-msg {
  padding: 10px 14px;
  border-radius: var(--rr);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  display: none;
}
.form-msg.ok  { background: var(--grn-bg); border: 1px solid var(--grn-bd); color: var(--green); }
.form-msg.err { background: var(--red-bg); border: 1px solid var(--red-bd); color: var(--red); }

/* ── ADBLOCK ── */
.adblock-bar {
  background: #fffbeb;
  border-bottom: 1px solid var(--org-bd);
  padding: 9px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--orange);
}
.adblock-bar button {
  background: none;
  border: 1px solid var(--org-bd);
  color: var(--orange);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 12px;
  cursor: pointer;
  font-family: var(--body);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   ANASAYFA
══════════════════════════════════════════════════ */
.hero-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 16px 36px;
  text-align: center;
}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-bg);
  border: 1px solid var(--blue-bd);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.hero-title em { color: var(--blue); font-style: normal; }
.hero-sub {
  font-size: 15px;
  color: var(--sub);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.hero-search {
  display: flex;
  max-width: 500px;
  margin: 0 auto 20px;
  border: 1.5px solid var(--border2);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow2);
  transition: border-color .2s, box-shadow .2s;
}
.hero-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--text);
  background: transparent;
}
.hero-search input::placeholder { color: var(--dim); font-size: 13px; }
.hero-search button {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--body);
  transition: background .15s;
  white-space: nowrap;
}
.hero-search button:hover { background: #1647c5; }
.hero-hint { font-size: 12px; color: var(--dim); }
.hero-hint a { color: var(--blue); }

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  background: var(--white);
}
.stat-item {
  flex: 1;
  padding: 14px 10px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--mono);
  line-height: 1;
  margin-bottom: 3px;
}
.stat-lbl { font-size: 11px; color: var(--dim); font-weight: 500; }

/* ── HOME GRID ── */
.home-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}
.home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media(min-width: 900px) {
  .home-grid {
    grid-template-columns: 1fr 320px;
  }
}

/* ── NUMBER LIST ── */
.num-list { display: flex; flex-direction: column; gap: 6px; }
.num-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
  text-decoration: none;
  color: inherit;
}
.num-row:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px var(--blue-bg);
  text-decoration: none;
}
.num-row-left { display: flex; align-items: center; gap: 10px; }
.num-score-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-red    { background: var(--red); }
.dot-orange { background: var(--orange); }
.dot-green  { background: var(--green); }
.dot-gray   { background: var(--border2); }
.num-fmt {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.num-city { font-size: 12px; color: var(--dim); }
.num-row-right { display: flex; align-items: center; gap: 8px; }
.num-votes { font-size: 12px; color: var(--dim); }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--rr);
  font-size: 13px;
  font-weight: 500;
  color: var(--sub);
  cursor: pointer;
  font-family: var(--body);
  transition: all .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-bg); }
.page-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.page-btn:disabled { opacity: .4; cursor: default; }

/* ── TODAY SECTION ── */
.today-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.today-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  background: var(--red-bg);
  border: 1px solid var(--red-bd);
  padding: 2px 8px;
  border-radius: 20px;
}
.today-live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* ── SIDEBAR WIDGETS ── */
.side-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.side-num-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.side-num-row:last-child { border-bottom: none; }
.side-num-row:hover .side-num-fmt { color: var(--blue); }
.side-num-fmt {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  transition: color .15s;
}
.side-num-score { font-size: 12px; }

/* ── COMMENT FEED ── */
.comment-feed-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.comment-feed-item:last-child { border-bottom: none; }
.cfi-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 4px;
}
.cfi-body {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cfi-date { font-size: 11px; color: var(--dim); margin-top: 4px; }

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.filter-btn {
  padding: 6px 12px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--sub);
  cursor: pointer;
  font-family: var(--body);
  transition: all .15s;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── BLOG CARDS ── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media(min-width: 600px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.blog-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px var(--blue-bg);
}
.blog-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
}
.blog-card-desc { font-size: 13px; color: var(--sub); line-height: 1.5; }
.blog-card-date { font-size: 11px; color: var(--dim); margin-top: 8px; }

/* ══════════════════════════════════════════════════
   NUMARA SAYFASI
══════════════════════════════════════════════════ */
.num-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media(min-width: 900px) {
  .num-wrap { grid-template-columns: 1fr 280px; }
}

.num-hero {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.num-hero-top {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px;
}
.num-display {
  font-family: var(--mono);
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 12px;
  line-height: 1;
}
.num-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.score-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.score-big {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--mono);
}
.score-meta { flex: 1; }
.score-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.score-bar-track { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; margin-bottom: 5px; }
.score-bar-fill  { height: 100%; border-radius: 3px; transition: width .6s ease; }
.score-hint { font-size: 12px; color: var(--dim); }

.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.info-cell {
  background: var(--white);
  padding: 14px 16px;
  border-right: 1px solid var(--border);
}
.info-cell:last-child { border-right: none; }
.info-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .6px; color: var(--dim); margin-bottom: 4px; }
.info-value { font-size: 15px; font-weight: 600; color: var(--text); font-family: var(--mono); }
@media(max-width: 400px) { .info-grid { grid-template-columns: 1fr 1fr; } }

.vote-bars { display: flex; flex-direction: column; gap: 10px; }
.vrow { display: flex; align-items: center; gap: 10px; }
.vlabel { font-size: 13px; color: var(--sub); width: 90px; flex-shrink: 0; font-weight: 500; }
.vtrack { flex: 1; height: 8px; background: var(--bg2); border-radius: 4px; overflow: hidden; }
.vfill  { height: 100%; border-radius: 4px; }
.vpct   { font-size: 12px; font-weight: 700; width: 34px; text-align: right; }
.vcount { font-size: 11px; color: var(--dim); width: 36px; }

/* COMMENTS */
.comment-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  margin-bottom: 8px;
  transition: border-color .15s;
}
.comment-item:hover { border-color: var(--border2); }
.comment-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.comment-meta { display: flex; align-items: center; gap: 8px; }
.comment-avatar {
  width: 32px; height: 32px;
  border-radius: var(--rr);
  background: var(--blue-bg);
  border: 1px solid var(--blue-bd);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.comment-nick  { font-size: 13px; font-weight: 600; color: var(--text); }
.comment-date  { font-size: 11px; color: var(--dim); margin-top: 1px; }
.comment-body  { font-size: 14px; line-height: 1.65; color: var(--sub); margin-bottom: 10px; }
.helpful-row   { display: flex; gap: 5px; }
.hbtn {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rr);
  color: var(--dim);
  font-size: 12px;
  padding: 3px 9px;
  cursor: pointer;
  font-family: var(--body);
  transition: all .15s;
}
.hbtn:hover { background: var(--blue-bg); color: var(--blue); border-color: var(--blue-bd); }

/* YORUM FORMU */
.form-section { display: flex; flex-direction: column; gap: 12px; }
.form-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--dim);
  margin-bottom: 6px;
  display: block;
}
.tag-row { display: flex; gap: 6px; flex-wrap: wrap; }
.tbtn {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rr);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sub);
  cursor: pointer;
  font-family: var(--body);
  transition: all .15s;
}
.tbtn:hover           { border-color: var(--blue); color: var(--blue); }
.tbtn.sel-red         { background: var(--red-bg); border-color: var(--red-bd); color: var(--red); }
.tbtn.sel             { background: var(--blue-bg); border-color: var(--blue-bd); color: var(--blue); }
.form-input, .form-textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.08);
}
.form-textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.anon-note {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rr);
  padding: 9px 12px;
  font-size: 13px;
  color: var(--dim);
}
.submit-btn {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 13px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--body);
  transition: background .15s;
}
.submit-btn:hover { background: #1647c5; }

/* QUICK VOTE */
.quick-btns { display: flex; flex-direction: column; gap: 6px; }
.qbtn {
  width: 100%;
  border: 1px solid;
  border-radius: var(--rr);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--body);
  transition: opacity .15s;
  text-align: left;
}
.qbtn:hover { opacity: .8; }
.qbtn-red    { background: var(--red-bg);  color: var(--red);    border-color: var(--red-bd); }
.qbtn-orange { background: var(--org-bg);  color: var(--orange); border-color: var(--org-bd); }
.qbtn-green  { background: var(--grn-bg);  color: var(--green);  border-color: var(--grn-bd); }

/* SIDEBAR */
.num-sidebar { display: flex; flex-direction: column; gap: 12px; }
.sc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  box-shadow: var(--shadow);
}
.srow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.srow:last-child { border-bottom: none; }
.srow-label { color: var(--sub); font-weight: 500; }
.srow-val   { font-weight: 600; color: var(--text); font-family: var(--mono); }
.sim-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: color .15s;
}
.sim-row:last-child { border-bottom: none; }
.sim-row:hover .sim-num { color: var(--blue); }
.sim-num { font-family: var(--mono); font-size: 13px; font-weight: 500; }
.sim-meta { font-size: 11px; color: var(--dim); }

/* ══════════════════════════════════════════════════
   STATIC PAGES (blog, hakkimizda vb)
══════════════════════════════════════════════════ */
.page-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 16px 60px;
}
.page-h1 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.5px;
  margin-bottom: 6px;
}
.page-meta {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.page-body { font-size: 15px; line-height: 1.8; color: var(--sub); }
.page-body h2 { font-size: 18px; font-weight: 600; color: var(--text); margin: 24px 0 10px; }
.page-body p  { margin-bottom: 14px; }
.page-body ul, .page-body ol { padding-left: 20px; margin-bottom: 14px; }
.page-body li { margin-bottom: 6px; }
.page-body a  { color: var(--blue); }
.page-body strong { color: var(--text); font-weight: 600; }

.blog-wrap { max-width: 900px; margin: 0 auto; padding: 32px 16px 60px; }
.blog-list { display: flex; flex-direction: column; gap: 8px; }
.blog-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow);
}
.blog-item:hover { border-color: var(--blue); box-shadow: 0 0 0 2px var(--blue-bg); }
.blog-item-date { font-size: 11px; color: var(--dim); white-space: nowrap; padding-top: 2px; min-width: 64px; }
.blog-item-title { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.blog-item-desc  { font-size: 13px; color: var(--sub); line-height: 1.5; }

.post-wrap { max-width: 760px; margin: 0 auto; padding: 32px 16px 60px; }
.post-back {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; color: var(--sub); margin-bottom: 20px; transition: color .15s;
}
.post-back:hover { color: var(--blue); text-decoration: none; }
.post-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.5px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.post-date {
  font-size: 13px; color: var(--dim); margin-bottom: 28px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.post-body { font-size: 15px; line-height: 1.8; color: var(--sub); }
.post-body h2 { font-size: 19px; font-weight: 600; color: var(--text); margin: 28px 0 10px; }
.post-body p  { margin-bottom: 14px; }
.post-body ul, .post-body ol { padding-left: 20px; margin-bottom: 14px; }
.post-body li { margin-bottom: 6px; }
.post-body img { max-width: 100%; border-radius: var(--r); margin: 16px 0; }
.post-body strong { color: var(--text); font-weight: 600; }
.post-body a { color: var(--blue); }

.area-wrap { max-width: 900px; margin: 0 auto; padding: 24px 16px 60px; }
.area-h1 { font-size: 26px; font-weight: 700; color: var(--text); letter-spacing: -.3px; margin-bottom: 4px; }
.area-meta { font-size: 13px; color: var(--dim); margin-bottom: 20px; }
.area-list { display: flex; flex-direction: column; gap: 6px; }
.area-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r);
  cursor: pointer; transition: border-color .15s;
}
.area-row:hover { border-color: var(--blue); }
.area-num { font-family: var(--mono); font-size: 14px; font-weight: 500; }
.area-score { font-size: 12px; font-weight: 600; }

/* ── ILETISIM / FORMS ── */
.alert-ok  { background: var(--grn-bg); border: 1px solid var(--grn-bd); color: var(--green); border-radius: var(--r); padding: 12px 16px; margin-bottom: 16px; font-size: 14px; font-weight: 500; }
.alert-err { background: var(--red-bg); border: 1px solid var(--red-bd); color: var(--red);   border-radius: var(--r); padding: 12px 16px; margin-bottom: 16px; font-size: 14px; font-weight: 500; }

/* ── 404 ── */
.not-found {
  text-align: center;
  padding: 80px 16px;
}
.not-found-code {
  font-size: 80px;
  font-weight: 700;
  color: var(--border2);
  line-height: 1;
  font-family: var(--mono);
  margin-bottom: 12px;
}

/* ── RESPONSIVE HELPERS ── */
@media(max-width: 768px) {
  .header-search { display: none; }
  .hnav a { font-size: 12px; padding: 4px 7px; }
  .num-sidebar { display: none; }
  .stats-bar { max-width: 100%; }
}
@media(max-width: 480px) {
  .hero-title { letter-spacing: -.5px; }
  .hnav .hide-xs { display: none; }
}
