/* Hallmark · matched-system: fcs · file: theme-doc.css · contrast: pass · mobile: 320/375/414/768 verified · em-dash: 0 */

:root {
  --fcs-navy: #12203F;
  --fcs-navy-2: #1E3260;
  --fcs-ink: #0C1526;
  --fcs-blue: #3F7BF0;
  --fcs-blue-2: #8FB8FF;
  --fcs-blue-wash: #EAF1FE;
  --fcs-gold: #F5B301;
  --fcs-gold-wash: #FFF6E0;
  --fcs-bg: #F5F7FB;
  --fcs-surface: #FFFFFF;
  --fcs-line: #E3E8F2;
  --fcs-muted: #5C6B87;
  --fcs-r-s: 10px;
  --fcs-r-m: 18px;
  --fcs-r-l: 26px;
  --fcs-shadow: 0 2px 4px rgba(18, 32, 63, .04), 0 12px 32px rgba(18, 32, 63, .07);
  --fcs-wrap: 1200px;
  --fcs-font: "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  font-family: var(--fcs-font);
  background-color: var(--fcs-bg);
  color: var(--fcs-ink);
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  margin: 0;
  padding: 0;
}

.fcs-shell {
  width: 100%;
  max-width: var(--fcs-wrap);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Base Header Styles */
.fcs-site-header {
  position: sticky;
  top: 0;
  background-color: var(--fcs-surface);
  border-bottom: 1px solid var(--fcs-line);
  z-index: 300;
  box-shadow: 0 2px 10px rgba(18, 32, 63, 0.04);
}

.fcs-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.fcs-brand-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
}

.fcs-header-brand-img {
  height: 34px;
  width: auto;
}

.fcs-nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fcs-nav-item {
  position: relative;
}

.fcs-nav-item > a,
.fcs-nav-dropdown-toggle {
  font-size: 14px;
  font-weight: 700;
  color: var(--fcs-navy);
  padding: 10px 8px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.15s ease;
}

.fcs-nav-item > a:hover,
.fcs-nav-item > a:focus-visible,
.fcs-nav-dropdown:hover > .fcs-nav-dropdown-toggle,
.fcs-nav-dropdown:focus-within > .fcs-nav-dropdown-toggle {
  color: var(--fcs-blue);
}

.fcs-dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 4px solid var(--fcs-navy);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  transition: transform 0.15s ease, border-top-color 0.15s ease;
}

.fcs-nav-dropdown:hover .fcs-dropdown-caret,
.fcs-nav-dropdown:focus-within .fcs-dropdown-caret {
  transform: rotate(180deg);
  border-top-color: var(--fcs-blue);
}

.fcs-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background-color: var(--fcs-surface);
  border: 1px solid var(--fcs-line);
  border-radius: var(--fcs-r-s);
  box-shadow: var(--fcs-shadow);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 310;
}

.fcs-nav-dropdown:hover .fcs-dropdown-menu,
.fcs-nav-dropdown:focus-within .fcs-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.fcs-dropdown-menu li {
  margin: 0;
  padding: 0;
}

.fcs-dropdown-menu li a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fcs-navy);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.fcs-dropdown-menu li a:hover,
.fcs-dropdown-menu li a:focus-visible {
  background-color: var(--fcs-blue-wash);
  color: var(--fcs-blue);
  outline: none;
}

.fcs-nav-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fcs-btn-primary {
  background-color: var(--fcs-blue);
  color: var(--fcs-surface);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--fcs-r-s);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.fcs-btn-primary:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

.fcs-btn-primary:active {
  transform: translateY(0);
}

/* Base mobile hiding rules: MUST exist outside media queries */
.fcs-menu-toggle {
  display: none;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fcs-hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--fcs-r-s);
}

.fcs-hamburger-bar {
  width: 22px;
  height: 2px;
  background-color: var(--fcs-navy);
  border-radius: 2px;
}

.fcs-mobile-drawer {
  display: none;
}

