:root {
  color: #172033;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif;
  background: #f4f6fa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

main {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 96px;
}

header {
  max-width: 760px;
  margin-bottom: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #3156d3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.12;
}

header > p:last-child {
  margin: 20px 0 0;
  color: #59657a;
  font-size: 16px;
  line-height: 1.7;
}

section + section {
  margin-top: 44px;
}

h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.template-card {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid #dde2ec;
  border-radius: 10px;
  transition: border-color 120ms ease, transform 120ms ease;
}

.template-card:hover {
  border-color: #3156d3;
  transform: translateY(-2px);
}

.template-card span {
  font-weight: 650;
}

.template-card small {
  color: #69758a;
  font-size: 12px;
}
