/* ============================================
   R.L. SIMMONS BUILDER — Blog Article Page
   ============================================ */

.article-hero {
  position: relative;
  height: 50vh;
  min-height: 340px;
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 24, 0.2) 0%,
    rgba(26, 26, 24, 0.55) 100%
  );
}

/* --- Article Layout --- */
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.article-meta__category {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper);
}

.article-meta__sep {
  color: var(--creek-stone);
  font-size: var(--text-xs);
}

.article-meta__date {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--creek-stone);
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

/* --- Article Body --- */
.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--aged-iron);
}

.article-body p {
  margin-bottom: 1.4em;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--charcoal);
  margin: var(--space-md) 0 0.6em;
  line-height: 1.3;
}

.article-body strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* --- Sign-off --- */
.article-signoff {
  border-top: var(--border-subtle);
  padding-top: var(--space-md);
  margin-top: var(--space-lg);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--creek-stone);
}

/* --- Bottom CTA --- */
.article-cta {
  background: var(--parchment);
  border-left: 4px solid var(--copper);
  padding: var(--space-md);
  margin-top: var(--space-xl);
  border-radius: 0 2px 2px 0;
}

.article-cta p {
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--aged-iron);
}

/* --- Back link --- */
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--creek-stone);
  margin-bottom: var(--space-lg);
  transition: color var(--transition-fast);
}

.article-back::before {
  content: '←';
}

.article-back:hover {
  color: var(--copper);
}
