/* ── News / Insights Page ─────────────────────────────────── */

.news-hero {
  padding-block: 10rem 5rem;
  text-align: center;
}

.news-hero h1 {
  color: var(--color-white);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.news-hero .hero-sub {
  margin-inline: auto;
  max-width: 540px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
}

/* ── Posts Grid ── */
.news-posts {
  background: var(--color-off-white);
}

.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .posts-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
  .posts-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Post Card ── */
.post-card {
  background: var(--color-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--duration-md) var(--ease-out),
              transform var(--duration-md) var(--ease-out),
              border-color var(--duration-md);
}

.post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.2);
}

.post-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.post-card-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
}

.post-card-img-inner svg {
  width: 64px;
  height: 64px;
  color: var(--color-gold);
}

.post-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.post-tag {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  background: rgba(201,169,110,0.1);
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
}

.post-date {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.post-card h2 {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.post-card h2 a {
  color: inherit;
  transition: color var(--duration);
}

.post-card h2 a:hover { color: var(--color-gold-dark); }

.post-excerpt {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.post-read-more {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap var(--duration), color var(--duration);
  align-self: flex-start;
}

.post-read-more:hover {
  gap: 0.625rem;
  color: var(--color-navy);
}

/* ── Empty State ── */
.posts-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
}

.posts-empty-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,169,110,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-gold-dark);
}

.posts-empty h3 {
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.posts-empty p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 400px;
  margin-inline: auto;
}

/* ── Featured (first card full-width on desktop) ── */
@media (min-width: 1000px) {
  .post-card.post-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
  }

  .post-featured .post-card-img {
    aspect-ratio: unset;
    min-height: 280px;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }

  .post-featured .post-card-body {
    padding: 2.5rem;
    justify-content: center;
  }

  .post-featured h2 {
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  }
}

/* ── Newsletter CTA ── */
.news-cta {
  background: var(--color-navy);
  text-align: center;
}

.news-cta h2 { color: var(--color-white); margin-bottom: 1rem; }
.news-cta p {
  color: rgba(255,255,255,0.6);
  font-family: var(--font-sans);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 2rem;
}
