/* ── NEWS / LATEST ANALYSIS ── */

.news-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.news-hero {
  background: #1E293B;
  color: #F8FAFC;
  padding: 24px 0 32px;
}

.news-breadcrumb {
  font-size: 12px;
  color: rgba(248,250,252,0.5);
  margin-bottom: 16px;
}
.news-breadcrumb a { color: rgba(248,250,252,0.5); text-decoration: none; }
.news-breadcrumb a:hover { color: #F8FAFC; }
.news-breadcrumb span { margin: 0 6px; }

.news-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 8px;
}

.news-hero-sub {
  font-size: 14px;
  color: rgba(248,250,252,0.6);
  max-width: 680px;
}

/* ── FILTER ROW ── */
.news-filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}
.news-filter-btn {
  background: none;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
  cursor: pointer;
  transition: all 0.15s;
}
.news-filter-btn:hover { border-color: #E85D3A; color: #1E293B; }
.news-filter-btn.active { background: #1E293B; border-color: #1E293B; color: #fff; }

.news-empty {
  padding: 60px 0;
  text-align: center;
  color: #94A3B8;
  font-size: 14px;
}

/* ── GRID OF CARDS ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 60px;
}

.news-card {
  display: block;
  text-decoration: none;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}
.news-card:hover { border-color: #E85D3A; transform: translateY(-2px); }

.news-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: #F1F5F9;
  overflow: hidden;
}
.news-card-thumb img { width: 100%; height: 100%; object-fit: cover; }

.news-card-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #E85D3A;
  margin: 14px 16px 6px;
}

.news-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1E293B;
  margin: 0 16px 8px;
  line-height: 1.4;
}

.news-card-excerpt {
  font-size: 12.5px;
  color: #64748B;
  line-height: 1.6;
  margin: 0 16px 12px;
}

.news-card-date {
  font-size: 11px;
  color: #94A3B8;
  margin: 0 16px 16px;
}

/* ── SINGLE POST ── */
.news-hero-post { padding-bottom: 40px; }

.post-cat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #E85D3A;
  background: rgba(232,93,58,0.15);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.news-hero-post h1 {
  font-size: 32px;
  line-height: 1.25;
}

.post-meta {
  font-size: 13px;
  color: rgba(248,250,252,0.55);
  margin-top: 10px;
}

.news-post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  padding: 40px 0 60px;
}

.post-cover {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 28px;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #F1F5F9;
}

.post-content {
  font-size: 15px;
  color: #334155;
  line-height: 1.75;
}
.post-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1E293B;
  margin: 32px 0 12px;
}
.post-content p { margin: 0 0 16px; }
.post-content a { color: #E85D3A; text-decoration: underline; }
.post-content ul, .post-content ol { margin: 0 0 16px; padding-left: 22px; }

.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #E2E8F0;
}
.post-tag {
  font-size: 11px;
  color: #64748B;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  padding: 4px 10px;
}

.post-sidebar { padding-top: 4px; }
.sidebar-block {
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
.sidebar-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94A3B8;
  margin-bottom: 10px;
}
.sidebar-link {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1E293B;
  text-decoration: none;
  padding: 6px 0;
}
.sidebar-link:hover { color: #E85D3A; }
.sidebar-cta {
  display: block;
  text-align: center;
  background: #E85D3A;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-post-layout { grid-template-columns: 1fr; gap: 24px; }
  .news-hero h1, .news-hero-post h1 { font-size: 26px; }
}

@media (max-width: 480px) {
  .news-grid { grid-template-columns: 1fr; }
}
