/* ── SiteMax module article pages — shared styles ── */

.art-wrap { max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.art-wide { max-width: 960px; margin-left: auto; margin-right: auto; text-align: center; }

/* Center the kicker bar+label as a block */
.art-wrap .kicker,
.art-wide .kicker,
#art-hero .kicker { justify-content: center; }
.art-wrap .art-eyebrow,
.art-wide .art-eyebrow { justify-content: center; }

/* Constrained-width text centers nicely as an inline-block-style block */
.art-wrap .art-deck,
.art-wide .art-deck { margin-left: auto; margin-right: auto; }
.art-wrap .art-body,
.art-wide .art-body { max-width: 700px; margin-left: auto; margin-right: auto; text-align: justify; text-align-last: left; hyphens: auto; -webkit-hyphens: auto; }
.art-wrap .art-deck,
.art-wide .art-deck { text-align: justify; text-align-last: left; hyphens: auto; }
.art-section .art-h2[style*="max-width"] { margin-left: auto; margin-right: auto; }

/* Pull-quote re-aligned for centered layout */
.art-pullquote {
  border-left: none;
  border-top: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA actions centered when inside centered wrapper */
.art-wrap .art-cta-actions,
.art-wide .art-cta-actions { justify-content: center; }

/* art-meta — center it below the deck */
.art-wrap .art-meta,
.art-wide .art-meta { justify-content: center; }

/* Feature pair: keep its 2-col layout with left-aligned text */
.feat-pair { text-align: left; }
.feat-pair .kicker { justify-content: flex-start; }

/* Benefit cards: keep card text left-aligned */
.benefit-card { text-align: left; }

/* Feature list: keep block items left-aligned */
.feature-block { text-align: left; }
.feature-block-title { text-align: left; }

/* Persona cards: keep text left-aligned for readability */
.persona-card { text-align: left; }

/* Coming-soon callout: keep left-aligned */
.coming-soon { text-align: left; }
.art-callout { text-align: left; }

/* ── HERO ── */
#art-hero {
  padding: 8rem 5rem 6rem;
  border-bottom: 1px solid rgba(45,212,200,0.08);
  background: linear-gradient(160deg, #0a1628 0%, #0f2035 100%);
}
.art-hero-default {
  background: linear-gradient(160deg, #0a1628 0%, #0f2035 100%);
}
.art-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.4rem;
}
.art-eyebrow::before {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: var(--teal);
}
.art-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.art-h1 span { color: var(--teal); }
.art-deck {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 600px;
  margin-bottom: 2rem;
}
.art-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.art-meta span { display: flex; align-items: center; gap: 0.35rem; }
.art-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(45,212,200,0.3); }

/* ── SECTIONS ── */
.art-section {
  background: var(--navy);
  padding: 6rem 5rem;
  position: relative;
}
.art-section.alt  { background: var(--navy-mid); }
.art-section.dark { background: linear-gradient(160deg, #040c1a 0%, #060e1c 100%); }

.art-h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.art-body {
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.art-body strong { color: var(--white); }

/* ── PULL QUOTE ── */
.art-pullquote {
  border-left: 3px solid var(--teal);
  padding: 1.25rem 0 1.25rem 2rem;
  margin: 2.5rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.5;
  font-style: italic;
}

/* ── TWO-COL FEATURE PAIR ── */
.feat-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feat-pair.reverse { direction: rtl; }
.feat-pair.reverse > * { direction: ltr; }
.feat-pair-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-pair-img img {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.5));
}
.feat-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.feat-head {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.feat-body {
  font-size: 0.92rem;
  line-height: 1.82;
  color: var(--text);
}
.feat-body + .feat-body { margin-top: 1rem; }

/* ── CALLOUT ── */
.art-callout {
  background: rgba(45,212,200,0.04);
  border: 1px solid rgba(45,212,200,0.14);
  border-radius: 10px;
  padding: 2rem 2.25rem;
  margin: 2.5rem 0;
}
.art-callout p { font-size: 0.95rem; line-height: 1.75; color: var(--text); margin: 0; }
.art-callout p + p { margin-top: 0.75rem; }
.art-callout strong { color: var(--white); }

/* ── STAT ROW ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(45,212,200,0.08);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── CTA ── */
#art-cta {
  background: linear-gradient(160deg, #040c1a 0%, #060e1c 100%);
  padding: 6rem 5rem;
  text-align: center;
}
.art-cta-head {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.art-cta-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}
.art-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BACK LINK ── */
.art-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.18s;
}
.art-back:hover { color: var(--teal); }

/* ── KICKER override (article-specific) ── */
.art-section .kicker,
#art-hero .kicker {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.art-section .kicker::before,
#art-hero .kicker::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}

/* ── BENEFIT GRID (Why Construction Leaders Choose…) ── */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.benefit-card {
  background: rgba(45,212,200,0.04);
  border: 1px solid rgba(45,212,200,0.14);
  border-radius: 12px;
  padding: 1.6rem 1.6rem;
}
.benefit-title {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.benefit-body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

/* ── KEY FEATURES (vertical structured list) ── */
.features-list {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(45,212,200,0.1);
}
.feature-block {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(45,212,200,0.1);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.feature-block-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.35;
}
.feature-block-body {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text);
}
.feature-block-body p + p { margin-top: 0.85rem; }
.feature-block-body ul {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
}
.feature-block-body ul li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.feature-block-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.6;
}
.feature-block-body strong { color: var(--white); }

/* ── PERSONAS (Who It's For) ── */
.personas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.persona-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.4rem 1.3rem;
}
.persona-role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.persona-body {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* ── COMING SOON callout ── */
.coming-soon {
  background: rgba(247,197,42,0.05);
  border: 1px solid rgba(247,197,42,0.18);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0 0;
}
.coming-soon-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.6rem;
}
.coming-soon p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #art-hero, .art-section, #art-cta { padding: 4rem 2rem !important; }
  .feat-pair { grid-template-columns: 1fr; gap: 2rem; direction: ltr !important; }
  .stat-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .benefits { grid-template-columns: 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: 0.6rem; }
  .personas { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .art-meta { flex-wrap: wrap; gap: 0.5rem; }
  .personas { grid-template-columns: 1fr; }
}
