/* terms.css
 * 이용약관 페이지 전용 스타일
 */

.terms-main {
  padding: 56px 20px 72px;
}

.terms-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e8edff;
  box-shadow: 0 16px 36px rgba(24, 39, 75, 0.1);
  padding: 30px 28px;
}

.terms-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #22366f;
}

.terms-summary {
  margin-top: 12px;
  color: #4d597f;
  line-height: 1.9;
}

.terms-section {
  margin-top: 24px;
}

.terms-section h2 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #2e3f78;
}

.terms-section p {
  color: #46537d;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .terms-main {
    padding: 34px 14px 52px;
  }

  .terms-wrap {
    border-radius: 14px;
    padding: 22px 16px;
  }

  .terms-section h2 {
    font-size: 19px;
  }
}
