.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.insights-hero {
  min-height: 72vh;
  padding: 176px 48px 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: white;
}

.insights-hero h1,
.article-header h1 {
  max-width: 960px;
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.insights-hero h1 em,
.article-header h1 em { color: var(--green-light); font-style: italic; }

.insights-hero > p {
  max-width: 720px;
  margin-top: 32px;
  color: var(--white-soft);
  font-size: 17px;
  line-height: 1.75;
}

.insights-list { padding: 112px 48px; background: var(--cream); }
.insights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.insights-card { min-height: 300px; padding: 36px; border: 1px solid var(--border); background: white; transition: border-color 0.3s ease, transform 0.3s ease; }
.insights-card:hover { border-color: var(--green); transform: translateY(-4px); }
.insights-card-link { min-height: 226px; display: flex; flex-direction: column; justify-content: space-between; }
.insights-card h3 { max-width: 420px; font-family: var(--font-display); font-size: 34px; font-weight: 300; line-height: 1.15; }
.insights-card p { margin-top: 18px; color: var(--ink-light); font-size: 14px; line-height: 1.7; }
.insights-card-meta { margin-top: 28px; color: var(--ink-faint); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.insights-card-placeholder { display: flex; flex-direction: column; justify-content: flex-end; background: var(--cream-dark); }

.article-header { padding: 176px 48px 88px; background: var(--ink); color: white; }
.article-header-inner { max-width: 980px; margin: 0 auto; }
.article-header h1 { font-size: clamp(48px, 6vw, 82px); }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 32px; color: var(--white-soft); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.article-byline { margin-top: 18px; color: white; font-size: 14px; }

.article-content { padding: 96px 48px 112px; background: var(--cream); }
.article-body { max-width: 72ch; margin: 0 auto; color: var(--ink-light); font-size: 17px; line-height: 1.85; }
.article-body > * + * { margin-top: 24px; }
.article-body h2 { margin-top: 64px; color: var(--ink); font-family: var(--font-display); font-size: 40px; font-weight: 300; line-height: 1.15; }
.article-body h3 { margin-top: 42px; color: var(--ink); font-family: var(--font-display); font-size: 28px; font-weight: 400; line-height: 1.2; }
.article-body ul,
.article-body ol { padding-left: 24px; }
.article-body li + li { margin-top: 10px; }
.article-body blockquote { margin: 48px 0; padding: 8px 0 8px 28px; border-left: 3px solid var(--green); color: var(--ink); font-family: var(--font-display); font-size: 28px; font-style: italic; line-height: 1.35; }
.article-body a { color: var(--green); border-bottom: 1px solid currentColor; }
.article-body strong { color: var(--ink); }

@media (max-width: 768px) {
  .insights-hero,
  .article-header { min-height: auto; padding: 128px 24px 72px; }
  .insights-hero h1,
  .article-header h1 { font-size: clamp(46px, 13vw, 64px); }
  .insights-list { padding: 80px 24px; }
  .insights-grid { grid-template-columns: 1fr; }
  .insights-card { min-height: 240px; padding: 28px; }
  .article-content { padding: 72px 24px 88px; }
  .article-body { font-size: 16px; }
  .article-body h2 { font-size: 34px; }
  .article-body h3 { font-size: 25px; }
  .article-body blockquote { font-size: 24px; }
}
