:root {
  --primary: #35644b;
  --primary-pressed: #284e3a;
  --primary-soft: #e8f1eb;
  --background: #f7f2e8;
  --surface: #fffcf6;
  --surface-elevated: #ffffff;
  --surface-sunken: #eee7da;
  --text: #252721;
  --text-secondary: #64675d;
  --text-tertiary: #6f7269;
  --separator: #ddd7cb;
  --warning: #925f10;
  --warning-soft: #fff2c7;
  --danger: #b44338;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --page-inline: clamp(20px, 5.5vw, 88px);
  --page-max: 1376px;
  --header-height: 92px;
  --display-font: ui-rounded, "SF Pro Rounded", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  --body-font: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
  color: var(--text);
  font-family: var(--body-font);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-padding-top: 112px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background-color: var(--background);
  background-image: linear-gradient(rgba(247, 242, 232, 0.88), rgba(247, 242, 232, 0.88)), url("assets/paper-texture.png");
  background-size: auto, 96px 96px;
  font-size: 16px;
  line-height: 1.72;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--primary-pressed);
}

a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid rgba(53, 100, 75, 0.38);
  outline-offset: 4px;
}

img,
svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--primary);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  padding: 0 var(--page-inline);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--page-max));
  min-height: var(--header-height);
  margin: 0 auto;
  border-bottom: 1px solid var(--separator);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--text);
  font-family: var(--display-font);
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border: 1px solid rgba(146, 95, 16, 0.15);
  border-radius: 13px;
  box-shadow: 0 4px 12px rgba(37, 39, 33, 0.08);
}

.header-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-size: 15px;
  font-weight: 680;
  text-decoration: none;
}

main {
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: center;
  width: min(calc(100% - (var(--page-inline) * 2)), var(--page-max));
  min-height: calc(100svh - var(--header-height) - 110px);
  margin: 0 auto;
  padding: 64px 0 82px;
}

.hero-copy {
  max-width: 610px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(58px, 5.2vw, 82px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.072em;
  white-space: nowrap;
}

.hero-lead {
  margin: 30px 0 0;
  color: var(--primary);
  font-family: var(--display-font);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 760;
  letter-spacing: -0.035em;
}

.hero-description {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--text-secondary);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.8;
  letter-spacing: -0.02em;
}

.effective-date {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: center;
  margin: 35px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.effective-date strong {
  color: var(--primary);
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: min(100%, 408px);
  min-height: 64px;
  margin-top: 24px;
  padding: 0 24px 0 28px;
  border-radius: var(--radius-md);
  color: #fff;
  background: var(--primary);
  box-shadow: 0 9px 20px rgba(40, 78, 58, 0.16);
  font-size: 18px;
  font-weight: 720;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.primary-link:hover {
  color: #fff;
  background: var(--primary-pressed);
  box-shadow: 0 12px 24px rgba(40, 78, 58, 0.2);
  transform: translateY(-1px);
}

.primary-link svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.summary-note {
  position: relative;
  width: 100%;
  max-width: 660px;
  justify-self: end;
  padding: clamp(38px, 4vw, 58px);
  border: 1px solid rgba(146, 95, 16, 0.25);
  border-radius: 30px;
  background-color: var(--warning-soft);
  background-image: linear-gradient(rgba(255, 242, 199, 0.72), rgba(255, 242, 199, 0.72)), url("assets/paper-texture.png");
  box-shadow: 0 18px 36px rgba(72, 58, 33, 0.14), 0 3px 8px rgba(72, 58, 33, 0.08);
}

.paper-tape {
  position: absolute;
  top: -21px;
  left: 50%;
  width: 210px;
  height: 45px;
  border: 1px solid rgba(146, 95, 16, 0.08);
  background-color: rgba(227, 198, 137, 0.72);
  background-image: linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.05)), url("assets/paper-texture.png");
  box-shadow: 0 5px 10px rgba(72, 58, 33, 0.12);
  transform: translateX(-50%) rotate(0.7deg);
  clip-path: polygon(4% 2%, 97% 0, 100% 93%, 3% 100%, 0 48%);
}

.summary-note h2 {
  margin: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(146, 95, 16, 0.25);
  font-family: var(--display-font);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-list li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 132px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(146, 95, 16, 0.21);
  font-family: var(--display-font);
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 650;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.summary-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.summary-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(53, 100, 75, 0.18);
  border-radius: 20px;
  color: var(--primary);
  background: rgba(255, 252, 246, 0.78);
  box-shadow: 0 6px 14px rgba(72, 58, 33, 0.1);
}

