
:root {
  --navy-950: #07182b;
  --navy-900: #0b2139;
  --navy-800: #123a5e;
  --blue-700: #075f9e;
  --blue-600: #0875bd;
  --teal-600: #00aeb8;
  --teal-500: #10bec5;
  --green-500: #79c842;
  --green-600: #63ab31;
  --ink: #16263a;
  --muted: #5c6b7a;
  --line: #dbe4ec;
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --surface-blue: #edf7fb;
  --warning: #9d5f00;
  --error: #a42828;
  --success: #186a3b;
  --shadow-sm: 0 8px 24px rgba(7, 24, 43, 0.08);
  --shadow-lg: 0 20px 60px rgba(7, 24, 43, 0.16);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--blue-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-900); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--teal-500); outline-offset: 3px; }

.skip-link {
  position: fixed; left: 1rem; top: -6rem; z-index: 1000;
  padding: .75rem 1rem; border-radius: 8px; background: #fff; color: var(--navy-950);
  box-shadow: var(--shadow-sm); font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 820px); margin-inline: auto; }
.section { padding: 5.25rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { background: var(--navy-950); color: #fff; }
.section-blue { background: linear-gradient(135deg, var(--surface-blue), #f8fcfe); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 .8rem;
  color: var(--blue-700); font-weight: 800; font-size: .79rem; letter-spacing: .13em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 1.9rem; height: 3px; border-radius: 3px; background: var(--green-500); }
.section-dark .eyebrow { color: #80dce1; }
.section-title { margin: 0 0 1rem; color: var(--navy-950); font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.12; letter-spacing: -.035em; }
.section-dark .section-title { color: #fff; }
.section-intro { max-width: 760px; margin: 0 0 2rem; color: var(--muted); font-size: 1.1rem; }
.section-dark .section-intro { color: #cbd8e4; }
.lead { font-size: 1.16rem; color: #46586a; }
.small { font-size: .91rem; }
.muted { color: var(--muted); }
.center { text-align: center; }
.center .section-intro { margin-inline: auto; }
.stack > * + * { margin-top: 1.2rem; }

.topbar { background: var(--navy-950); color: #dbe7f0; font-size: .82rem; }
.topbar .container { min-height: 38px; display: flex; justify-content: flex-end; align-items: center; gap: 1.25rem; }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: #8ee1e5; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(219,228,236,.9); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; flex: 0 0 auto; text-decoration: none; }
.brand img { width: 230px; display: block; }
.nav-toggle { display: none; align-items: center; justify-content: center; width: 46px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--navy-950); }
.nav-toggle-lines, .nav-toggle-lines::before, .nav-toggle-lines::after { display: block; width: 22px; height: 2px; background: currentColor; position: relative; transition: transform .2s ease; }
.nav-toggle-lines::before, .nav-toggle-lines::after { content: ""; position: absolute; left: 0; }
.nav-toggle-lines::before { top: -7px; }
.nav-toggle-lines::after { top: 7px; }
.site-nav { display: flex; align-items: center; gap: .15rem; }
.site-nav a { padding: .65rem .72rem; color: var(--ink); text-decoration: none; border-radius: 8px; font-size: .92rem; font-weight: 720; white-space: nowrap; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--blue-700); background: var(--surface-blue); }
.site-nav .nav-cta { margin-left: .45rem; padding: .7rem 1rem; color: #fff; background: var(--blue-700); }
.site-nav .nav-cta:hover, .site-nav .nav-cta[aria-current="page"] { color: #fff; background: var(--navy-800); }

.hero { position: relative; overflow: hidden; color: #fff; background: var(--navy-950); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(16,190,197,.22), transparent 29%),
    radial-gradient(circle at 68% 77%, rgba(121,200,66,.13), transparent 28%),
    linear-gradient(120deg, transparent 0 58%, rgba(255,255,255,.035) 58% 59%, transparent 59% 100%);
}
.hero::after {
  content: ""; position: absolute; width: 520px; height: 520px; right: -170px; bottom: -255px;
  border: 1px solid rgba(106,221,226,.18); border-radius: 50%; box-shadow: 0 0 0 70px rgba(106,221,226,.025), 0 0 0 140px rgba(106,221,226,.02);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { min-height: 660px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 4rem; padding: 5.5rem 0; }
.hero h1 { max-width: 780px; margin: .35rem 0 1.25rem; font-size: clamp(3rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -.055em; }
.hero-copy > p:not(.eyebrow) { max-width: 760px; color: #d4e2ed; font-size: 1.17rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-panel { border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg); background: rgba(255,255,255,.065); box-shadow: var(--shadow-lg); padding: 1.55rem; backdrop-filter: blur(8px); }
.hero-panel h2 { margin: 0 0 .95rem; font-size: 1.1rem; }
.hero-panel ul { list-style: none; padding: 0; margin: 0; }
.hero-panel li { display: grid; grid-template-columns: 31px 1fr; gap: .7rem; align-items: start; padding: .8rem 0; border-top: 1px solid rgba(255,255,255,.1); color: #dce8f1; }
.hero-panel li:first-child { border-top: 0; }
.check { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--green-500); font-weight: 900; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 48px; padding: .72rem 1.15rem; border: 1px solid transparent; border-radius: 10px; text-decoration: none; font-weight: 800; line-height: 1.2; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: var(--blue-600); }
.btn-primary:hover { color: #fff; background: #0867a5; }
.btn-accent { color: var(--navy-950); background: var(--green-500); }
.btn-accent:hover { color: var(--navy-950); background: #8bd454; }
.btn-outline { color: #fff; border-color: rgba(255,255,255,.45); background: transparent; }
.btn-outline:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline-dark { color: var(--navy-900); border-color: #aab9c7; background: #fff; }
.btn-outline-dark:hover { color: var(--navy-950); border-color: var(--navy-800); }
.btn-link { padding: 0; min-height: auto; color: var(--blue-700); border-radius: 0; }
.btn-link:hover { transform: none; }


.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.card { height: 100%; padding: 1.55rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 1px 0 rgba(7,24,43,.02); }
.card:hover { border-color: #bfd2df; box-shadow: var(--shadow-sm); }
.card h3 { margin: .45rem 0 .55rem; color: var(--navy-950); font-size: 1.2rem; line-height: 1.25; }
.card p { margin: 0 0 1rem; color: var(--muted); }
.card .btn-link { margin-top: auto; }
.service-card { display: flex; flex-direction: column; }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; background: var(--surface-blue); color: var(--blue-700); font-weight: 900; font-size: .92rem; letter-spacing: -.02em; }
.icon-box.green { color: #3f7e1f; background: #eff9e8; }
.icon-box.teal { color: #087b82; background: #e9f9fa; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
.value-panel { padding: 2rem; border-radius: var(--radius-lg); background: var(--navy-950); color: #fff; box-shadow: var(--shadow-lg); }
.value-panel h3 { margin-top: 0; font-size: 1.55rem; }
.value-panel p { color: #ccdbe6; }
.value-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.value-list li { position: relative; padding: .75rem 0 .75rem 1.8rem; border-top: 1px solid rgba(255,255,255,.1); }
.value-list li::before { content: ""; position: absolute; left: 0; top: 1.15rem; width: .7rem; height: .7rem; border-radius: 50%; background: var(--green-500); }

.process { counter-reset: process; }
.process-card { position: relative; padding: 1.5rem; border-top: 3px solid var(--teal-600); background: #fff; border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-sm); }
.process-card::before { counter-increment: process; content: "0" counter(process); display: block; margin-bottom: .9rem; color: var(--blue-700); font-size: .79rem; font-weight: 900; letter-spacing: .1em; }
.process-card h3 { margin: 0 0 .45rem; font-size: 1.05rem; }
.process-card p { margin: 0; color: var(--muted); font-size: .95rem; }

.metric-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.metric { padding: 1.4rem; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.055); }
.metric strong { display: block; color: #fff; font-size: 1.6rem; line-height: 1.2; }
.metric span { color: #c9d7e2; font-size: .93rem; }

.case-card { position: relative; overflow: hidden; }
.case-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(var(--teal-600), var(--green-500)); }
.case-type { color: var(--blue-700); font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.case-card h3 { margin-top: .4rem; }
.case-result { padding-top: .85rem; border-top: 1px solid var(--line); color: var(--ink) !important; font-weight: 700; }

.cta-band { position: relative; overflow: hidden; padding: 3rem; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(130deg, var(--navy-900), var(--blue-700)); box-shadow: var(--shadow-lg); }
.cta-band::after { content: ""; position: absolute; width: 240px; height: 240px; right: -85px; top: -120px; border-radius: 50%; border: 1px solid rgba(255,255,255,.17); box-shadow: 0 0 0 45px rgba(255,255,255,.035), 0 0 0 90px rgba(255,255,255,.025); }
.cta-band > * { position: relative; z-index: 1; }
.cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { margin: 0 0 .55rem; font-size: clamp(1.7rem,3vw,2.5rem); line-height: 1.15; }
.cta-band p { max-width: 690px; margin: 0; color: #d9e6ef; }

.page-hero { position: relative; overflow: hidden; padding: 5rem 0 4.5rem; color: #fff; background: var(--navy-950); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 5%, rgba(0,174,184,.2), transparent 30%), linear-gradient(120deg, transparent 0 64%, rgba(255,255,255,.035) 64% 65%, transparent 65%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 880px; margin: .4rem 0 .9rem; font-size: clamp(2.7rem,5vw,4.4rem); line-height: 1.04; letter-spacing: -.05em; }
.page-hero p:not(.eyebrow) { max-width: 780px; margin: 0; color: #d3e1ec; font-size: 1.13rem; }

.jump-nav { position: sticky; top: 82px; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); backdrop-filter: blur(10px); }
.jump-nav .container { display: flex; gap: .4rem; overflow-x: auto; padding-top: .7rem; padding-bottom: .7rem; scrollbar-width: thin; }
.jump-nav a { flex: 0 0 auto; padding: .45rem .7rem; border-radius: 8px; color: var(--ink); text-decoration: none; font-size: .86rem; font-weight: 750; }
.jump-nav a:hover { background: var(--surface-blue); color: var(--blue-700); }

.anchor-alias { display: block; scroll-margin-top: 155px; }
.service-section { scroll-margin-top: 155px; padding: 4.5rem 0; border-bottom: 1px solid var(--line); }
.service-section:last-of-type { border-bottom: 0; }
.service-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 4rem; }
.service-section h2 { margin: .35rem 0 1rem; color: var(--navy-950); font-size: clamp(1.9rem,3.5vw,2.8rem); line-height: 1.14; letter-spacing: -.03em; }
.service-section h3 { margin: 1.5rem 0 .5rem; color: var(--navy-900); font-size: 1.08rem; }
.check-list { list-style: none; padding: 0; margin: 1rem 0; columns: 2; column-gap: 2rem; }
.check-list li { position: relative; break-inside: avoid; padding: .42rem 0 .42rem 1.5rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-600); font-weight: 900; }
.download-card { margin-top: 1.3rem; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface-soft); }
.download-card a { font-weight: 800; }

.timeline { position: relative; margin: 1.5rem 0; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: .35rem; top: .5rem; bottom: .5rem; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding: 0 0 1.4rem; }
.timeline-item::before { content: ""; position: absolute; left: -2rem; top: .45rem; width: .75rem; height: .75rem; border-radius: 50%; background: var(--teal-600); box-shadow: 0 0 0 5px #e8f8f9; }
.timeline-item h3 { margin: 0 0 .3rem; }
.timeline-item p { margin: 0; color: var(--muted); }

.tag-list { display: flex; flex-wrap: wrap; gap: .55rem; padding: 0; margin: 1rem 0; list-style: none; }
.tag-list li { padding: .42rem .72rem; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: .88rem; font-weight: 700; }

.form-wrap { display: grid; grid-template-columns: 1.25fr .75fr; gap: 3rem; align-items: start; }
.form-card { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
.field label, .fieldset-label { color: var(--navy-900); font-size: .91rem; font-weight: 800; }
.required { color: var(--error); }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid #b9c7d3; border-radius: 9px; background: #fff; color: var(--ink); padding: .72rem .8rem;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal-600); outline: 3px solid rgba(0,174,184,.14); }
.field textarea { min-height: 155px; resize: vertical; }
.field small { color: var(--muted); }
.checkbox-row { display: grid; grid-template-columns: auto 1fr; gap: .6rem; align-items: start; }
.checkbox-row input { margin-top: .35rem; width: 18px; height: 18px; }
.form-status { display: none; margin: 0 0 1rem; padding: .85rem 1rem; border-radius: 9px; font-weight: 700; }
.form-status.is-visible { display: block; }
.form-status.error { color: var(--error); border: 1px solid #efc6c6; background: #fff2f2; }
.form-status.success { color: var(--success); border: 1px solid #bfe1cc; background: #eefaf2; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-panel { padding: 1.8rem; border-radius: var(--radius); background: var(--navy-950); color: #fff; }
.contact-panel h2 { margin-top: 0; }
.contact-panel a { color: #8ee1e5; }
.contact-item { padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact-item:first-of-type { border-top: 0; }
.contact-item strong { display: block; color: #fff; }
.contact-item span { color: #c8d7e2; }

.legal h2 { margin-top: 2.3rem; color: var(--navy-950); line-height: 1.25; }
.legal h3 { margin-top: 1.6rem; color: var(--navy-900); }
.legal ul { padding-left: 1.25rem; }
.legal li + li { margin-top: .5rem; }
.notice { padding: 1rem 1.2rem; border-left: 4px solid var(--teal-600); background: var(--surface-blue); }

.site-footer { padding-top: 4rem; color: #cbd8e3; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand img { width: 220px; }
.footer-brand p { max-width: 350px; color: #afc0ce; font-size: .92rem; }
.site-footer h2 { margin: 0 0 .85rem; color: #fff; font-size: .96rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li + li { margin-top: .45rem; }
.site-footer a { color: #cbd8e3; text-decoration: none; }
.site-footer a:hover { color: #8ee1e5; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding: 1.15rem 0; border-top: 1px solid rgba(255,255,255,.1); color: #9fb1c0; font-size: .84rem; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 1000px) {
  .topbar { display: none; }
  .site-header { top: 0; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 205px; }
  .nav-toggle { display: inline-flex; }
  .site-nav { position: absolute; left: 0; right: 0; top: 72px; display: none; flex-direction: column; align-items: stretch; gap: .2rem; padding: .8rem 1rem 1rem; border-bottom: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .75rem; }
  .site-nav .nav-cta { margin: .3rem 0 0; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 5rem 0; gap: 2.5rem; }
  .hero-panel { max-width: 700px; }
  .grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .split, .service-layout, .form-wrap { grid-template-columns: 1fr; gap: 2.2rem; }
  .jump-nav { top: 72px; }
  .service-section { scroll-margin-top: 140px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 4rem 0; }
  .section-sm { padding: 2.8rem 0; }
  .hero-grid { padding: 4rem 0; }
  .hero h1 { font-size: clamp(2.65rem,13vw,4rem); }
  .page-hero { padding: 4rem 0 3.5rem; }
  .grid-2, .grid-3, .grid-4, .metric-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .check-list { columns: 1; }
  .cta-band { padding: 2rem 1.4rem; }
  .cta-grid { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: .7rem; }
}

@media (max-width: 480px) {
  .container, .narrow { width: min(calc(100% - 1.25rem), var(--container)); }
  .brand img { width: 180px; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.center-actions { justify-content: center; }

/* SEO navigation and dedicated service-page components */
.breadcrumbs { border-bottom: 1px solid var(--line); background: var(--surface-soft); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; min-height: 44px; padding-top: .55rem; padding-bottom: .55rem; margin-top: 0; margin-bottom: 0; list-style: none; font-size: .84rem; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: .45rem; }
.breadcrumbs li + li::before { content: "/"; color: #8a9aaa; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue-700); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 700; }
.service-detail-hero .hero-actions { margin-top: 1.6rem; }
.service-overview { align-items: start; }
.service-overview .value-panel h2 { margin-top: 0; font-size: 1.55rem; }
.coverage-card h3 { margin-top: 0; }
.detail-link-group { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.25rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.1rem 2.4rem 1.1rem 0; color: var(--navy-950); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .2rem; top: .85rem; color: var(--blue-700); font-size: 1.45rem; line-height: 1; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin: 0; padding: 0 2.4rem 1.2rem 0; color: var(--muted); }
.related-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.related-links a { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.2rem; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-sm); color: #fff; text-decoration: none; background: rgba(255,255,255,.055); font-weight: 800; }
.related-links a:hover { border-color: rgba(255,255,255,.42); color: #8ee1e5; background: rgba(255,255,255,.09); }

@media (max-width: 760px) {
  .related-links { grid-template-columns: 1fr; }
  .breadcrumbs ol { min-height: 40px; font-size: .78rem; }
}
