:root {
  color-scheme: light;
  --ink: #242424;
  --muted: #66636a;
  --line: #e8e5e7;
  --surface: #ffffff;
  --soft: #fff6f6;
  --coral: #f36d73;
  --coral-dark: #b9434a;
  --teal: #367f79;
  --focus: #1d5fd1;
  --content-width: 760px;
  --shell-width: 960px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--coral-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #8f2f36;
}

a:focus-visible,
input:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 35%, transparent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 700;
}

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

.help-hero {
  min-height: 188px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  background: url("assets/help-center-hero.png") center 43% / cover no-repeat;
}

.hero-inner {
  width: min(calc(100% - 40px), var(--shell-width));
  margin: 0 auto;
  padding: 20px 0 28px;
}

.help-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.help-brand:hover {
  color: #ffffff;
}

.help-brand img {
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
}

.policy-search {
  position: relative;
  width: min(100%, 720px);
  margin-top: 24px;
}

.policy-search label {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.policy-search input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(91, 69, 72, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 2px 8px rgba(79, 48, 51, 0.08);
  color: #30272a;
  font: inherit;
  padding: 14px 18px;
}

.policy-search input::placeholder {
  color: rgba(62, 48, 50, 0.72);
}

.policy-search input:focus {
  border-color: rgba(29, 95, 209, 0.7);
  background: rgba(255, 255, 255, 0.92);
}

.search-status {
  position: absolute;
  top: 100%;
  right: 4px;
  min-height: 22px;
  margin: 4px 0 0;
  color: #4d3b3e;
  font-size: 13px;
  font-weight: 650;
}

.page-shell {
  width: min(calc(100% - 40px), var(--shell-width));
  margin: 0 auto;
  padding: 36px 0 80px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--ink);
  text-decoration: none;
}

.policy-article {
  width: min(100%, var(--content-width));
  margin-top: 40px;
}

.article-header {
  margin-bottom: 38px;
}

.product-kicker {
  margin: 0 0 8px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
}

.byline {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.byline p {
  margin: 0;
}

.author-mark {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #241f20;
  font-weight: 800;
}

.local-first {
  margin: 0 0 32px;
  border-left: 4px solid var(--teal);
  background: #f1f8f7;
  padding: 16px 18px;
}

.contents {
  margin-bottom: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.contents h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.contents ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 28px;
  margin: 0;
  padding-left: 22px;
}

.contents a {
  color: var(--ink);
}

section {
  scroll-margin-top: 24px;
}

section + section {
  margin-top: 44px;
}

h2 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.25;
  text-transform: uppercase;
}

h3 {
  margin: 28px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

p {
  margin: 0 0 14px;
}

ul,
ol {
  margin: 10px 0 18px;
  padding-left: 28px;
}

li + li {
  margin-top: 7px;
}

strong {
  font-weight: 750;
}

.table-wrap {
  overflow-x: auto;
  margin: 18px 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.45;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f7f6f6;
  font-weight: 750;
}

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

.search-match {
  border-radius: 3px;
  background: #fff1a8;
  box-shadow: 0 0 0 2px #fff1a8;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f8f7f7;
  color: var(--muted);
}

.site-footer > div {
  width: min(calc(100% - 40px), var(--shell-width));
  margin: 0 auto;
  padding: 30px 0 36px;
}

.site-footer strong {
  color: var(--ink);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 12px;
}

.site-footer p {
  margin-top: 18px;
  font-size: 13px;
}

@media (max-width: 640px) {
  .hero-inner,
  .page-shell,
  .site-footer > div {
    width: min(calc(100% - 28px), var(--shell-width));
  }

  .help-hero {
    min-height: 206px;
    background-position: 55% center;
  }

  .hero-inner {
    padding-top: 16px;
  }

  .policy-search {
    margin-top: 20px;
  }

  .page-shell {
    padding-top: 26px;
  }

  .policy-article {
    margin-top: 30px;
  }

  .article-header {
    margin-bottom: 30px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 22px;
  }

  .contents ol {
    grid-template-columns: 1fr;
  }
}

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

@media print {
  .skip-link,
  .help-hero,
  .breadcrumbs,
  .contents,
  .site-footer {
    display: none;
  }

  .page-shell,
  .policy-article {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  body {
    color: #000000;
    font-size: 11pt;
  }

  a {
    color: #000000;
  }

  section + section {
    margin-top: 26px;
  }
}