.summary-icon-warm {
  color: var(--warning);
}

.summary-icon svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.policy-intro {
  display: grid;
  grid-template-columns: 56px minmax(240px, 0.9fr) minmax(420px, 1.1fr);
  gap: 28px;
  align-items: start;
  width: min(calc(100% - (var(--page-inline) * 2)), var(--page-max));
  margin: 0 auto 72px;
  padding: 34px 38px;
  border: 1px solid var(--separator);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 246, 0.74);
  box-shadow: 0 8px 20px rgba(37, 39, 33, 0.04);
}

.section-number {
  margin: 4px 0 0;
  color: var(--primary);
  font-family: var(--display-font);
  font-size: 15px;
  font-weight: 800;
}

.policy-intro h2 {
  margin: 0 0 8px;
  font-family: var(--display-font);
  font-size: 25px;
  letter-spacing: -0.04em;
}

.policy-intro p {
  margin: 0;
  color: var(--text-secondary);
}

.intro-facts {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr 1fr;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--separator);
  border-radius: var(--radius-sm);
  background: var(--separator);
}

.intro-facts div {
  min-width: 0;
  padding: 14px 16px;
  background: var(--surface);
}

.intro-facts dt {
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 700;
}

.intro-facts dd {
  margin: 3px 0 0;
  font-size: 14px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.policy-layout {
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr);
  gap: clamp(28px, 4.2vw, 64px);
  align-items: start;
  width: min(calc(100% - (var(--page-inline) * 2)), 1220px);
  margin: 0 auto;
  padding-bottom: 104px;
}

.toc {
  position: sticky;
  top: 24px;
  padding: 18px 12px 12px;
  border: 1px solid var(--separator);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 246, 0.83);
  box-shadow: 0 6px 18px rgba(37, 39, 33, 0.045);
  backdrop-filter: blur(10px);
}

.toc-title {
  margin: 0;
  padding: 0 10px 13px;
  border-bottom: 1px solid var(--separator);
  font-family: var(--display-font);
  font-size: 15px;
  font-weight: 760;
}

.toc nav {
  display: grid;
  gap: 3px;
  padding-top: 8px;
}

.toc-link {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  min-height: 43px;
  padding: 0 9px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color 140ms ease, background 140ms ease;
}

.toc-link span {
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.toc-link:hover,
.toc-link.is-active {
  color: var(--text);
  background: var(--warning-soft);
}

.policy-document {
  min-width: 0;
  border: 1px solid var(--separator);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 246, 0.84);
  box-shadow: 0 12px 30px rgba(37, 39, 33, 0.055);
}

.policy-section {
  padding: clamp(34px, 4.8vw, 62px);
  border-bottom: 1px solid var(--separator);
  scroll-margin-top: 24px;
}

.policy-section:last-child {
  border-bottom: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin-bottom: 28px;
}

.section-heading > span {
  padding-top: 6px;
  color: var(--primary);
  font-family: var(--display-font);
  font-size: 14px;
  font-weight: 800;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.policy-section h3 {
  margin: 36px 0 10px;
  font-family: var(--display-font);
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.policy-section > p {
  margin: 14px 0 0;
  color: var(--text-secondary);
}

.table-wrap {
  contain: paint;
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--separator);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.46);
  scrollbar-color: var(--separator) transparent;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 13px;
  line-height: 1.58;
}

caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

th,
td {
  padding: 16px 15px;
  border-right: 1px solid var(--separator);
  border-bottom: 1px solid var(--separator);
  vertical-align: top;
  text-align: left;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

th:last-child,
td:last-child {
  border-right: 0;
}

thead th {
  color: var(--text-secondary);
  background: rgba(238, 231, 218, 0.55);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

tbody th {
  width: 17%;
  color: var(--text);
  font-weight: 720;
}

td {
  color: var(--text-secondary);
}

.plain-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 3px solid var(--primary);
  background: var(--primary-soft);
}

.plain-note p {
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.data-flow {
  padding: 28px 24px;
  border: 1px solid rgba(146, 95, 16, 0.2);
  border-radius: var(--radius-md);
  background-color: var(--warning-soft);
  background-image: linear-gradient(rgba(255, 242, 199, 0.82), rgba(255, 242, 199, 0.82)), url("assets/paper-texture.png");
}

.data-flow ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.data-flow li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.data-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 29px;
  right: -20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--warning);
  border-right: 2px solid var(--warning);
  transform: rotate(45deg);
}

