/* ═══════════════════════════════════════════════
   PULSE BY ZENYX — Article / Insights Detail Page
═══════════════════════════════════════════════ */

/* Article hero */
.art-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 62px;
}
.art-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.art-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,22,40,.95) 0%, rgba(11,22,40,.6) 55%, rgba(11,22,40,.2) 100%);
}
.art-hero-body {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 5% 56px;
  width: 100%;
}
.art-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 22px;
  transition: color .15s;
}
.art-back:hover { color: rgba(255,255,255,.7); }
.art-back svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.art-category {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,94,26,.15);
  border: 1px solid rgba(232,94,26,.25);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 18px;
}
.art-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.05em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.art-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.art-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,.38);
  font-weight: 500;
}
.art-meta-item svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}
.art-meta-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.2); }

/* Article body */
.art-body-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 5% 80px;
}
.art-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 36px;
  border-left: 3px solid var(--orange);
  padding-left: 20px;
}
.art-body h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.03em;
  margin: 44px 0 14px;
  line-height: 1.2;
}
.art-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 10px;
}
.art-body p {
  font-size: 16.5px;
  color: var(--ink2);
  line-height: 1.78;
  margin-bottom: 22px;
}
.art-body ul, .art-body ol {
  margin: 0 0 24px 0;
  padding-left: 0;
  list-style: none;
}
.art-body li {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}
.art-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.art-body ol { counter-reset: art-ol; }
.art-body ol li { counter-increment: art-ol; }
.art-body ol li::before {
  content: counter(art-ol) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
}
.art-callout {
  background: linear-gradient(135deg, rgba(232,94,26,.06) 0%, rgba(232,94,26,.03) 100%);
  border: 1px solid rgba(232,94,26,.18);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 32px 0;
}
.art-callout-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.art-callout p {
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}
.art-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.art-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.art-stat-n {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.06em;
  line-height: 1;
  margin-bottom: 6px;
}
.art-stat-n em { color: var(--orange); font-style: normal; }
.art-stat-l {
  font-size: 12px;
  color: var(--ink3);
  font-weight: 500;
  line-height: 1.4;
}
.art-divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

/* Inline CTA */
.art-inline-cta {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px 40px;
  margin: 48px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.art-inline-cta-text h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -.03em;
}
.art-inline-cta-text p {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.55;
  margin: 0;
}
.art-inline-cta-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Article footer related section */
.art-related {
  border-top: 1px solid var(--border);
  padding-top: 48px;
  margin-top: 60px;
}
.art-related-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink4);
  margin-bottom: 24px;
}
.art-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.art-related-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.art-related-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(232,94,26,.1);
}
.art-related-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--orange-l);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.art-related-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.art-related-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
  margin-bottom: 4px;
}
.art-related-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .art-hero { min-height: 320px; }
  .art-stat-row { grid-template-columns: 1fr 1fr; }
  .art-stat-row .art-stat:last-child { grid-column: 1 / -1; }
  .art-inline-cta { padding: 24px; }
  .art-inline-cta-btns { width: 100%; }
  .art-related-grid { grid-template-columns: 1fr; }
  .art-body-wrap { padding: 36px 5% 60px; }
}
