/* ==========================================================================
   İLKE — haberler.css  (News listing)
   ========================================================================== */

.np-hero {
  padding: 56px 0 36px;
  border-bottom: 1px solid var(--paper-edge);
}
.np-hero .shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: flex-end;
}
.np-hero .eyebrow {
  font-family: var(--f-body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.np-hero .eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--accent); display: inline-block; }
.np-hero h1 {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: clamp(48px, 6.6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.np-hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.np-hero p {
  font-family: var(--f-disp); font-style: italic;
  font-size: 18px; line-height: 1.5; color: var(--ink-3);
  margin-top: 18px;
  max-width: 56ch;
}
.np-hero-stats { display: flex; gap: 28px; }
.np-hero-stats > div {
  display: flex; flex-direction: column; gap: 4px;
  border-left: 1px solid var(--paper-edge); padding-left: 20px;
  font-family: var(--f-body); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}
.np-hero-stats > div:first-child { border-left: 0; padding-left: 0; }
.np-hero-stats b {
  font-family: var(--f-disp); font-style: italic; font-weight: 500;
  font-size: 36px; letter-spacing: -0.025em; color: var(--ink);
}
@media (max-width: 880px) { .np-hero .shell { grid-template-columns: 1fr; gap: 24px; } }

/* compact sticky toolbar */
.np-toolbar {
  position: sticky; top: 76px; z-index: 20;
  background: rgba(245,241,234,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--paper-edge);
  padding: 14px 0;
}
.np-toolbar .shell {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.np-filter-label {
  font-family: var(--f-body); font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
}
.np-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px;
  border-radius: 99px;
  border: 1px solid var(--paper-edge);
  background: var(--paper);
  font-family: var(--f-body); font-weight: 500; font-size: 12.5px;
  color: var(--ink-2); cursor: pointer;
  transition: all 0.14s ease;
}
.np-chip:hover { border-color: var(--ink); color: var(--ink); }
.np-chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.np-chip i { width: 6px; height: 6px; border-radius: 99px; display: inline-block; }
.np-search {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 14px; height: 36px;
  border: 1px solid var(--paper-edge);
  border-radius: 99px;
  background: var(--paper);
  margin-left: auto;
  width: 260px;
}
.np-search svg { width: 14px; height: 14px; color: var(--ink-3); }
.np-search input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font-family: var(--f-body); font-size: 13px; color: var(--ink);
}

/* HERO featured news (kategorik + büyük) */
.np-featured { padding: 48px 0; }
.np-featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
}
@media (max-width: 980px) { .np-featured-grid { grid-template-columns: 1fr; } }
.np-big {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  padding: 36px;
  background: linear-gradient(135deg, #9E2A20 0%, #C8341E 100%);
  color: #F5F1EA;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.32s cubic-bezier(.2,.8,.2,1);
}
.np-big:hover { transform: translateY(-4px); }
.np-big::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.np-big::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='6'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.10 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none; mix-blend-mode: multiply;
}
.np-big-pet {
  position: absolute; right: -120px; top: -160px;
  width: 480px; height: 480px;
  color: #F2D9D4; opacity: 0.14;
  pointer-events: none; z-index: -1;
}
.np-big .np-big-body { position: relative; z-index: 1; }
.np-big .np-tags { display: flex; gap: 8px; margin-bottom: 16px; }
.np-big .np-tag {
  font-family: var(--f-body); font-weight: 700;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(245,241,234,0.20);
  color: #F5F1EA;
  backdrop-filter: blur(4px);
}
.np-big .np-tag.live { background: #F5F1EA; color: #9E2A20; display: inline-flex; align-items: center; gap: 8px; }
.np-big .np-tag.live i { width: 6px; height: 6px; border-radius: 99px; background: #9E2A20; animation: blink 1.4s ease-in-out infinite; }
.np-big h2 {
  font-family: var(--f-disp); font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.05; letter-spacing: -0.025em;
  color: #F5F1EA; margin: 0 0 14px;
  text-wrap: balance;
}
.np-big h2 em { font-style: italic; color: #F2D9D4; }
.np-big p {
  font-family: var(--f-disp); font-style: italic;
  font-size: 15.5px; line-height: 1.45;
  color: rgba(245,241,234,0.84);
  max-width: 56ch; margin-bottom: 14px;
}
.np-big .np-date {
  font-family: var(--f-body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,241,234,0.68);
}

.np-side { display: flex; flex-direction: column; gap: 14px; }
.np-mid {
  background: var(--bg-card);
  border: 1px solid var(--paper-edge);
  border-radius: 12px;
  padding: 22px 24px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  flex: 1;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease;
}
.np-mid:hover { transform: translateY(-3px); border-color: var(--np-acc, var(--ink)); }
.np-mid::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--np-acc, var(--ink));
}
.np-mid .np-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-body); font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--np-acc, var(--ink));
  margin-bottom: 8px;
}
.np-mid .np-tag i { width: 5px; height: 5px; border-radius: 99px; background: currentColor; }
.np-mid h3 {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 20px; line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink); margin: 0 0 10px;
  text-wrap: balance;
}
.np-mid h3 em { font-style: italic; color: var(--np-acc, var(--accent)); }
.np-mid p {
  font-family: var(--f-body); font-size: 13px;
  line-height: 1.55; color: var(--ink-3);
  margin-bottom: 12px;
}
.np-mid .np-date {
  font-family: var(--f-body); font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
  margin-top: auto;
}