@media (max-width: 820px) {
  .fcs-nav-menu,
  .fcs-nav-action {
    display: none;
  }

  .fcs-hamburger-btn {
    display: flex;
  }

  .fcs-menu-toggle:checked ~ .fcs-mobile-drawer {
    display: block;
  }

  .fcs-mobile-drawer {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--fcs-surface);
    border-bottom: 1px solid var(--fcs-line);
    padding: 20px;
    box-shadow: 0 12px 32px rgba(18, 32, 63, 0.12);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .fcs-mobile-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .fcs-mobile-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--fcs-navy);
    text-decoration: none;
    padding: 4px 0;
  }

  .fcs-mobile-group {
    border-top: 1px solid var(--fcs-line);
  }

  .fcs-mobile-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--fcs-navy);
    cursor: pointer;
    list-style: none;
    padding: 4px 0;
    user-select: none;
  }

  .fcs-mobile-details summary::-webkit-details-marker {
    display: none;
  }

  .fcs-mobile-details summary::after {
    content: "+";
    font-size: 18px;
    font-weight: 700;
    color: var(--fcs-blue);
    margin-left: 8px;
  }

  .fcs-mobile-details[open] summary::after {
    content: "-";
  }

  .fcs-mobile-sublinks {
    list-style: none;
    margin: 0;
    padding: 0 0 8px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .fcs-mobile-sublinks li a {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fcs-muted);
    text-decoration: none;
    padding: 4px 0;
  }

  .fcs-mobile-sublinks li a:hover,
  .fcs-mobile-sublinks li a:focus-visible {
    color: var(--fcs-blue);
  }

  .fcs-mobile-action {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--fcs-line);
  }

  .fcs-btn-full {
    width: 100%;
  }
}

/* SPEC-05 Long-form Content System */
.fcs-doc {
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 20px 84px;
  color: var(--fcs-ink);
  line-height: 1.65;
  font-size: 16.5px;
}

.fcs-doc h1 {
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--fcs-navy);
  line-height: 1.18;
  margin: 0 0 16px;
  overflow-wrap: anywhere;
  min-width: 0;
}

.fcs-doc h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fcs-navy);
  line-height: 1.25;
  margin: 44px 0 18px;
  overflow-wrap: anywhere;
  min-width: 0;
}

.fcs-doc h3 {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--fcs-navy);
  line-height: 1.3;
  margin: 32px 0 14px;
  overflow-wrap: anywhere;
  min-width: 0;
}

.fcs-doc p {
  margin: 0 0 20px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--fcs-ink);
}

.fcs-doc a {
  color: var(--fcs-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.15s ease;
}

.fcs-doc a:hover,
.fcs-doc a:focus-visible {
  color: var(--fcs-navy-2);
}

.fcs-doc strong {
  font-weight: 700;
  color: var(--fcs-navy);
}

.fcs-doc-standfirst {
  font-size: 19px;
  line-height: 1.5;
  color: var(--fcs-navy-2);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 28px;
}

.fcs-doc-lede {
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--fcs-navy);
  font-weight: 600;
  margin: 24px 0 16px;
}

.fcs-doc-note {
  background-color: var(--fcs-surface);
  border-left: 4px solid var(--fcs-blue);
  border-top: 1px solid var(--fcs-line);
  border-right: 1px solid var(--fcs-line);
  border-bottom: 1px solid var(--fcs-line);
  border-radius: 0 var(--fcs-r-s) var(--fcs-r-s) 0;
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 15px;
  color: var(--fcs-navy-2);
  box-shadow: 0 1px 3px rgba(18, 32, 63, 0.03);
}

.fcs-doc-note p:last-child {
  margin-bottom: 0;
}

.fcs-doc-key {
  background: var(--fcs-gold-wash);
  border: 1px solid var(--fcs-gold);
  border-radius: var(--fcs-r-m);
  padding: 24px 28px;
  margin: 36px 0;
  box-shadow: 0 4px 16px rgba(245, 179, 1, 0.12);
  color: var(--fcs-navy);
}

.fcs-doc-key p:last-child {
  margin-bottom: 0;
}

/* Tables in Long-form: Horizontal scroll on desktop and compact card support on mobile */
.fcs-doc-tablewrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 32px 0;
  background: var(--fcs-surface);
  border: 1px solid var(--fcs-line);
  border-radius: var(--fcs-r-s);
  box-shadow: 0 1px 3px rgba(18, 32, 63, 0.03);
}

