.content-page {
  min-height: 80vh;
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 32px 80px;
}

.content-page h1 {
  margin: 0 0 30px;

  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 400;
}

.content-page h2 {
  margin: 30px 0 10px;

  font-family: monospace;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .06em;

  color: var(--muted);
}

.content-body p,
.content-lede {
  margin: 0 0 18px;

  color: var(--silver);
  line-height: 1.7;
}

.content-lede {
  max-width: 480px;
}

.content-body a {
  color: var(--white);
  text-decoration: underline;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

  margin-bottom: 40px;
}

.lookbook-item {
  margin: 0;
}

.lookbook-image {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
}

.lookbook-item figcaption {
  color: var(--muted);

  font-family: monospace;
  font-size: 11px;
  letter-spacing: .04em;
  text-align: center;
}

.faq-list dt {
  margin-top: 24px;

  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.faq-list dd {
  margin: 8px 0 0;

  color: var(--silver);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;

  max-width: 480px;
}

.contact-form label {
  margin-top: 14px;

  color: var(--muted);

  font-family: monospace;
  font-size: 11px;
  letter-spacing: .04em;
}

.contact-form input,
.contact-form textarea {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);

  color: var(--white);
  padding: 10px 0;

  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  resize: vertical;
}

.contact-form button {
  margin-top: 28px;
  align-self: flex-start;
}

@media (max-width: 768px) {

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