/* layout with main list + sidebar */
.np-layout { padding: 0 0 64px; }
.np-layout .shell {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .np-layout .shell { grid-template-columns: 1fr; gap: 32px; }
  .np-side-rail { order: -1; }
}

.np-list-head {
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 24px;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px;
}
.np-list-head h3 {
  font-family: var(--f-disp); font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.015em;
}
.np-list-head h3 em { font-style: italic; color: var(--accent); font-weight: 400; }
.np-list-head .count {
  font-family: var(--f-body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
}
.np-list-head .count b { color: var(--ink); font-weight: 700; font-size: 13px; }

.np-month {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 12px 0 10px;
  margin: 24px 0 8px;
  border-bottom: 1px solid var(--paper-edge);
}
.np-month:first-of-type { margin-top: 0; }
.np-month h4 {
  font-family: var(--f-disp); font-weight: 400; font-style: italic;
  font-size: 24px; letter-spacing: -0.025em; line-height: 1;
}
.np-month .ct {
  font-family: var(--f-body); font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
}

.np-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 28px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--paper-edge);
  text-decoration: none;
  color: inherit;
  align-items: start;
  cursor: pointer;
  transition: padding 0.32s cubic-bezier(.2,.8,.2,1), background 0.24s ease;
}
.np-row:hover { padding: 22px 16px; background: var(--paper-2); border-radius: 8px; border-bottom-color: transparent; }
.np-row .np-row-thumb {
  width: 140px;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 12px;
  isolation: isolate;
  background: var(--nr-bg, var(--paper-2));
  flex-shrink: 0;
}
.np-row .np-row-thumb::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.3 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply; pointer-events: none;
}
.np-row .np-row-thumb .glyph {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-disp); font-weight: 300; font-style: italic;
  font-size: 64px;
  color: var(--nr-acc, var(--ink));
  opacity: 0.7;
  letter-spacing: -0.04em;
}
.np-row .np-row-thumb .np-tag {
  position: relative; z-index: 1;
  font-family: var(--f-body); font-weight: 700;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 3px 7px;
  background: var(--nr-acc, var(--ink));
  color: #fff;
}
.np-row-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.np-row-body .np-meta {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--f-body); font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
}
.np-row-body .np-meta .cat { color: var(--nr-acc, var(--ink)); }
.np-row-body .np-meta .dot { width: 3px; height: 3px; border-radius: 99px; background: var(--ink-3); }
.np-row-body h4 {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 22px; line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink); margin: 0;
  text-wrap: balance;
}
.np-row:hover h4 { color: var(--nr-acc, var(--accent)); }
.np-row-body h4 em { font-style: italic; color: var(--nr-acc, var(--accent)); }
.np-row-body p {
  font-family: var(--f-body); font-size: 13.5px;
  line-height: 1.55; color: var(--ink-3);
  max-width: 64ch;
}
.np-row-cta { align-self: center; flex-shrink: 0; }
.np-row-cta span {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-body); font-weight: 600; font-size: 11.5px;
  color: var(--ink-2);
  border-bottom: 1.5px solid var(--ink-2);
  padding-bottom: 2px;
  letter-spacing: 0.04em;
}
.np-row:hover .np-row-cta span { color: var(--nr-acc, var(--accent)); border-color: var(--nr-acc, var(--accent)); }
.np-row-cta svg { width: 12px; height: 12px; }