.flow-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 13px;
  border: 1px solid rgba(146, 95, 16, 0.15);
  border-radius: 50%;
  color: var(--primary);
  background: rgba(255, 252, 246, 0.82);
}

.flow-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.data-flow strong {
  font-family: var(--display-font);
  font-size: 14px;
  letter-spacing: -0.02em;
}

.data-flow p {
  margin: 5px 0 0;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.55;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.detail-grid h3 {
  margin-top: 0;
}

.detail-grid ul,
.check-list {
  margin: 0;
  padding-left: 21px;
  color: var(--text-secondary);
}

.detail-grid li + li,
.check-list li + li {
  margin-top: 8px;
}

.consent-callout {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding: 22px 24px;
  border: 1px solid rgba(53, 100, 75, 0.22);
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
}

.consent-callout > svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consent-callout h3 {
  margin: 0 0 4px;
  color: var(--primary-pressed);
}

.consent-callout p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.service-caution {
  padding-left: 15px;
  border-left: 2px solid var(--separator);
  font-size: 13px;
}

.provider-table,
.overseas-table {
  min-width: 850px;
}

.provider-table th:first-child {
  width: 21%;
}

.overseas-table {
  min-width: 1050px;
}

.overseas-table th:first-child {
  width: 18%;
}

.caption-text {
  font-size: 12px;
}

.retention-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--separator);
  border-radius: var(--radius-sm);
  background: var(--separator);
}

.retention-list > div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.55);
}

.retention-list span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 750;
}

.retention-list strong {
  display: block;
  margin-top: 5px;
  font-family: var(--display-font);
  font-size: 17px;
}

.retention-list p {
  margin: 7px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
}

.rights-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 24px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--separator);
  border-radius: var(--radius-sm);
  background: var(--separator);
  list-style: none;
}

.rights-list li {
  min-width: 0;
  padding: 19px 16px;
  background: rgba(255, 255, 255, 0.55);
}

.rights-list span {
  display: block;
  color: var(--primary);
  font-family: var(--display-font);
  font-size: 14px;
  font-weight: 760;
}

.rights-list p {
  margin: 7px 0 0;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.6;
}

.compact-section .section-heading {
  margin-bottom: 20px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 30px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: center;
  margin-top: 10px;
  padding: 26px 28px;
  border: 1px solid rgba(146, 95, 16, 0.2);
  border-radius: var(--radius-md);
  background-color: var(--warning-soft);
  background-image: linear-gradient(rgba(255, 242, 199, 0.84), rgba(255, 242, 199, 0.84)), url("assets/paper-texture.png");
}

.contact-title {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(255, 252, 246, 0.82);
}

.contact-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-title span:not(.contact-icon) {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
}

.contact-title strong {
  display: block;
  margin-top: 2px;
  font-family: var(--display-font);
  font-size: 22px;
}

.contact-panel dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.contact-panel dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
}

.contact-panel dt {
  color: var(--text-tertiary);
  font-size: 13px;
  font-weight: 680;
}

.contact-panel dd {
  margin: 0;
  font-size: 14px;
  font-weight: 620;
}

.remedy-links {
  margin-top: 26px;
}

.remedy-links p {
  color: var(--text-secondary);
  font-size: 14px;
}

.remedy-links ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.remedy-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 50px;
  padding: 12px 15px;
  border: 1px solid var(--separator);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.remedy-links a span {
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

.history-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--separator);
  color: var(--text-secondary);
  font-size: 14px;
}

.history-row time {
  color: var(--primary);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  width: min(calc(100% - (var(--page-inline) * 2)), var(--page-max));
  margin: 0 auto;
  padding: 34px 0 52px;
  border-top: 1px solid var(--separator);
}

.footer-brand {
  gap: 10px;
  font-size: 17px;
}

.site-footer p {
  margin: 7px 0 0;
  color: var(--text-tertiary);
  font-size: 12px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  color: var(--text-tertiary);
  font-size: 12px;
}

