/* Hipson Resources — article layer. Sits on industry.css + site.css. */

.art-hero { position: relative; min-height: 44vh; display: flex; align-items: flex-end; border-bottom: 1px solid var(--color-divider); }
.art-hero .hero-bg, .art-hero .hero-veil { position: absolute; inset: 0; }
/* Article heroes inherit the same treatment as every other hero: photographs
   keep their colour, and a spotlight lights the subject while shading the text.
   Article text sits bottom-left, so the light defaults up and right. */
.art-hero .hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.18) saturate(1.05) contrast(1.12) brightness(1.05);
}
.art-hero .hero-bg::after { display: none; }
.art-hero .hero-veil {
  background:
    radial-gradient(ellipse 56% 66% at var(--spot-x, 70%) var(--spot-y, 38%),
      rgba(14,23,32,0) 0%, rgba(14,23,32,.12) 44%, rgba(14,23,32,.56) 80%, rgba(14,23,32,.76) 100%),
    linear-gradient(0deg, var(--color-bg) 4%, rgba(14,23,32,.86) 42%, rgba(14,23,32,.28) 100%);
}
.art-hero .wrap { position: relative; padding-block: clamp(40px, 6vw, 72px); }

.art-body { max-width: 760px; margin: 0 auto; padding: clamp(36px, 5vw, 64px) var(--gut) 24px; }
.art-body > p { font-size: 17.5px; line-height: 1.75; color: var(--color-neutral-800); margin: 0 0 22px; }
.art-body h2 { font-family: var(--font-heading); font-size: clamp(24px, 3vw, 32px); line-height: 1.1; margin: 44px 0 16px; }
.art-body a { text-decoration: underline; text-underline-offset: 3px; }

.byline { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.byline .bl-mark { flex: none; width: 46px; height: 46px; border: 1px solid var(--sig); display: grid; place-items: center; font-family: var(--font-heading); font-size: 19px; color: var(--sig-l); }
.byline .bl-name { font-family: var(--font-heading); font-size: 18px; }
.byline .bl-role { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--color-neutral-600); }

.statstrip { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); border: 1px solid var(--color-divider); margin: 30px 0; }
.statstrip .st { padding: 20px 22px; border: 1px solid var(--color-divider); }
.statstrip .st b { display: block; font-family: var(--font-heading); font-weight: 400; font-size: clamp(26px, 3vw, 36px); line-height: 1; color: var(--sig-l); }
.statstrip .st span { display: block; font-size: 12.5px; line-height: 1.5; letter-spacing: .06em; text-transform: uppercase; color: var(--color-neutral-600); margin-top: 8px; }
.statstrip .st .src { display: block; font-size: 11px; color: var(--color-neutral-400); margin-top: 6px; text-transform: none; letter-spacing: 0; }

.pull { border-left: 2px solid var(--sig); padding: 6px 0 6px 22px; margin: 32px 0; font-family: var(--font-heading); font-size: clamp(21px, 2.6vw, 27px); line-height: 1.3; color: var(--color-paper); }

.figure { margin: 32px 0; }
.figure svg { width: 100%; height: auto; display: block; border: 1px solid var(--color-divider); background: var(--color-bg-2); }
.figure .cap, .photofig .cap { font-size: 12.5px; color: var(--color-neutral-600); margin-top: 10px; }

.photofig { margin: 32px 0; }
.photofig .duotone { border: 1px solid var(--color-accent-500); }

.art-cta { border: 1px solid var(--sig); padding: 26px 28px; margin: 40px 0 8px; }
.art-cta p { margin: 0 0 16px; font-size: 15.5px; line-height: 1.6; color: var(--color-neutral-800); }

.art-src { border-top: 1px solid var(--color-divider); margin-top: 40px; padding-top: 18px; font-size: 12.5px; line-height: 1.8; color: var(--color-neutral-600); }

.acard { display: flex; flex-direction: column; color: var(--color-text); padding: 0; }
.acard .abody { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

@media print {
  .hdr, .ftr, .art-cta, .nav-links { display: none !important; }
  body { background: #fff; color: #111; }
}