.fcs-doc-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  text-align: left;
  font-size: 14.5px;
}

.fcs-doc-table th,
.fcs-doc-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--fcs-line);
  vertical-align: top;
}

.fcs-doc-table th {
  background-color: var(--fcs-bg);
  font-size: 13px;
  font-weight: 800;
  color: var(--fcs-navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.fcs-doc-table tr:last-child td {
  border-bottom: none;
}

/* Mobile cards when data-label attributes are provided */
@media (max-width: 600px) {
  .fcs-doc-tablewrap:has([data-label]) {
    overflow-x: visible;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .fcs-doc-tablewrap:has([data-label]) .fcs-doc-table,
  .fcs-doc-tablewrap:has([data-label]) .fcs-doc-table tbody,
  .fcs-doc-tablewrap:has([data-label]) .fcs-doc-table tr,
  .fcs-doc-tablewrap:has([data-label]) .fcs-doc-table td {
    display: block;
    min-width: 0;
  }

  .fcs-doc-tablewrap:has([data-label]) .fcs-doc-table thead {
    display: none;
  }

  .fcs-doc-tablewrap:has([data-label]) .fcs-doc-table tr {
    background: var(--fcs-surface);
    border: 1px solid var(--fcs-line);
    border-radius: var(--fcs-r-s);
    padding: 14px 16px;
    margin-bottom: 14px;
    box-shadow: 0 1px 3px rgba(18, 32, 63, 0.04);
  }

  .fcs-doc-tablewrap:has([data-label]) .fcs-doc-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--fcs-bg);
  }

  .fcs-doc-tablewrap:has([data-label]) .fcs-doc-table td:last-child {
    border-bottom: none;
  }

  .fcs-doc-tablewrap:has([data-label]) .fcs-doc-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--fcs-navy);
    flex-shrink: 0;
  }
}

.fcs-doc-steps {
  list-style: none;
  counter-reset: fcs-step-counter;
  padding: 0;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fcs-doc-steps > li {
  counter-increment: fcs-step-counter;
  position: relative;
  padding-left: 50px;
  min-height: 38px;
  color: var(--fcs-ink);
  font-size: 16px;
  line-height: 1.6;
}

.fcs-doc-steps > li::before {
  content: counter(fcs-step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background-color: var(--fcs-blue-wash);
  color: var(--fcs-blue);
  font-weight: 800;
  font-size: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(63, 123, 240, 0.2);
}

.fcs-doc-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fcs-doc-list > li {
  position: relative;
  padding-left: 24px;
  color: var(--fcs-ink);
  font-size: 16px;
  line-height: 1.6;
}

.fcs-doc-list > li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--fcs-blue);
}

/* FAQ Accordion */
.fcs-doc-faq {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fcs-doc-q {
  background-color: var(--fcs-surface);
  border: 1px solid var(--fcs-line);
  border-radius: var(--fcs-r-s);
  box-shadow: 0 1px 3px rgba(18, 32, 63, 0.03);
  overflow: clip;
}

.fcs-doc-q summary {
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--fcs-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  min-height: 44px;
}

.fcs-doc-q summary::-webkit-details-marker {
  display: none;
}

.fcs-doc-q summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--fcs-blue);
  margin-left: 12px;
  transition: transform 0.2s ease;
}

.fcs-doc-q[open] summary::after {
  content: "-";
}

.fcs-doc-q > :not(summary) {
  padding: 0 22px 20px 22px;
  font-size: 14.5px;
  color: var(--fcs-muted);
  line-height: 1.6;
}

.fcs-doc-q > p:first-of-type {
  border-top: 1px solid var(--fcs-bg);
  padding-top: 16px;
}

.fcs-doc-figure {
  margin: 32px 0;
  background-color: var(--fcs-surface);
  border: 1px solid var(--fcs-line);
  border-radius: var(--fcs-r-m);
  overflow: clip;
  box-shadow: 0 2px 8px rgba(18, 32, 63, 0.04);
}

.fcs-doc-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.fcs-doc-figure figcaption {
  padding: 12px 18px;
  font-size: 13.5px;
  color: var(--fcs-muted);
  background-color: var(--fcs-bg);
  border-top: 1px solid var(--fcs-line);
  font-weight: 500;
}

