* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-outside-bg);
  color: var(--text-color);
  font-family: var(--font-ko);
  font-size: var(--font-body);
  font-weight: 300;
  line-height: 1.95;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

button,
a,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.mobile-page {
  width: min(100%, var(--mobile-width));
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--page-bg);
  box-shadow: 0 14px 50px rgba(74, 89, 102, 0.12);
}

.section {
  padding:
    var(--section-padding-top)
    var(--section-padding-side)
    var(--section-padding-bottom);
  text-align: center;
}

.section.soft {
  background: var(--section-soft-bg);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--point-color);
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 38px;
  color: var(--text-color);
  font-size: var(--font-section-title);
  font-weight: 400;
  letter-spacing: .05em;
}

.thin-line {
  position: relative;
  width: 46px;
  height: 1px;
  margin: 32px auto;
  background: var(--line-color);
}

.thin-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--gold-point);
}

.btn {
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cad7e1;
  background: rgba(255,255,255,.65);
  color: #6d7f8e;
  font-size: 12px;
  text-decoration: none;
  transition: .25s ease;
}

.btn:hover {
  background: var(--point-color);
  border-color: var(--point-color);
  color: #fff;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 20000;
  padding: 10px 16px;
  transform: translate(-50%, 20px);
  border-radius: 999px;
  background: rgba(67,72,76,.94);
  color: #fff;
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 430px) {
  body {
    background: var(--page-bg);
  }

  .mobile-page {
    width: 100%;
    box-shadow: none;
  }
}