.vaccination-policy {
  --health-green: #147a62;
  --health-mint: #eaf8f3;
  --health-ink: #163b3a;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.vaccination-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(248, 214, 5, .12), transparent 24%),
    radial-gradient(circle at 92% 15%, rgba(20, 122, 98, .14), transparent 34%),
    linear-gradient(145deg, #fff, #f2f9f7);
}

.vaccination-hero-copy h1 {
  max-width: 15ch;
}

.vaccination-hero-copy > p {
  max-width: 62ch;
  color: #445b68;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 2.05;
}

.vaccination-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.6rem;
}

.vaccination-hero-art {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
}

.vaccination-hero-art::before {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(20, 122, 98, .1);
  border-radius: 42% 58% 53% 47% / 42% 39% 61% 58%;
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(221,244,235,.72));
  box-shadow: 0 30px 80px rgba(20, 94, 84, .13), inset 0 1px rgba(255,255,255,.9);
  content: "";
  transform: rotate(-5deg);
}

.health-shield {
  position: relative;
  z-index: 3;
  display: grid;
  width: 142px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 42px 42px 62px 62px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(230,247,241,.9));
  box-shadow: 0 24px 60px rgba(4,44,113,.15);
}

.health-shield::after {
  position: absolute;
  right: 50%;
  bottom: -22px;
  width: 42px;
  height: 42px;
  border-right: 4px solid var(--health-green);
  border-bottom: 4px solid var(--health-green);
  content: "";
  transform: translateX(50%) rotate(45deg);
}

.health-shield img { width: 88px; height: 88px; object-fit: contain; }
.health-orbit { position: absolute; border: 1px solid rgba(11,106,176,.17); border-radius: 50%; }
.health-orbit-one { inset: 17%; transform: rotate(18deg) scaleY(.7); }
.health-orbit-two { inset: 27%; border-color: rgba(243,107,28,.2); transform: rotate(-28deg) scaleX(.72); }

.health-note {
  position: absolute;
  z-index: 4;
  padding: .55rem .8rem;
  border: 1px solid rgba(4,44,113,.08);
  border-radius: 999px;
  color: #28514d;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 30px rgba(4,44,113,.09);
  font-size: .72rem;
  font-weight: 780;
  backdrop-filter: blur(10px);
}
.health-note-one { top: 19%; right: 3%; }
.health-note-two { left: 0; bottom: 26%; }
.health-note-three { right: 8%; bottom: 8%; }

.vaccination-workplace-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(4,44,113,.1);
  border-radius: 30px;
  background: #dce8e8;
  box-shadow: 0 24px 70px rgba(4,44,113,.12);
}

.vaccination-workplace-photo picture,
.vaccination-workplace-photo img {
  display: block;
  width: 100%;
}

.vaccination-workplace-photo img {
  aspect-ratio: 1672 / 941;
  height: auto;
  object-fit: contain;
}

.vaccination-workplace-photo figcaption {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  max-width: calc(100% - 2rem);
  padding: .85rem 1.1rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 17px;
  color: #fff;
  background: rgba(4,44,113,.78);
  box-shadow: 0 14px 40px rgba(3,20,44,.2);
  font-size: clamp(.78rem, 1.35vw, .95rem);
  font-weight: 800;
  line-height: 1.8;
  backdrop-filter: blur(14px);
}

