/* article.html — single article view */

.article-hero {
  background: var(--off-white);
  padding: 120px 0 80px;
}

.article-full {
  max-width: 760px;
  margin: 0 auto;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.article-breadcrumb a {
  color: var(--text-mid);
  text-decoration: none;
}

.article-breadcrumb a:hover { color: var(--gold); }

.article-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.article-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,151,59,0.1);
  padding: 4px 12px;
}

.article-date,
.article-read {
  font-size: 12px;
  color: var(--text-light);
}

.article-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.article-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.85;
}

.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 36px 0 14px;
}

.article-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 28px 0 12px;
}

.article-body p { margin-bottom: 18px; }

.article-body ul,
.article-body ol {
  margin: 0 0 18px 24px;
}

.article-body li { margin-bottom: 8px; }

.article-body strong { color: var(--text-dark); }

.article-related {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.article-related h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.related-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}

.related-card:hover {
  border-color: rgba(200,151,59,0.35);
  background: #FEFCF8;
}

.related-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.article-back { margin-top: 48px; }

.article-error {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-mid);
}

.article-error h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  margin-bottom: 12px;
}
