/* ===================== NEWS PAGE — FEATURED (magazine layout) ===================== */

.news-featured-section { padding-bottom: 8px; }

.news-hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.news-hero-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-hero-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.news-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--gray-light);
  overflow: hidden;
}
.news-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.news-hero-body { padding: 24px 26px 28px; }
.news-hero-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.news-hero-body h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 0 0 10px;
}
.news-hero-body p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Sidebar — text-only stacked list, first item highlighted */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.news-sidebar-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--off-white);
  transition: var(--transition);
}
.news-sidebar-item:hover { background: var(--gray-light); }
.news-sidebar-item.is-highlight {
  background: var(--navy);
}
.news-sidebar-date {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray);
}
.news-sidebar-item.is-highlight .news-sidebar-date { color: rgba(255,255,255,0.6); }
.news-sidebar-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
}
.news-sidebar-item.is-highlight .news-sidebar-tag { color: var(--accent-soft); }
.news-sidebar-headline {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.news-sidebar-item.is-highlight .news-sidebar-headline { color: var(--white); }

.news-archive-heading {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.3rem;
  text-align: center;
  margin: 0 0 28px;
}

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

/* ===================== NEWS PAGE (dynamic list) ===================== */

.news-loading,
.news-empty {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  padding: 2rem 0;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.news-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.news-item-image {
  background: var(--gray-light);
  aspect-ratio: 4 / 3;
  align-self: start;
  overflow: hidden;
}
.news-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.news-item-body {
  padding: 28px 30px;
}

.news-item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.news-item-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(232, 82, 10, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
}
.news-item-date {
  font-size: 0.78rem;
  color: var(--gray);
}

.news-item h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.35rem;
  margin: 0 0 12px;
  line-height: 1.3;
}

.news-item-content {
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
}
.news-item-content p { margin-bottom: 0.85rem; }
.news-item-content ul { margin: 0 0 0.85rem 1.2rem; }
.news-item-content li { margin-bottom: 0.35rem; }
.news-item-content strong { color: var(--navy); }

@media (max-width: 720px) {
  .news-item {
    grid-template-columns: 1fr;
  }
  .news-item-body {
    padding: 22px 20px 26px;
  }
}
