/* ===== NEWS LISTING PAGE ===== */
.page-header {
  padding: 140px 0 60px;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, rgba(37,99,235,0.04) 50%, transparent 70%);
  z-index: 0;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, rgba(16,185,129,0.03) 50%, transparent 70%);
  z-index: 0;
}
.page-header .container { position: relative; z-index: 1; }
.page-header-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 16px;
}
.page-header-overline::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}
.page-header-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.page-header-sub {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
}

.news-listing {
  padding: 64px 0 100px;
}
.news-listing .news-grid {
  margin-bottom: 48px;
}
.news-listing .news-grid-4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== ARTICLE DETAIL PAGE ===== */
.article-hero {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10,22,40,0.75));
}
.article-hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 0 48px;
  width: 100%;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.article-tag {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--white);
  color: var(--blue-600);
}
.article-date {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  max-width: 720px;
}

.article-body {
  padding: 64px 0 100px;
}
.article-content {
  max-width: 720px;
  margin: 0 auto;
}
.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gray-900);
  margin: 40px 0 16px;
  line-height: 1.3;
}
.article-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 32px 0 12px;
}
.article-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.article-content ul,
.article-content ol {
  margin: 0 0 20px 24px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-600);
}
.article-content li {
  margin-bottom: 8px;
}
.article-content blockquote {
  padding: 20px 24px;
  background: var(--blue-50);
  border-left: 3px solid var(--blue-500);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue-800);
  line-height: 1.7;
  margin: 24px 0;
}
.article-content strong {
  font-weight: 600;
  color: var(--gray-800);
}

/* Back link */
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-500);
  margin-bottom: 32px;
  transition: gap 0.2s;
}
.article-back:hover { gap: 12px; }
.article-back svg { transform: rotate(180deg); }

/* Related articles */
.related-section {
  padding: 80px 0;
  background: var(--gray-50);
}
.related-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 32px;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--gray-400);
}
.breadcrumb a {
  color: var(--gray-500);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--blue-500); }
.breadcrumb span { margin: 0 8px; }

@media (max-width: 968px) {
  .news-listing .news-grid-4 { grid-template-columns: 1fr 1fr; }
  .article-hero { height: 320px; }
}
@media (max-width: 600px) {
  .news-listing .news-grid-4 { grid-template-columns: 1fr; }
  .article-hero { height: 260px; }
  .article-title { font-size: 28px; }
  /* Related articles horizontal scroll */
  .related-section .news-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    max-width: 100% !important;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .related-section .news-grid::-webkit-scrollbar { display: none; }
  .related-section .news-card {
    flex: 0 0 80vw;
    scroll-snap-align: start;
  }
}
