.note-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6rem 1% 2rem;
}
.note-cover {
  width: 100%;
  margin-bottom: 3rem;
}
.note-cover img {
  width: 100%;
  height: auto;
  display: block;
}
.note-meta {
  justify-content: center;
}
.note-title {
  font-family: 'Gelasio', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(32px, 6vw, 96px);
  line-height: 1;
  color: var(--color-black);
}
.note-description {
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.note .text h2,
.note .text h3,
.note .text h4,
.note .text h5,
.note .text h6 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 42px;
  font-weight: 400;
}
.note-meta {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 1rem;
}
.note-date {
  font-family: 'Gelasio', Georgia, serif;
  font-style: italic;
  font-size: clamp(14px, 1.5vw, 20px);
  color: var(--color-text-grey);
  white-space: nowrap;
}
.note-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
}
.note-tags a {
  font-family: 'Gelasio', Georgia, serif;
  font-style: italic;
  font-size: clamp(14px, 1.5vw, 20px);
  display: block;
  padding: 0;
  background: none;
  color: var(--color-text-grey);
}
.note-tags a:hover {
  color: var(--color-black);
}
