/* หน้าเงื่อนไขและนโยบาย — ไฟล์ CSS แยก ไม่แก้ site.css */
.legal-page {
  padding: 2rem 0 3rem;
}

.legal-page__hero {
  margin-bottom: 1.5rem;
}

.legal-page__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #18181b;
  letter-spacing: -0.02em;
}

.legal-page__desc {
  margin-top: 0.5rem;
  color: #71717a;
  font-size: 0.95rem;
}

.legal-page__layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .legal-page__layout {
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
    gap: 2rem;
  }
}

.legal-page__tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.legal-page__tabs::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .legal-page__tabs {
    flex-direction: column;
    overflow: visible;
    padding-bottom: 0;
    position: sticky;
    top: 6rem;
  }
}

.legal-page__tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 0.875rem;
  border: 1px solid #e4e4e7;
  background: #fff;
  color: #52525b;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

@media (min-width: 1024px) {
  .legal-page__tab {
    width: 100%;
    white-space: normal;
  }
}

.legal-page__tab:hover {
  border-color: #d4d4d8;
  color: #18181b;
}

.legal-page__tab.is-active {
  background: #18181b;
  border-color: #18181b;
  color: #fff;
  box-shadow: 0 8px 24px -8px rgb(0 0 0 / 0.35);
}

.legal-page__panel {
  display: none;
}

.legal-page__panel.is-active {
  display: block;
}

.legal-page__card {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 4px 24px -4px rgb(0 0 0 / 0.06);
}

@media (min-width: 640px) {
  .legal-page__card {
    padding: 2rem;
  }
}

.legal-page__panel-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: #18181b;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f4f4f5;
}

.legal-page__empty {
  color: #71717a;
  text-align: center;
  padding: 2rem 1rem;
}

.legal-page__updated {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f4f4f5;
  font-size: 0.8125rem;
  color: #a1a1aa;
}
