/* ============================================================
   articles.css – Styles for the articles page
   ============================================================ */

/* ── Page Header ── */
.articles-header {
  background: var(--navy);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.articles-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(196,151,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.articles-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.articles-header h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.articles-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}

/* ── Quick-nav pills ── */
.articles-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pill {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(196,151,42,0.45);
  border-radius: 100px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ── Main content area ── */
.articles-main {
  background: #f7f6f3;
  padding: 72px 0;
}

/* ── Individual article block ── */
.article-block {
  background: #fff;
  border-radius: 16px;
  padding: 48px 52px;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  align-items: start;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-top: 3px solid var(--gold);
  scroll-margin-top: 100px;
  transition: box-shadow 0.3s ease;
}

.article-block:hover {
  box-shadow: 0 6px 32px rgba(0,0,0,0.10);
}

.article-block:last-child {
  margin-bottom: 0;
}

/* ── Icon column ── */
.article-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ── Text content ── */
.article-content h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.article-intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
  border-right: 3px solid var(--gold);
  padding-right: 16px;
}

.article-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}

.article-content p {
  color: #555;
  line-height: 1.85;
  margin-bottom: 14px;
}

.article-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-list li {
  color: #555;
  line-height: 1.7;
  padding-right: 22px;
  position: relative;
}

.article-list li::before {
  content: '✦';
  position: absolute;
  right: 0;
  color: var(--gold);
  font-size: 10px;
  top: 6px;
}

.article-list li strong {
  color: var(--navy);
  font-weight: 600;
}

/* ── CTA inside article ── */
.article-cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

/* ── Bottom CTA band ── */
.articles-cta-band {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
}

.articles-cta-band h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.articles-cta-band p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .articles-header {
    padding: 100px 0 48px;
  }

  .article-block {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 20px;
  }

  .article-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .article-content h2 {
    font-size: 1.35rem;
  }
}
