.policy-page {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(214, 240, 255, 0.78), transparent 32%),
    linear-gradient(180deg, #f4f8fc 0%, #edf4fb 100%);
  color: #14304f;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

.policy-shell {
  width: min(100% - 32px, 1040px);
  margin: 0 auto;
  padding: 28px 0 56px;
}

.policy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.policy-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.policy-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.policy-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.policy-brand-copy strong {
  font-size: 1.16rem;
  line-height: 1.15;
}

.policy-brand-copy span {
  color: #45617c;
  font-size: 0.82rem;
}

.policy-home-link {
  color: #275a9a;
  font-size: 0.9rem;
  text-decoration: none;
}

.policy-home-link:hover {
  text-decoration: underline;
}

.policy-hero {
  padding: 24px 28px;
  border: 1px solid rgba(191, 210, 231, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 44px rgba(27, 56, 90, 0.08);
}

.policy-kicker {
  margin: 0 0 10px;
  color: #2f67a8;
  font-size: 0.82rem;
  font-weight: 700;
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.18;
}

.policy-description {
  margin: 12px 0 0;
  color: #48647e;
  font-size: 0.95rem;
  line-height: 1.65;
}

.policy-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 18px;
}

.policy-tab {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(181, 204, 230, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #36597e;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
}

.policy-tab:hover {
  border-color: rgba(72, 135, 206, 0.92);
  color: #224f87;
}

.policy-tab.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #1f5ea7 0%, #3b86d1 100%);
  color: #fff;
  box-shadow: 0 12px 22px rgba(36, 92, 156, 0.22);
}

.policy-tab--subtle {
  color: #627a92;
}

.policy-card {
  padding: 24px 28px 30px;
  border: 1px solid rgba(191, 210, 231, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 44px rgba(27, 56, 90, 0.08);
}

.policy-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.policy-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(226, 237, 250, 0.88);
  color: #31557c;
  font-size: 0.78rem;
  font-weight: 700;
}

.policy-card-title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.35;
}

.policy-card-summary {
  margin: 10px 0 18px;
  color: #49657f;
  font-size: 0.94rem;
  line-height: 1.62;
}

.policy-card-body {
  color: #223a54;
  font-size: 0.94rem;
  line-height: 1.78;
  white-space: pre-wrap;
}

@media (max-width: 767px) {
  .policy-shell {
    width: min(100% - 20px, 1040px);
    padding-top: 18px;
    padding-bottom: 36px;
  }

  .policy-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .policy-hero,
  .policy-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .policy-card-body {
    font-size: 0.9rem;
  }
}
