:root {
  --article-accent: #25D366;
  --article-accent-dark: #128C7E;
  --article-accent-soft: #dcf8c6;
  --article-deep: #075E54;
  --article-ink: #1f151c;
  --article-muted: rgba(31, 21, 28, 0.65);
  --article-bg: #ffffff;
  --article-card: #f8fafb;
}

body.article-page {
  background: var(--article-bg);
  color: var(--article-ink);
}

.article-topbar {
  background: var(--article-deep);
  color: var(--color-white);
  text-align: center;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-hero {
  padding: clamp(56px, 8vw, 88px) 0 clamp(32px, 5vw, 56px);
  background: linear-gradient(135deg, #f0f2f5 0%, #ffffff 50%, #e8f5e9 100%);
  text-align: center;
}

.article-hero__inner {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.article-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--article-deep);
  background: var(--article-accent-soft);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(7, 94, 84, 0.12);
  animation: fadeInUp 0.8s ease-out;
}

.article-title {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--article-ink);
  animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.article-title span {
  color: var(--article-accent);
}

.article-subtitle {
  margin: 0;
  max-width: 760px;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--article-muted);
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.article-cta {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: 12px;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.article-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--article-accent);
  color: var(--color-white);
  font-weight: 900;
  padding: 16px 26px;
  border-radius: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  border: 0;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.article-button:hover {
  background: var(--article-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.25);
}

.article-button:active {
  transform: scale(0.98);
}

.article-cta-note {
  font-size: 12px;
  color: rgba(31, 21, 28, 0.55);
  font-weight: 600;
}

.article-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 18px;
}

.article-content p {
  margin: 0 0 18px;
  color: var(--article-muted);
}

.article-content h2 {
  margin: 32px 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: var(--article-ink);
}

.article-content h3 {
  margin: 24px 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--article-ink);
}

.article-content ul,
.article-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--article-muted);
}

.article-content li {
  margin-bottom: 10px;
}

.article-highlight {
  color: var(--article-accent-dark);
  font-weight: 800;
}

.article-callout {
  background: var(--article-accent-soft);
  border: 1px solid rgba(18, 140, 126, 0.2);
  border-left: 4px solid var(--article-accent);
  padding: 16px 18px;
  border-radius: 14px;
  color: var(--article-ink);
  margin: 24px 0;
}

.article-callout p {
  margin: 0;
  color: var(--article-ink);
}

.article-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 860px) {
  .article-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.article-card {
  background: var(--article-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 16px;
}

.article-link-card {
  display: grid;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 211, 102, 0.35);
  box-shadow: 0 18px 40px rgba(7, 94, 84, 0.12);
}

.article-link-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.article-link-card p {
  margin: 0;
  color: var(--article-muted);
  font-size: 15px;
}

.article-link-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: rgba(7, 94, 84, 0.7);
}

.article-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
}

.article-card p {
  margin: 0;
  font-size: 15px;
  color: var(--article-muted);
}

.article-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(7, 94, 84, 0.75);
  font-weight: 800;
}

.article-cta-section {
  background: var(--article-deep);
  color: var(--color-white);
  border-radius: 28px;
  padding: clamp(24px, 5vw, 36px);
  display: grid;
  gap: 14px;
}

.article-cta-section h2 {
  color: var(--color-white);
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
}

.article-cta-section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.article-cta-section .article-button {
  background: var(--color-white);
  color: var(--article-deep);
}

.article-cta-section .article-button:hover {
  background: rgba(255, 255, 255, 0.9);
}

.article-footer {
  padding: 64px 24px;
  background: #0b1f1a;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.article-footer .article-brand {
  font-weight: 950;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-size: 22px;
  color: var(--article-accent);
  margin-bottom: 18px;
}

.article-footer .disclaimer {
  max-width: 720px;
  margin: 0 auto 18px;
  font-size: 12px;
  opacity: 0.6;
}
