@import url("./level1-service-policy.css?v=20260911a");

:root {
  --ink: #172126;
  --muted: #5b6870;
  --line: #dbe3e6;
  --surface: #ffffff;
  --soft: #f5f8f8;
  --teal: #087f83;
  --teal-dark: #065f62;
  --coral: #d65a42;
  --gold: #a66f18;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--soft);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 0 28px;
  color: #ffffff;
  background: rgba(10, 20, 24, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.brand-link {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.site-nav .nav-action {
  color: #ffffff;
  background: var(--teal);
}

.site-nav .nav-action:hover {
  background: var(--teal-dark);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  line-height: 1.08;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.primary-action {
  color: #ffffff;
  background: var(--teal);
  border: 1px solid var(--teal);
}

.primary-action:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.secondary-action {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.secondary-action:hover {
  background: rgba(255, 255, 255, 0.22);
}

h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.25;
}

.compact {
  flex: 0 0 auto;
  min-width: 160px;
}

.guide-header {
  background: rgba(10, 20, 24, 0.9);
}

.guide-main {
  padding: 120px 0 72px;
}

.guide-article {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
}

.guide-article h1 {
  max-width: 780px;
  color: var(--ink);
  font-size: 48px;
}

.guide-lead {
  margin: 24px 0 0;
  color: #34464d;
  font-size: 20px;
  line-height: 1.75;
}

.guide-section {
  margin-top: 46px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.guide-section h2 {
  font-size: 28px;
}

.guide-section p,
.guide-list {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.guide-section p {
  margin: 16px 0 0;
}

.guide-list {
  margin: 16px 0 0;
  padding-left: 22px;
}

.guide-list li + li {
  margin-top: 8px;
}

.guide-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding: 28px;
  border: 1px solid #bdd6d7;
  border-radius: 8px;
  background: #e8f4f4;
}

.guide-cta p {
  margin: 12px 0 0;
  color: #345057;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .guide-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-article h1 {
    font-size: 42px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 62px;
    padding: 0 16px;
  }

  .brand-link {
    font-size: 18px;
  }

  .site-nav a {
    padding: 8px;
    font-size: 13px;
  }

  h2 {
    font-size: 27px;
  }

  .primary-action,
  .secondary-action,
  .compact {
    width: 100%;
  }

  .guide-article {
    width: calc(100% - 24px);
  }

  .guide-main {
    padding-top: 100px;
  }

  .guide-article h1 {
    font-size: 34px;
  }

  .guide-lead {
    font-size: 17px;
  }

  .guide-section h2 {
    font-size: 24px;
  }
}
