@charset "UTF-8";
.editor-content {
  font-size: 16px;
  line-height: 1.8;
  color: #222;
}

/* 제목 */
.editor-content h1 {
  font-size: 32px;
  margin: 24px 0 14px;
}

.editor-content h2 {
  font-size: 26px;
  margin: 22px 0 12px;
}

.editor-content h3 {
  font-size: 22px;
  margin: 20px 0 10px;
}

.editor-content h4 {
  font-size: 18px;
  margin: 18px 0 8px;
}

/* 문단 */
/* 리스트 */
.editor-content ul {
  padding-left: 20px;
}

.editor-content li {
  margin: 6px 0;
}

/* 이미지 */
.editor-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* 링크 */
.editor-content a {
  text-decoration: none;
}

.editor-content a:hover {
  text-decoration: underline;
}

/* blockquote */
.editor-content blockquote {
  border-left: 4px solid #ddd;
  padding-left: 14px;
  color: #666;
  margin: 14px 0;
}

/* code */
.editor-content code {
  background: #f1f1f1;
  padding: 3px 6px;
  border-radius: 4px;
}

/* table */
.editor-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.editor-content table td,
.editor-content table th {
  border: 1px solid #ddd;
  padding: 8px;
}

.editor-content table {
  width: 100%;
}

.editor-content table th {
  background: #f8fafc;
}

.contact-page {
  --cp-text: #111111;
  --cp-sub: #6b7280;
  --cp-line: #e5e7eb;
  --cp-bg: #ffffff;
  --cp-point: #2c3e50;
  padding: 80px 20px;
}
.contact-page a:hover {
  text-decoration: none;
}

.contact-page * {
  box-sizing: border-box;
}

.contact-page__inner {
  max-width: 992px;
  margin: 0 auto;
}

.contact-page__header {
  margin-bottom: 40px;
}

.contact-page__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cp-sub);
  text-transform: uppercase;
}

.contact-page__title {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.1;
  color: var(--cp-text);
}

.contact-page__desc {
  margin: 0;
  font-size: 16px;
  color: var(--cp-sub);
  line-height: 1.7;
}

.contact-page__box {
  border-top: 1px solid var(--cp-line);
  border-bottom: 1px solid var(--cp-line);
  background: rgba(255, 255, 255, 0.7);
}

.contact-page__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--cp-line);
}

.contact-page__row:last-child {
  border-bottom: 0;
}

.contact-page__label {
  font-size: 14px;
  color: var(--cp-sub);
}

.contact-page__value {
  font-size: 16px;
  line-height: 1.8;
  color: var(--cp-text);
  text-decoration: none;
}

.contact-page__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contact-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 48px;
  padding: 0 20px;
  border: 1px solid var(--cp-line);
  border-radius: 999px;
  background: #fff;
  color: var(--cp-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s ease;
}

.contact-page__btn:hover {
  background: #f8fafc;
}

.contact-page__btn--primary {
  background: var(--cp-point);
  border-color: var(--cp-point);
  color: #fff !important;
}

.contact-page__btn--primary:hover {
  background: #223242;
}

@media (max-width: 768px) {
  .contact-page {
    padding: 60px 16px;
  }
  .contact-page__title {
    font-size: 32px;
  }
  .contact-page__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }
  .contact-page__actions {
    flex-direction: column;
  }
  .contact-page__btn {
    width: 100%;
  }
}