/* ===== NEWS PAGE — Warm Redesign ===== */

.news-page { min-height: 60vh; }

/* ── HERO ── */
.news-hero {
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-bottom: 2px solid var(--sun-mid);
}
.news-hero-inner { position: relative; z-index: 1; }
.news-page-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 12px 0 16px;
}
.news-page-title span {
  color: var(--sun);
  background: linear-gradient(135deg, #ff922b, #ffa94d);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.news-page-sub {
  font-size: 1rem; color: var(--ink-60);
  font-weight: 600; max-width: 480px; line-height: 1.65;
}

/* blobs */
.news-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.news-blob--1 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #ffe0b2 0%, transparent 70%);
  top: -100px; right: -60px; opacity: .55;
}
.news-blob--2 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, #e3f2fd 0%, transparent 70%);
  bottom: -60px; left: 30%; opacity: .5;
}

/* ── BODY ── */
.news-body { padding: 56px 0 80px; }

/* ── GRID ── */
.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── CARD ── */
.ncard {
  background: var(--card-bg);
  border: 2px solid var(--sun-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .28s var(--ease), box-shadow .28s, border-color .2s;
}
.ncard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 146, 43, .14);
  border-color: var(--sun);
}

.ncard-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.ncard-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease-soft);
  filter: saturate(.88);
}
.ncard:hover .ncard-image img { transform: scale(1.06); filter: saturate(1); }

.ncard-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--sun);
  color: var(--white);
  font-weight: 800; font-size: .72rem;
  padding: 5px 14px; border-radius: 40px;
  letter-spacing: .03em;
}

.ncard-body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; flex: 1; gap: 10px;
}
.ncard-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: .74rem; color: var(--ink-60); font-weight: 700;
}
.ncard-views { color: var(--sky); }
.ncard-title {
  font-weight: 900; font-size: 1.05rem; color: var(--ink);
  line-height: 1.3; letter-spacing: -.01em;
}
.ncard-desc {
  font-size: .87rem; color: var(--ink-60); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  flex: 1;
}
.ncard-cta {
  font-weight: 800; font-size: .82rem; color: var(--sun);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
}
.ncard-arrow { transition: transform .2s var(--ease); }
.ncard:hover .ncard-arrow { transform: translateX(5px); }

/* ── FEATURED (first card) ── */
.ncard--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.ncard--featured .ncard-image {
  width: 52%;
  aspect-ratio: auto;
  flex-shrink: 0;
}
.ncard--featured .ncard-body {
  padding: 36px 36px 36px 36px;
  justify-content: center; gap: 14px;
}
.ncard--featured .ncard-title {
  font-size: 1.55rem;
  letter-spacing: -.02em;
}
.ncard--featured .ncard-desc {
  -webkit-line-clamp: 4;
}

/* ── EMPTY STATE ── */
.news-empty {
  grid-column: 1/-1;
  background: var(--card-bg);
  border: 2px solid var(--sun-mid);
  border-radius: var(--radius-lg);
  padding: 72px 32px;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.news-empty-icon { font-size: 3.5rem; }
.news-empty p { font-size: 1rem; color: var(--ink-60); font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .news-list { grid-template-columns: repeat(2, 1fr); }
  .ncard--featured { flex-direction: column; }
  .ncard--featured .ncard-image { width: 100%; aspect-ratio: 16/9; }
  .ncard--featured .ncard-body { padding: 24px; }
}
@media (max-width: 580px) {
  .news-list { grid-template-columns: 1fr; }
  .news-page-title { font-size: 2.4rem; }
}
