/* ========== 공통 ========== */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Noto Sans KR", sans-serif;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-title {
  font-size: 22px;
  font-weight: bold;
  border-left: 5px solid #ff5b77;
  padding-left: 10px;
}
.more-btn, .copy-btn, .call-btn {
  background: #ff5b77;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}
.more-btn:hover, .copy-btn:hover, .call-btn:hover {
  background: #e44b68;
}
.copy-btn {
  font-size: 10px;
  padding: 2px 6px;
  margin-left: 5px;
}
.call-btn {
  font-size: 12px;
  padding: 4px 10px;
  margin-left: 30px;
}
