.notes-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.notes-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 82%);
}
.notes-hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -135px;
  top: -190px;
  border: 76px solid var(--yellow);
  border-radius: 50%;
}
.notes-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 76px 0 84px;
}
.notes-hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(54px, 7vw, 96px);
}
.notes-hero .lede {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255,255,255,.69);
}
.notes-section {
  background: var(--white);
  padding: 42px 0 112px;
}
.notes-list { border-top: 1px solid var(--line); }
.notes-entry {
  display: grid;
  grid-template-columns: 210px minmax(0,1fr);
  gap: 54px;
  padding: 52px 0 54px;
  border-bottom: 1px solid var(--line);
}
.notes-entry-meta {
  padding-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.65;
  text-transform: uppercase;
}
.notes-entry-meta time,
.notes-entry-meta span { display: block; }
.notes-entry-meta time {
  margin-bottom: 6px;
  color: var(--ink);
}
.notes-entry-main { min-width: 0; }
.notes-entry h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
}
.notes-excerpt {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.notes-toggle {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
}
.notes-toggle:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 7px;
}
.notes-close-label { display: none; }
.notes-toggle[aria-expanded="true"] .notes-open-label { display: none; }
.notes-toggle[aria-expanded="true"] .notes-close-label { display: inline; }
.notes-expanded {
  max-width: 800px;
  margin-top: 38px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.notes-byline {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.notes-body {
  color: #3f433f;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.78;
}
.notes-body p { margin-bottom: 22px; }
.notes-body p:last-child { margin-bottom: 0; }
.notes-editorial-note {
  margin-top: 42px !important;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 980px) {
  .notes-hero-inner { min-height: 390px; }
}
@media (max-width: 720px) {
  .notes-hero-inner {
    min-height: auto;
    padding: 68px 0 72px;
  }
  .notes-hero::after {
    width: 240px;
    height: 240px;
    right: -100px;
    top: -135px;
    border-width: 50px;
  }
  .notes-hero h1 { font-size: clamp(48px, 15vw, 72px); }
  .notes-section { padding: 20px 0 82px; }
  .notes-entry {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 38px 0 42px;
  }
  .notes-entry-meta { padding-top: 0; }
  .notes-entry h2 { font-size: clamp(34px, 10vw, 48px); }
  .notes-excerpt { font-size: 17px; }
  .notes-expanded {
    margin-top: 30px;
    padding-top: 28px;
  }
  .notes-body {
    font-size: 18px;
    line-height: 1.75;
  }
}