* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #17352d;
  background: #f7f3ea;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

.page {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 40px 20px;
}

.hero {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}

.icon {
  width: 112px;
  height: 112px;
  border-radius: 24px;
}

h1,
h2,
h3 {
  line-height: 1.25;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 6vw, 48px);
}

h2 {
  margin-top: 32px;
}

a {
  color: #8a650f;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.links a {
  padding: 10px 14px;
  border: 1px solid #d8c391;
  border-radius: 8px;
  background: #fffaf0;
  text-decoration: none;
}

.muted {
  color: #66756f;
}

@media (max-width: 560px) {
  .hero {
    grid-template-columns: 1fr;
  }
}
