/* ============================================================
   HABER BÜLTENİ SAYFASI
============================================================ */
body.page-news {
  background: var(--bg);
  overflow-x: hidden;
}

.asmr-bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.static-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
}

.news-page {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
}

.news-hero .news-title,
.news-hero .news-lede {
  text-shadow: 0 2px 20px rgba(5, 6, 10, 0.9), 0 1px 4px rgba(5, 6, 10, 0.95);
}

.news-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 6vw 3rem;
  text-align: center;
}
.news-hero .section-label { display: inline-block; margin-bottom: 1rem; }
.news-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--heading);
  line-height: 1.05;
}
.news-lede {
  margin-top: 1.2rem;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.6;
}

.news-list {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 6vw 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.news-card {
  position: relative;
  background: rgba(18, 21, 28, 0.45);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(0, 229, 255, 0.32);
  border-radius: 14px;
  padding: 2rem;
  box-shadow:
    0 0 24px rgba(0, 229, 255, 0.16),
    0 20px 45px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.news-card:hover {
  border-color: rgba(0, 229, 255, 0.55);
  box-shadow:
    0 0 40px rgba(0, 229, 255, 0.28),
    0 20px 45px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .news-list { grid-template-columns: 1fr; }
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.news-tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.35);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.news-tag-update {
  color: var(--amber);
  background: rgba(255, 183, 3, 0.1);
  border-color: rgba(255, 183, 3, 0.35);
}
.news-card-meta time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}
.news-card h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--heading);
  line-height: 1.2;
}
.news-card p {
  margin-top: 0.8rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}
.news-card-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(0, 229, 255, 0.35);
  padding-bottom: 0.2rem;
  transition: border-color 0.25s ease, text-shadow 0.25s ease;
}
.news-card-link:hover {
  border-color: var(--accent);
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}

.news-empty-note {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 6vw 6rem;
  text-align: center;
}
.news-empty-note p {
  color: var(--text-dim);
  font-size: 0.88rem;
}

@media (max-width: 640px) {
  .news-card { padding: 1.4rem; }
}