@media (max-width: 720px) {
  .np-row { grid-template-columns: 96px 1fr; gap: 18px; padding: 16px 4px; }
  .np-row .np-row-thumb { width: 96px; }
  .np-row-cta { grid-column: 2; margin-top: 4px; }
  .np-row-body h4 { font-size: 17px; }
}

/* sidebar */
.np-side-rail { position: sticky; top: calc(76px + 80px); display: flex; flex-direction: column; gap: 22px; }
.np-rail-card {
  background: var(--bg-card);
  border: 1px solid var(--paper-edge);
  border-radius: 14px;
  padding: 22px;
}
.np-rail-card h5 {
  font-family: var(--f-body); font-weight: 700;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--paper-edge);
}
.np-popular { display: flex; flex-direction: column; }
.np-popular a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--paper-edge);
  text-decoration: none;
  align-items: baseline;
  cursor: pointer;
}
.np-popular a:last-child { border-bottom: 0; }
.np-popular a .num {
  font-family: var(--f-disp); font-style: italic; font-weight: 400;
  font-size: 26px; letter-spacing: -0.025em;
  color: var(--ink-3);
  line-height: 1;
}
.np-popular a h6 {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 14.5px; line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.np-popular a:hover h6 { color: var(--accent); }
.np-popular a .meta {
  font-family: var(--f-body); font-size: 10.5px;
  letter-spacing: 0.06em; color: var(--ink-3);
  margin-top: 4px;
}

.np-tags-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.np-tags-cloud a {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  background: var(--paper-2);
  border-radius: 99px;
  font-family: var(--f-body); font-weight: 500; font-size: 12px;
  color: var(--ink-2);
  text-decoration: none;
  transition: all 0.14s ease;
}
.np-tags-cloud a:hover { background: var(--ink); color: var(--paper); }

.np-bull {
  background: #14110D;
  color: #F5F1EA;
  border-radius: 14px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.np-bull::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='6'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 0.9 0 0 0 0 0.7 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen; pointer-events: none;
}
.np-bull h5 {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 20px; line-height: 1.1;
  letter-spacing: -0.015em;
  color: #F5F1EA;
  margin: 0 0 8px;
}
.np-bull h5 em { color: var(--gold-soft); font-style: italic; }
.np-bull p {
  font-family: var(--f-disp); font-style: italic;
  font-size: 13.5px; line-height: 1.45;
  color: rgba(245,241,234,0.7);
  margin-bottom: 16px;
}
.np-bull form { display: flex; gap: 6px; }
.np-bull input {
  flex: 1; background: rgba(245,241,234,0.06);
  border: 1px solid rgba(245,241,234,0.16);
  padding: 0 12px; height: 36px;
  border-radius: 99px;
  font-family: var(--f-body); font-size: 12.5px;
  color: #F5F1EA; outline: none;
}
.np-bull input::placeholder { color: rgba(245,241,234,0.4); }
.np-bull button {
  background: var(--gold); color: #1A1A1A;
  border: 0; cursor: pointer;
  padding: 0 16px; height: 36px;
  border-radius: 99px;
  font-family: var(--f-body); font-weight: 700; font-size: 11.5px;
  white-space: nowrap;
}
.np-bull button:hover { background: var(--gold-soft); }
