/* news.css (News page specific styles) */
body {
  background-color: var(--paper);
}

#newsSection {
  margin-top: 73px;
}

.pageSection {
  padding-block: 64px;
  background: var(--paper);
  scroll-margin-top: 73px;
}

.pageSectionAlt {
  background: color-mix(in oklch, var(--paper) 92%, var(--warm2) 8%);
}

.sectionInner {
  width: min(1120px, 100%);
  margin-inline: auto;
  padding-inline: 16px;
}

.sectionTitle {
  color: var(--warm3);
  font-size: clamp(22px, calc(20px + 0.625vw), 32px);
  font-weight: 950;
  margin-block-end: 10px;
  > span {
    display: inline-block;
  }
}

.sectionLead {
  font-size: clamp(14px, calc(13.2px + 0.25vw), 18px);
  line-height: 1.8;
  color: oklch(from #333 l c h / 0.9);
  font-weight: 800;
  margin-block-end: 26px;
}

.newsList {
  display: grid;
  gap: 10px 0;
}

.newsItem {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid oklch(from #333 l c h / 0.1);
  background: oklch(from #fbfbfb l c h / 0.85);
}

.newsDate {
  font-weight: 950;
  font-size: clamp(13px, calc(12.6px + 0.125vw), 15px);
  color: oklch(from #333 l c h / 0.75);
}

.newsText {
  font-weight: 850;
  font-size: clamp(14px, calc(13.2px + 0.25vw), 16px);
  color: var(--ink);
}

/* mobile */
@media (width < 768px) {
  #newsSection {
    margin-top: 55.5px;
  }
  .pageSection {
    padding-block: 56px;
  }
}
