@charset "UTF-8";

.inner {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.section-space {
  padding: 120px 0;
}

.section-head {
  display: flex;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
}

.section-head.between {
  justify-content: space-between;
}

.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-kicker {
  margin-bottom: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-point);
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.section-desc {
  margin-top: 24px;
  color: var(--color-sub);
  font-size: 1.0625rem;
}

.section-kicker.light,
.section-title.light,
.section-desc.light {
  color: #ffffff;
}

.text-link {
  font-size: 0.95rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  transition: var(--transition);
}

.btn.primary {
  background: var(--color-point);
  color: #ffffff;
}

.btn.ghost {
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.btn.small {
  min-height: 50px;
  padding: 0 24px;
}

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

.dark-bg {
  background: var(--color-dark);
}

@media all and (max-width: 1439px) {
  .inner {
    width: min(calc(100% - 64px), 1280px);
  }

  .section-space {
    padding: 104px 0;
  }

  .section-title {
    font-size: 2.25rem;
  }
}

@media all and (max-width: 1279px) {
  .inner {
    width: min(calc(100% - 48px), 100%);
  }

  .section-space {
    padding: 88px 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media all and (max-width: 767px) {
  .inner {
    width: calc(100% - 32px);
  }

  .section-space {
    padding: 72px 0;
  }

  .section-head,
  .section-head.between {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
  }

  .section-title {
    font-size: 1.625rem;
  }

  .section-desc {
    margin-top: 18px;
    font-size: 0.95rem;
  }

  .btn {
    min-height: 52px;
    padding: 0 22px;
  }
}

@media all and (max-width: 320px) {
  .inner {
    width: calc(100% - 24px);
  }

  .section-title {
    font-size: 1.5rem;
  }
}
