/* =========================
   ARTICLE PAGE
========================= */

.article-top {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 18px 38px;
  background: #f4efe8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.article-top a {
  color: var(--navy);
  text-decoration: none;
}

.article-top a:hover {
  color: var(--accent);
}

.article-page {
  background: var(--cream);
  padding: 46px 38px 80px;
}

.article {
  max-width: 860px;
  margin: 0 auto;
  padding: 54px 64px 60px;

  background: #fffdf9;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.article-header {
  margin-bottom: 34px;
  text-align: center;
}

.article-kicker {
  margin: 0 0 14px;

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #af8e57;
}

.article-header h1 {
  margin: 0;

  font-family: "Source Serif 4", serif;
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 1.05;
  font-weight: 600;
  color: var(--navy-deep);
}

.article-meta {
  margin-top: 18px;

  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;

  font-size: 0.95rem;
  color: var(--muted);
}

.article-meta span:not(:last-child)::after {
  content: "•";
  margin-left: 12px;
  color: #c7b89e;
}

.article-hero-image {
  margin: 0 0 38px;
}

.article-hero-image img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;

  border-radius: 10px;
  border: 1px solid var(--border);
}

.article-hero-image figcaption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.article-content {
  font-family: "Source Serif 4", serif;
  font-size: 1.24rem;
  line-height: 1.72;
  color: #263441;
}

.article-content p {
  margin: 0 0 1.25em;
}

.article-content h2 {
  margin: 2.1em 0 0.7em;

  font-family: "Source Serif 4", serif;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 600;
  color: var(--navy-deep);
}

.article-content blockquote {
  margin: 2em 0;
  padding: 22px 28px;

  background: #f4efe8;
  border-left: 4px solid var(--accent);

  font-size: 1.28rem;
  line-height: 1.55;
  color: var(--navy-deep);
}

.article-footer {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--border);

  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-footer a {
  color: var(--navy);
  text-decoration: none;
}

.article-footer a:hover {
  color: var(--accent);
}

@media (max-width: 760px) {
  .article-page {
    padding: 24px 16px 56px;
  }

  .article {
    padding: 34px 22px 42px;
  }

  .article-content {
    font-size: 1.12rem;
    line-height: 1.65;
  }

  .article-meta {
    display: block;
  }

  .article-meta span {
    display: block;
    margin-bottom: 4px;
  }

  .article-meta span::after {
    content: none !important;
  }
}