.section-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #777;
  margin-bottom: 6px;
}

.section h2 {
  font-size: 26px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

/* 버튼 공통 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}

.btn.primary {
  background: #1c4b8f;
  color: #fff;
}

.btn.primary:hover {
  background: #173b70;
}

.btn.secondary {
  background: #fff;
  color: #1c4b8f;
  border-color: #d0d7e6;
}

.btn.secondary:hover {
  background: #f4f6fb;
}
