@charset "utf-8";

.sitemap-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: #fff;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.sitemap-overlay.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sitemap-page {
  width: 100%;
  min-height: 100vh;
  background: #fff;
}

.sitemap-header {
  width: 100%;
  height: 72px;
  padding: 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  box-sizing: border-box;
}

.sitemap-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.sitemap-logo img {
  width: 32px;
  height: 32px;
}

.sitemap-logo span {
  font-family: "NanumGothicExtraBold", sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  font-weight: 400;
  white-space: nowrap;
}

.sitemap-close {
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
}

.sitemap-close span {
  position: absolute;
  left: 0;
  top: 11px;
  width: 24px;
  height: 2px;
  background: #111;
}

.sitemap-close span:nth-child(1) {
  transform: rotate(45deg);
}

.sitemap-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.sitemap-content {
  width: 100%;
  padding: 48px 54px 60px;
  box-sizing: border-box;
}

.sitemap-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.sitemap-title {
  margin: 0 0 36px 0;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.sitemap-menu {
  width: 100%;
  border-top: 2px solid #111;
}

.sitemap-menu-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  column-gap: 40px;
  padding: 22px 0;
  border-bottom: 1px solid #d9d9d9;
}

.sitemap-menu-row h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.sitemap-menu-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  align-items: center;
}

.sitemap-menu-links a {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.35;
  white-space: nowrap;
}

.sitemap-menu-links a:hover {
  color: #2f73d9;
}

@media (max-width: 768px) {
  .sitemap-header {
    height: 72px;
    padding: 0 20px;
  }

  .sitemap-logo img {
    width: 28px;
    height: 28px;
  }

  .sitemap-logo span {
    font-size: 16px;
  }

  .sitemap-content {
    padding: 56px 20px 80px;
  }

  .sitemap-title {
    margin-bottom: 40px;
    font-size: 32px;
  }

  .sitemap-menu-row {
    grid-template-columns: 1fr;
    row-gap: 18px;
    padding: 28px 0;
  }

  .sitemap-menu-row h2 {
    font-size: 20px;
  }

  .sitemap-menu-links {
    gap: 12px 24px;
  }

  .sitemap-menu-links a {
    font-size: 15px;
  }
}