.notes-hero {
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  padding-block: clamp(4.5rem, 7vw, 7.5rem);
}

.notes-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(30rem, 0.96fr);
  gap: clamp(3.5rem, 8vw, 9rem);
  align-items: center;
}

.notes-opening h1 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 6.4vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.9;
}

.notes-opening > p {
  max-width: 36rem;
  margin: 2rem 0 0;
  color: var(--mauve);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.5;
}

.notes-reading-guide {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.notes-reading-guide-head {
  display: grid;
  grid-template-columns: minmax(8rem, 0.36fr) minmax(0, 1fr);
  gap: 1.5rem;
  border-bottom: 1px solid var(--ink);
  padding-block: 1.15rem 1.35rem;
}

.notes-reading-guide-head > p,
.notes-index-label,
.note-record-kicker {
  margin: 0;
  color: var(--aubergine);
  font-size: 0.6rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.notes-reading-guide-head h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.notes-reading-guide-head div > p {
  margin: 0.8rem 0 0;
  color: var(--mauve);
  font-size: 0.9rem;
}

.notes-reading-guide ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.notes-reading-guide li {
  position: relative;
  display: grid;
  min-height: 7.5rem;
  align-content: space-between;
  gap: 1.5rem;
  padding: 1rem;
}

.notes-reading-guide li + li {
  border-left: 1px solid var(--rule);
}

.notes-reading-guide li span {
  color: var(--mauve);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.notes-reading-guide li strong {
  max-width: 12ch;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 600;
  line-height: 1.15;
}

.notes-reading-guide .notes-guide-result::after {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 0.72rem;
  height: 0.72rem;
  background: var(--activation);
  content: "";
}

.notes-index {
  background: var(--chalk);
  padding-block: var(--section);
}

.notes-index-head {
  display: grid;
  grid-template-columns: minmax(11rem, 0.27fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: start;
}

.notes-index-head h2 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2.6rem, 4.4vw, 5.1rem);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.notes-index-head div > p {
  margin: 1.2rem 0 0;
  color: var(--mauve);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.notes-list {
  margin-top: clamp(3.5rem, 7vw, 7rem);
  border-top: 1px solid var(--ink);
}

.note-record {
  border-bottom: 1px solid var(--ink);
}

.note-record > a {
  display: grid;
  grid-template-columns: minmax(14rem, 0.3fr) minmax(0, 1fr);
  color: inherit;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.note-record-meta {
  display: flex;
  min-height: 29rem;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--ink);
  padding: clamp(1.3rem, 2vw, 2rem);
}

.note-record-meta p {
  margin: 0;
  color: var(--mauve);
  font-size: 0.75rem;
  line-height: 1.55;
}

.note-record-meta p:first-child {
  display: grid;
  gap: 0.35rem;
  color: var(--aubergine);
  font-size: 0.6rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.note-record-copy {
  display: flex;
  min-width: 0;
  min-height: 29rem;
  flex-direction: column;
  padding: clamp(1.8rem, 4.5vw, 5rem);
}

.note-record-copy h3 {
  max-width: 15ch;
  margin: auto 0 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.91;
}

.note-record-copy > p:not(.note-record-kicker) {
  max-width: 48rem;
  margin: 2rem 0 0;
  color: var(--mauve);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.note-record-action {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note-record-action::after {
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.note-record > a:hover,
.note-record > a:focus-visible {
  background: var(--ink);
  color: var(--paper);
  outline: 0;
}

.note-record > a:hover .note-record-meta,
.note-record > a:focus-visible .note-record-meta {
  border-right-color: rgba(255, 255, 255, 0.26);
}

.note-record > a:hover .note-record-meta p,
.note-record > a:hover .note-record-kicker,
.note-record > a:hover .note-record-copy > p,
.note-record > a:focus-visible .note-record-meta p,
.note-record > a:focus-visible .note-record-kicker,
.note-record > a:focus-visible .note-record-copy > p {
  color: #e6dbe5;
}

.notes-next .cta-title {
  max-width: 12ch;
  line-height: 0.96;
}

.notes-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem 1.75rem;
  align-items: center;
  margin-top: 2rem;
}

@media (max-width: 70rem) {
  .notes-hero-grid {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

  .notes-opening h1 {
    max-width: 10ch;
  }

  .notes-reading-guide {
    max-width: 54rem;
  }
}

@media (max-width: 38rem) {
  .notes-hero {
    padding-block: 3.75rem 4.5rem;
  }

  .notes-hero-grid {
    gap: 2.75rem;
  }

  .notes-opening h1 {
    font-size: clamp(3.4rem, 14.5vw, 4.7rem);
    line-height: 0.9;
  }

  .notes-reading-guide-head {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .notes-reading-guide ol {
    grid-template-columns: 1fr;
  }

  .notes-reading-guide li {
    min-height: 0;
    grid-template-columns: 2.25rem minmax(0, 1fr);
    align-items: baseline;
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .notes-reading-guide li + li {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .notes-reading-guide .notes-guide-result {
    padding-right: 2rem;
  }

  .notes-index-head {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .notes-index-head h2 {
    font-size: clamp(2.45rem, 11vw, 3.4rem);
  }

  .note-record > a {
    grid-template-columns: 1fr;
  }

  .note-record-meta {
    min-height: 0;
    flex-direction: row;
    gap: 2rem;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
    padding: 1rem 0;
  }

  .note-record-meta p:last-child {
    text-align: right;
  }

  .note-record-copy {
    min-height: 0;
    padding: 2rem 0 2.5rem;
  }

  .note-record-copy h3 {
    margin-top: 3rem;
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .note-record > a:hover .note-record-meta,
  .note-record > a:focus-visible .note-record-meta {
    border-bottom-color: rgba(255, 255, 255, 0.26);
  }

  .notes-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}