.policy-section-heading { max-width: 690px; }
.policy-section-heading > span { color: var(--health-green); font-size: .8rem; font-weight: 850; }
.policy-section-heading h2 { margin: .35rem 0 .45rem; color: #042c71; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.policy-section-heading p { margin: 0; color: #62707f; line-height: 1.9; }

.policy-principles {
  padding: clamp(1.5rem, 4vw, 2.7rem);
  border: 1px solid rgba(20,122,98,.11);
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 55px rgba(4,44,113,.07);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}
.principle-grid article {
  padding: 1.25rem;
  border: 1px solid rgba(4,44,113,.08);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #f5faf8);
}
.principle-grid article > span {
  display: grid;
  width: 40px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 13px;
  color: var(--health-green);
  background: var(--health-mint);
  font-size: 1.25rem;
  font-weight: 900;
}
.principle-grid h3 { margin: .9rem 0 .3rem; color: #123e56; font-size: 1rem; }
.principle-grid p { margin: 0; color: #657382; font-size: .85rem; line-height: 1.85; }

.policy-toc {
  position: sticky;
  z-index: 12;
  top: 92px;
  display: flex;
  gap: .45rem;
  align-items: center;
  overflow-x: auto;
  padding: .7rem;
  border: 1px solid rgba(4,44,113,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 35px rgba(4,44,113,.08);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}
.policy-toc::-webkit-scrollbar { display: none; }
.policy-toc strong { padding-inline: .65rem; color: #042c71; white-space: nowrap; font-size: .78rem; }
.policy-toc a { flex: 0 0 auto; padding: .55rem .75rem; border-radius: 11px; color: #5a6879; font-size: .75rem; font-weight: 720; }
.policy-toc a:hover { color: var(--health-green); background: var(--health-mint); }

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(1.5rem, 4vw, 3.3rem);
  align-items: start;
}
.policy-main { display: grid; gap: 1.15rem; }
.policy-section {
  scroll-margin-top: 175px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1.1rem;
  padding: clamp(1.35rem, 3.4vw, 2.2rem);
  border: 1px solid rgba(4,44,113,.08);
  border-radius: 25px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 40px rgba(4,44,113,.055);
}
.policy-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 17px;
  color: var(--health-green);
  background: var(--health-mint);
  font-size: .85rem;
  font-weight: 900;
}
.policy-section h2 { margin: .15rem 0 .85rem; color: #042c71; font-size: clamp(1.25rem, 2vw, 1.65rem); }
.policy-section p { margin: 0 0 .8rem; color: #566577; line-height: 2.05; }
.policy-section p:last-child { margin-bottom: 0; }
.policy-checklist { display: grid; gap: .65rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.policy-checklist li { position: relative; padding: .8rem 2.4rem .8rem .9rem; border-radius: 13px; color: #435365; background: #f6faf9; line-height: 1.85; }
.policy-checklist li::before { position: absolute; right: .85rem; color: var(--health-green); content: "✓"; font-weight: 900; }

.response-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin: 1.2rem 0; }
.response-steps > div { display: flex; gap: .65rem; padding: .9rem; border: 1px solid rgba(20,122,98,.1); border-radius: 15px; background: #f7fbfa; }
.response-steps b { display: grid; flex: 0 0 30px; height: 30px; place-items: center; border-radius: 10px; color: #fff; background: var(--health-green); }
.response-steps strong,.response-steps small { display: block; }
.response-steps strong { color: #24474c; font-size: .8rem; }
.response-steps small { margin-top: .2rem; color: #74818d; font-size: .68rem; line-height: 1.7; }

.policy-clarification { border-color: rgba(243,107,28,.15); background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(255,248,243,.8)); }
.meaning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.meaning-grid > div { padding: 1.1rem; border-radius: 17px; }
.meaning-grid h3 { margin: 0 0 .65rem; font-size: .95rem; }
.meaning-grid ul { display: grid; gap: .35rem; margin: 0; padding-right: 1.2rem; color: #566577; font-size: .8rem; line-height: 1.8; }
.meaning-yes { background: var(--health-mint); }
.meaning-yes h3 { color: var(--health-green); }
.meaning-no { background: #fff3ec; }
.meaning-no h3 { color: #a84217; }
.meaning-caveat { margin-top: 1.25rem !important; }

.policy-aside { position: sticky; top: 170px; display: grid; gap: 1rem; }
.medical-notice,.policy-version { padding: 1.35rem; border-radius: 23px; }
.medical-notice { border: 1px solid rgba(11,106,176,.13); color: #405468; background: linear-gradient(150deg, #edf7fc, #fff); box-shadow: 0 15px 45px rgba(4,44,113,.07); }
.medical-notice > span { display: grid; width: 42px; aspect-ratio: 1; place-items: center; border-radius: 14px; color: #fff; background: linear-gradient(145deg, #0b6ab0, #042c71); font-size: 1.45rem; font-weight: 600; }
.medical-notice h2 { margin: 1rem 0 .65rem; color: #042c71; font-size: 1.12rem; }
.medical-notice p { margin: 0 0 .75rem; font-size: .8rem; line-height: 1.95; }
.medical-notice p:last-child { margin-bottom: 0; }
.policy-version { display: grid; gap: .22rem; border: 1px solid rgba(4,44,113,.08); background: rgba(255,255,255,.78); }
.policy-version span { margin-top: .6rem; color: #8993a0; font-size: .68rem; }
.policy-version span:first-child { margin-top: 0; }
.policy-version strong { color: #304a5e; font-size: .78rem; }

@media (max-width: 960px) {
  .vaccination-hero { grid-template-columns: 1fr; }
  .vaccination-hero-copy h1 { max-width: 18ch; }
  .vaccination-hero-art { min-height: 300px; }
  .principle-grid { grid-template-columns: 1fr 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-aside { position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .vaccination-policy { gap: 1.6rem; }
  .vaccination-hero { padding: 1.5rem 1.15rem; }
  .vaccination-hero-copy h1 { font-size: 2.15rem; }
  .vaccination-hero-actions .button { width: 100%; }
  .vaccination-hero-art { min-height: 250px; }
  .vaccination-workplace-photo { border-radius: 20px; }
  .vaccination-workplace-photo figcaption {
    right: .75rem;
    bottom: .75rem;
    max-width: calc(100% - 1.5rem);
    padding: .65rem .8rem;
    border-radius: 13px;
  }
  .health-shield { width: 112px; }
  .health-shield img { width: 68px; height: 68px; }
  .health-note { font-size: .62rem; }
  .principle-grid,.policy-aside,.meaning-grid,.response-steps { grid-template-columns: 1fr; }
  .policy-toc { top: 76px; margin-inline: -.2rem; }
  .policy-toc strong { display: none; }
  .policy-section { grid-template-columns: 1fr; padding: 1.2rem; }
  .policy-number { width: 44px; height: 44px; border-radius: 14px; }
}

@media print {
  .site-header,.site-footer,.policy-toc,.vaccination-hero-actions,.ambient { display: none!important; }
  body { background: #fff; }
  .shell { width: 100%; }
  .page-shell { padding: 0; }
  .vaccination-policy { gap: 18px; }
  .vaccination-hero,.policy-principles,.policy-section,.medical-notice,.policy-version {
    break-inside: avoid;
    border: 1px solid #d7dee5;
    box-shadow: none;
    background: #fff;
  }
  .vaccination-hero { grid-template-columns: 1fr; }
  .vaccination-hero-art { display: none; }
  .vaccination-workplace-photo { box-shadow: none; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-aside { position: static; grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: no-preference) {
  .health-shield { animation: health-float 5.5s ease-in-out infinite; }
  @keyframes health-float {
    0%,100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-9px) rotate(2deg); }
  }
}