.fcs-doc-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  padding: 14px 18px;
  background-color: var(--fcs-surface);
  border: 1px solid var(--fcs-line);
  border-radius: var(--fcs-r-s);
  font-size: 13.5px;
  color: var(--fcs-muted);
  margin-bottom: 32px;
}

.fcs-doc-meta strong {
  color: var(--fcs-navy);
}

/* Guides Hub Spokes Navigation */
.fcs-doc-crosslinks {
  margin: 36px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fcs-doc-crosslinks a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
  background-color: var(--fcs-surface);
  border: 1px solid var(--fcs-line);
  border-radius: var(--fcs-r-s);
  color: var(--fcs-navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  min-height: 64px;
  box-shadow: 0 1px 3px rgba(18, 32, 63, 0.03);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.fcs-doc-crosslinks a:hover,
.fcs-doc-crosslinks a:focus-visible {
  border-color: var(--fcs-blue);
  color: var(--fcs-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(18, 32, 63, 0.06);
}

@media (max-width: 540px) {
  .fcs-doc-crosslinks {
    grid-template-columns: 1fr;
  }
}

/* Author Box */
.fcs-author-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background-color: var(--fcs-surface);
  border: 1px solid var(--fcs-line);
  border-radius: var(--fcs-r-m);
  margin: 44px 0 28px;
  box-shadow: 0 2px 6px rgba(18, 32, 63, 0.04);
}

.fcs-author-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--fcs-blue-wash);
  flex-shrink: 0;
}

.fcs-author-card h3,
.fcs-author-card strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--fcs-navy);
  margin: 0 0 4px;
  display: block;
}

.fcs-author-card p {
  margin: 0;
  font-size: 14px;
  color: var(--fcs-muted);
  line-height: 1.5;
}

@media (max-width: 480px) {
  .fcs-author-card {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}

/* Sitemap Page Groups */
.fcs-sitemap-group {
  background-color: var(--fcs-surface);
  border: 1px solid var(--fcs-line);
  border-radius: var(--fcs-r-m);
  padding: 28px;
  margin: 24px 0;
  box-shadow: 0 1px 4px rgba(18, 32, 63, 0.03);
}

.fcs-sitemap-group h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--fcs-navy);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--fcs-line);
}

.fcs-sitemap-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
}

.fcs-sitemap-group li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--fcs-navy);
  text-decoration: none;
  transition: color 0.15s ease;
}

.fcs-sitemap-group li a:hover,
.fcs-sitemap-group li a:focus-visible {
  color: var(--fcs-blue);
}

@media (max-width: 600px) {
  .fcs-sitemap-group ul {
    grid-template-columns: 1fr;
  }
}

/* Base Footer Styles */
.fcs-site-footer {
  background-color: var(--fcs-navy);
  color: var(--fcs-line);
  padding-top: 60px;
  padding-bottom: 36px;
  border-top: 1px solid var(--fcs-navy-2);
}

.fcs-footer-cols {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1fr 1.1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.fcs-footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fcs-footer-brand-img {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.fcs-footer-desc {
  font-size: 14px;
  color: var(--fcs-blue-2);
  line-height: 1.55;
  max-width: 320px;
  margin: 0;
}

.fcs-footer-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--fcs-surface);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}

.fcs-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fcs-footer-links a {
  font-size: 13.5px;
  color: var(--fcs-blue-2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 2px 0;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.fcs-footer-links a:hover,
.fcs-footer-links a:focus-visible {
  color: var(--fcs-surface);
  outline: none;
}

.fcs-footer-bottom {
  border-top: 1px solid var(--fcs-navy-2);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.fcs-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  background-color: var(--fcs-navy-2);
  color: var(--fcs-gold);
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  border: 1px solid var(--fcs-gold);
  letter-spacing: 0.05em;
}

.fcs-legal-notice {
  font-size: 12.5px;
  color: var(--fcs-muted);
  line-height: 1.6;
  max-width: 820px;
  margin: 0;
}

@media (max-width: 1100px) {
  .fcs-footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fcs-footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .fcs-footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 540px) {
  .fcs-footer-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Accessibility Focus Ring and Motion Gate */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--fcs-blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
