/* ── RESET (scoped) ── */
.flang-article,
.flang-article *,
.flang-article *::before,
.flang-article *::after { box-sizing: border-box; margin: 0; padding: 0; font-family: var(--font-body); }

/* ── WRAPPER ── */
.flang-article { background: #fff; }

/* ── HEADER ── */
.art-header { background: #fff; padding: 72px 0 0; }
.art-header__inner { max-width: 760px; margin: 0 auto; padding: 0 20px; }

.art-h1 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.art-hero-img { width: 100%; overflow: hidden; }
.art-hero-img__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-card);
}

/* ── BODY ── */
.art-body { padding: 56px 0 80px; }
.art-body__inner { max-width: 760px; margin: 0 auto; padding: 0 20px; }

/* Lead */
.art-lead {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

/* ── TYPOGRAPHY ── */
.art-body__inner h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-top: 56px;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.art-body__inner h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 12px;
}
.art-body__inner p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.art-body__inner a { color: var(--brand-blue); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 0.2s; }
.art-body__inner a:hover { color: var(--navy); }
.art-body__inner strong { font-weight: 600; }
.art-body__inner em { font-style: italic; }

/* ── LISTS ── */
.art-body__inner ul { margin-bottom: 20px; padding-left: 0; list-style: none; }
.art-body__inner ul li {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-primary);
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}
.art-body__inner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}
.art-body__inner ol { margin-bottom: 20px; padding-left: 0; list-style: none; counter-reset: art-counter; }
.art-body__inner ol li {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-primary);
  padding-left: 32px;
  position: relative;
  margin-bottom: 8px;
  counter-increment: art-counter;
}
.art-body__inner ol li::before {
  content: counter(art-counter) '.';
  position: absolute;
  left: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--coral);
  line-height: 1.9;
}

/* ── IMAGE ── */
.art-img { margin: 32px 0; }
.art-img__img { width: 100%; border-radius: 12px; display: block; background: var(--bg-page); }
.art-img__caption { font-size: 12px; color: var(--text-muted); line-height: 1.5; text-align: center; margin-top: 8px; padding: 0 16px; }

/* ── CALLOUT ── */
.art-callout {
  background: var(--beige-light);
  border-left: 4px solid var(--coral);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.art-callout p { font-size: 17px; font-weight: 500; line-height: 1.65; color: var(--text-primary); margin-bottom: 0; }

.art-callout--navy {
  background: var(--navy);
  border-left: none;
  border-radius: 12px;
  padding: 28px 32px;
}
.art-callout--navy p { font-size: 18px; font-weight: 500; color: #fff; line-height: 1.6; }

/* ── STATS ── */
.art-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 40px 0; }
.art-stats--3 { grid-template-columns: repeat(3, 1fr); }
.art-stats--2 { grid-template-columns: repeat(2, 1fr); }
.art-stats__card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 24px 20px; text-align: center; }
.art-stats__num { font-size: clamp(28px, 3vw, 40px); font-weight: 700; color: var(--coral); line-height: 1; margin-bottom: 8px; }
.art-stats__label { font-size: 12px; font-weight: 400; color: var(--text-muted); line-height: 1.5; }

/* ── TABLE ── */
.art-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 32px 0; border-radius: var(--radius-card); border: 1px solid var(--border); }
.art-table { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 1.5; }
.art-table thead tr { background: var(--bg-page); }
.art-table th { font-weight: 600; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-secondary); padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.art-table td { padding: 14px 20px; color: var(--text-primary); border-bottom: 1px solid #f0f0f0; vertical-align: top; }
.art-table tbody tr:last-child td { border-bottom: none; }
.art-table tbody tr:nth-child(even) { background: #fafafa; }
.art-table__cell--positive { color: #48bc20; font-weight: 500; }
.art-table__cell--negative { color: var(--coral); font-weight: 500; }

/* ── INLINE CTA ── */
.art-cta-inline { background: var(--coral); border-radius: var(--radius-card); padding: 36px 32px; margin: 40px 0; text-align: center; }
.art-cta-inline--grad { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); }
.art-cta-inline__headline { font-size: 20px; font-weight: 600; color: #fff; line-height: 1.4; margin-bottom: 20px; }
.art-cta-inline__btn { display: inline-block; font-size: 15px; font-weight: 600; color: var(--coral); background: #fff; border-radius: var(--radius-pill); padding: 14px 32px; text-decoration: none; transition: opacity 0.2s, transform 0.15s; }
.art-cta-inline__btn:hover { opacity: 0.92; transform: translateY(-1px); }
.art-cta-inline--grad .art-cta-inline__btn { color: var(--navy); }

/* ── FOOTER CTA ── */
.art-cta-footer { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); padding: 75px 0; }
.art-cta-footer__inner { max-width: 760px; margin: 0 auto; padding: 0 20px; text-align: center; }
.art-cta-footer__title { font-size: clamp(22px, 2.5vw, 36px); font-weight: 700; text-transform: uppercase; line-height: 1.1; color: #fff; margin-bottom: 32px; }
.art-cta-footer__btn { display: inline-block; font-size: 15px; font-weight: 600; color: var(--navy); background: #fff; border-radius: var(--radius-pill); padding: 16px 40px; text-decoration: none; transition: opacity 0.2s, transform 0.15s; }
.art-cta-footer__btn:hover { opacity: 0.92; transform: translateY(-1px); }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .art-stats { grid-template-columns: repeat(2, 1fr); }
  .art-cta-footer { padding: 56px 0; }
}
@media (max-width: 640px) {
  .art-h1 { font-size: 26px; letter-spacing: -0.3px; }
  .art-lead { font-size: 16px; }
  .art-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .art-stats__card { padding: 20px 16px; }
  .art-callout { padding: 16px 18px; }
  .art-callout--navy { padding: 20px 20px; }
  .art-cta-inline { padding: 28px 20px; }
  .art-cta-inline__headline { font-size: 17px; }
  .art-table th, .art-table td { padding: 12px 14px; }
  .art-cta-footer { padding: 48px 0; }
  .art-cta-footer__btn { padding: 14px 32px; width: 100%; max-width: 320px; text-align: center; }
}
