.notes-page {
  min-height: 100vh;
  background: #f6f6f1;
  color: #101010;
}

.notes-shell {
  width: min(100% - 36px, 980px);
  margin: 0 auto;
  padding: 42px 0 76px;
}

.notes-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 42px;
}

.notes-brand,
.notes-top nav a,
.note-card strong,
.note-back {
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.notes-brand {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 2px solid #101010;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 5px 5px 0 #101010;
}

.notes-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.notes-hero {
  padding-bottom: 38px;
  border-bottom: 3px solid #101010;
}

.notes-kicker,
.article-meta {
  margin: 0 0 12px;
  color: #6f55d9;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.notes-hero h1,
.article-shell h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: .9;
  font-weight: 950;
}

.notes-hero p,
.article-intro {
  max-width: 760px;
  margin: 18px 0 0;
  color: #444444;
  font-size: 18px;
  line-height: 1.58;
  font-weight: 650;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.note-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 2px solid #101010;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 8px 8px 0 rgba(16, 16, 16, .18);
  transition: transform .16s ease, box-shadow .16s ease;
}

.note-card:hover {
  box-shadow: 12px 12px 0 rgba(111, 85, 217, .34);
  transform: translate(-3px, -3px);
}

.note-card small {
  color: #6f55d9;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.note-card h2 {
  margin: auto 0 12px;
  font-size: 28px;
  line-height: 1;
}

.note-card p {
  margin: 0 0 18px;
  color: #444444;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}

.note-card strong {
  color: #4b32b8;
}

.article-shell {
  width: min(100% - 36px, 820px);
  margin: 0 auto;
  padding: 42px 0 78px;
}

.note-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: #4b32b8;
}

.article-body {
  margin-top: 34px;
}

.article-body section {
  padding: 26px 0;
  border-top: 2px solid rgba(16, 16, 16, .12);
}

.article-body h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.05;
}

.article-body p,
.article-body li {
  color: #3f3f3f;
  font-size: 17px;
  line-height: 1.68;
  font-weight: 600;
}

.article-body p {
  margin: 0 0 14px;
}

.article-body ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.article-callout {
  margin-top: 26px;
  padding: 18px;
  border-left: 4px solid #6f55d9;
  background: rgba(185, 164, 255, .18);
}

@media (max-width: 760px) {
  .notes-top {
    align-items: flex-start;
    flex-direction: column;
  }

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