:root {
  --bg: #f3f3f1;
  --text: #2d2d2d;
  --muted: #6c6c6c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.75;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 28px 80px;
}

/* Title */

h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 30px;
}

.subtitle a {
  color: inherit;
  text-decoration: none;
}

.subtitle a:hover {
  text-decoration: underline;
  text-decoration-color: #888;
}

/* Image */

.hero-wrap {
  margin-bottom: 40px;
}

.hero {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: 50% 45%;
}

/* Dialogue */

.block {
  margin-bottom: 24px;
}

.speaker {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.utterance {
  padding-left: 18px;
}

/* Mobile */

@media (max-width: 600px) {
  .hero {
    height: 240px;
  }

  .page {
    padding: 36px 20px 60px;
  }

  .utterance {
    padding-left: 12px;
  }
}
