/* === ARTICLE LAYOUT === */
.article-wrap { background: var(--cream); min-height: 100vh; }

.article-header {
  background: var(--green-deep);
  color: #fff;
  padding: 72px 0 56px;
  border-bottom: 3px solid var(--amber);
}

.article-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 20px;
}

.article-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.article-deck {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 20px;
}

.article-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}

/* === ARTICLE BODY === */
.article-body {
  padding: 64px 0 80px;
}

.article-body .article-inner { max-width: 720px; }

.article-lede {
  font-size: 1.15rem;
  font-family: 'Fraunces', Georgia, serif;
  color: var(--green-deep);
  line-height: 1.6;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: #fff;
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.article-lede strong { color: var(--green-deep); }

.article-body p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.article-body h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--green-deep);
  font-weight: 700;
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-dark);
}

.article-body h3 {
  font-size: 1.1rem;
  color: var(--green-mid);
  font-weight: 600;
  margin: 32px 0 14px;
}

.article-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--amber);
}

.article-body blockquote p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-style: italic;
  margin: 0;
  line-height: 1.8;
}

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

.article-body a {
  color: var(--green-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s;
}

.article-body a:hover { color: var(--green-deep); }

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

.article-list li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  border-left: 3px solid var(--green-mid);
}

.article-list li strong { color: var(--green-deep); }

/* === FAQ === */
.faq-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 32px 0 48px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--green-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.15s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after { content: '\u2212'; transform: rotate(0); }
.faq-item[open] summary { background: var(--cream); }

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--cream-dark);
  padding-top: 16px;
  margin-top: 0;
}

/* === ARTICLE CTA === */
.article-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--green-deep);
  border-radius: var(--radius-lg);
}

.article-cta-phone {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.article-cta-phone strong { color: #fff; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .article-header { padding: 48px 0 40px; }
  .article-body { padding: 40px 0 60px; }
  .faq-item summary { padding: 16px 20px; }
  .faq-answer { padding: 0 20px 16px; }
  .article-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .article-headline { font-size: 1.6rem; }
  .article-body h2 { font-size: 1.3rem; }
}