/* news.css — styles for the news index and article pages only.
   Everything else comes from styles.css. Added v2.1.1, 20 Sep 2026. */
/* ===== News (generated pages only) ===== */
  .page.active { animation: none; }
  .news-hero .eyebrow a { color: inherit; }
  .news-meta { font-size: .8125rem; letter-spacing: .08em; text-transform: uppercase; color: var(--aq-grey); font-weight: 700; }
  .news-figure { max-width: 960px; margin: 0 auto; }
  .news-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 4px; border: 1px solid var(--border); background: var(--aq-light-grey); }
  .news-article { padding-top: clamp(2.5rem, 5vw, 4rem); }
  .article-body { max-width: 720px; margin: 0 auto; }
  .article-body p { font-size: 1.0625rem; line-height: 1.7; }
  .article-body p + p, .article-body ul + p, .article-body p + ul { margin-top: 1.25rem; }
  .article-body h2 { font-size: clamp(1.375rem, 2.4vw, 1.75rem); margin: 2.5rem 0 1rem; line-height: 1.2; }
  .article-body h4 { margin: 2rem 0 .75rem; }
  .article-body ul { padding-left: 1.25rem; color: var(--aq-grey-dark); }
  .article-body li { margin: .4rem 0; line-height: 1.6; }
  .article-body a { text-decoration: underline; text-underline-offset: 2px; }
  .article-back { max-width: 720px; margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--border); }
  .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  @media (max-width: 960px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }
  .news-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; color: inherit; transition: box-shadow .2s, transform .2s; }
  .news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); color: inherit; }
  .news-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: var(--aq-light-grey); }
  .news-card-body { padding: 1.25rem 1.25rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
  .news-card h2, .news-card h3 { font-size: 1.125rem; line-height: 1.3; letter-spacing: -0.01em; }
  .news-card:hover h2, .news-card:hover h3 { color: var(--aq-blue); }
  .news-card p { font-size: .9375rem; line-height: 1.55; }