.footer-meta a {
  font-weight: 650;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 42px;
  }

  .summary-note {
    padding: 40px;
  }

  .summary-list li {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    min-height: 112px;
  }

  .summary-icon {
    width: 64px;
    height: 64px;
  }

  .policy-intro {
    grid-template-columns: 44px 1fr;
  }

  .intro-facts {
    grid-column: 2;
  }

  .rights-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rights-list li:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
    --page-inline: 22px;
  }

  html {
    scroll-padding-top: 150px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand {
    font-size: 19px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 70px;
    min-height: auto;
    padding: 64px 0 80px;
  }

  .hero-copy {
    max-width: 660px;
  }

  .hero h1 {
    font-size: clamp(58px, 11vw, 82px);
  }

  .summary-note {
    max-width: none;
    justify-self: stretch;
  }

  .policy-intro {
    margin-bottom: 42px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .toc {
    z-index: 10;
    top: 8px;
    overflow: hidden;
    padding: 8px;
    border-radius: 12px;
  }

  .toc-title {
    display: none;
  }

  .toc nav {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 0 0 2px;
    scrollbar-width: none;
  }

  .toc nav::-webkit-scrollbar {
    display: none;
  }

  .toc-link {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 6px;
    min-height: 40px;
    padding: 0 12px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .data-flow ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .data-flow li:nth-child(2)::after {
    display: none;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --page-inline: 16px;
  }

  body {
    font-size: 15px;
  }

  .header-link {
    max-width: 118px;
    font-size: 13px;
    line-height: 1.3;
    text-align: right;
  }

  .brand {
    gap: 9px;
    font-size: 17px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .hero {
    gap: 60px;
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 68px);
    white-space: normal;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 20px;
  }

  .hero-description {
    margin-top: 20px;
    font-size: 16px;
  }

  .effective-date {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .effective-date > span[aria-hidden="true"] {
    display: none;
  }

  .primary-link {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 16px;
  }

  .summary-note {
    padding: 42px 22px 24px;
    border-radius: 24px;
  }

  .paper-tape {
    width: 150px;
    height: 39px;
  }

  .summary-note h2 {
    font-size: 24px;
  }

  .summary-list li {
    grid-template-columns: 54px 1fr;
    gap: 15px;
    min-height: 100px;
    padding: 20px 0;
    font-size: 16px;
  }

  .summary-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .summary-icon svg {
    width: 31px;
    height: 31px;
  }

  .policy-intro {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 20px;
  }

  .section-number {
    margin: 0;
  }

  .intro-facts {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .policy-layout {
    width: 100%;
  }

  .toc {
    margin: 0 10px;
  }

  .policy-document {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .policy-section {
    padding: 34px 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .section-heading > span {
    padding-top: 0;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .table-wrap {
    margin-right: -20px;
    width: calc(100% + 20px);
    border-right: 0;
    border-radius: 10px 0 0 10px;
  }

  .data-flow {
    padding: 24px 16px;
  }

  .data-flow ol {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .data-flow li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -18px;
    transform: translateX(50%) rotate(135deg);
  }

  .data-flow li:nth-child(2)::after {
    display: block;
  }

  .consent-callout {
    grid-template-columns: 34px 1fr;
    padding: 20px 18px;
  }

  .consent-callout > svg {
    width: 30px;
    height: 30px;
  }

  .retention-list,
  .rights-list,
  .check-list,
  .remedy-links ul {
    grid-template-columns: 1fr;
  }

  .rights-list li:last-child {
    grid-column: auto;
  }

  .contact-panel {
    padding: 22px 18px;
  }

  .contact-panel dl div {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .history-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 0;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  :root {
    --page-inline: 0;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 10pt;
  }

  .site-header,
  .hero,
  .toc,
  .site-footer,
  .skip-link {
    display: none !important;
  }

  .policy-intro,
  .policy-layout {
    width: 100%;
    margin: 0;
  }

  .policy-intro {
    display: block;
    padding: 0 0 20px;
    border: 0;
    box-shadow: none;
  }

  .intro-facts {
    margin-top: 12px;
  }

  .policy-layout {
    display: block;
    padding: 0;
  }

  .policy-document {
    border: 0;
    box-shadow: none;
  }

  .policy-section {
    padding: 24px 0;
    break-inside: avoid;
  }

  .table-wrap {
    overflow: visible;
  }

  table,
  .provider-table,
  .overseas-table {
    min-width: 0;
    font-size: 7pt;
  }

  a {
    color: #000;
    text-decoration: none;
  }
}
