/* Lifestyle area enhancements — loaded AFTER site.css */

/* Full-bleed lifestyle hero band (fs-media style) */
.ls-hero{
  position:relative;
  min-height:clamp(340px,46vw,520px);
  display:flex;
  align-items:flex-end;
  border-radius:var(--r-lg);
  overflow:hidden;
  border:1px solid var(--line);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.ls-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(14,32,24,.05) 0%,rgba(14,32,24,.55) 70%,rgba(14,32,24,.82) 100%);
}
.ls-hero__inner{
  position:relative;
  z-index:1;
  padding:clamp(24px,5vw,52px);
  max-width:760px;
}
.ls-hero__inner .kicker,
.ls-hero__inner h1,
.ls-hero__inner p{color:#fff}
.ls-hero__inner h1{margin-top:10px}
.ls-hero__inner p{margin-top:14px;color:rgba(255,255,255,.86);max-width:600px}

/* In-body editorial figure for article pages */
.article-figure{
  margin:clamp(28px,4vw,44px) 0;
}
.article-figure img,
.article-figure .article-hero-img{
  width:100%;
  display:block;
}
.article-figure figcaption{
  margin-top:12px;
  font-size:14px;
  color:var(--muted);
  font-style:italic;
  line-height:1.5;
}
