@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Inter+Tight:wght@600;700;750&display=swap");

:root {
  --ink: #171b1e;
  --ink-soft: #262d31;
  --paper: #fafaf8;
  --white: #ffffff;
  --cyan: #00aee8;
  --cyan-dark: #007eaa;
  --green: #75b927;
  --green-dark: #4f8614;
  --coral: #ef6a58;
  --mist: #e6ecee;
  --muted: #667176;
  --max-width: 1240px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
.button {
  min-height: 46px;
}

:focus-visible {
  outline: 3px solid rgba(0, 174, 232, 0.4);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(23, 27, 30, 0.97);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 61px;
  height: 61px;
  object-fit: contain;
}

.site-nav {
  justify-self: end;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 27px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: #edf3f4;
  font-size: 0.875rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  white-space: nowrap;
  color: #edf3f4;
  font-size: 0.875rem;
  font-weight: 600;
}

.header-phone i {
  margin-right: 7px;
  color: var(--cyan);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--green);
  color: #10150c;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  background: #8bd33a;
}

.button-cyan {
  background: var(--cyan);
  color: #061114;
}

.button-cyan:hover {
  background: #37c7f1;
}

.button-outline {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.button-outline:hover {
  border-color: var(--cyan);
  background: transparent;
  color: var(--cyan);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 3.5vw, 3.4rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.25;
}

p {
  margin-top: 0;
}

.hero {
  min-height: calc(100vh - var(--header-height) - 88px);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  align-items: stretch;
}

.hero-copy {
  align-self: center;
  padding: 70px 56px 70px max(24px, calc((100vw - var(--max-width)) / 2));
}

.hero-copy h1 {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 5.4vw, 5.15rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: #d6dfe1;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 40px;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: #d6dfe1;
  font-size: 0.88rem;
}

.hero-signals span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-signals i {
  color: var(--cyan);
}

.hero-media {
  position: relative;
  min-height: 640px;
  background: #263136;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--mist);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 112px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-content: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid var(--mist);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item i {
  color: var(--cyan-dark);
  font-size: 1.5rem;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding-block: 96px;
}

.section-white {
  background: var(--white);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.needs-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.needs-content {
  padding: 64px max(34px, calc((100vw - var(--max-width)) / 2)) 64px 48px;
  background: var(--white);
}

.needs-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.need-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--mist);
}

.need-item {
  min-height: 128px;
  padding: 25px 26px 22px 0;
  border-bottom: 1px solid var(--mist);
}

.need-item:nth-child(odd) {
  border-right: 1px solid var(--mist);
}

.need-item:nth-child(even) {
  padding-left: 26px;
}

.need-item i {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 1.35rem;
}

.need-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.path-step {
  position: relative;
  min-height: 225px;
  padding: 18px 34px 18px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.path-step + .path-step {
  padding-left: 34px;
}

.path-step:last-child {
  border-right: 0;
}

.path-number {
  display: block;
  margin-bottom: 28px;
  color: var(--cyan);
  font-family: "Inter Tight", sans-serif;
  font-size: 2.35rem;
  font-weight: 700;
}

.path-step p {
  color: #c8d1d3;
  font-size: 0.92rem;
}

.section:not(.section-dark) .path-step {
  border-color: var(--mist);
}

.section:not(.section-dark) .path-step p {
  color: var(--muted);
}

.about-band,
.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
}

.about-media,
.feature-media {
  min-height: 590px;
}

.about-media img,
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media img {
  object-position: center 25%;
}

.about-copy,
.feature-copy {
  align-self: center;
  max-width: 680px;
  padding: 74px clamp(42px, 7vw, 110px);
}

.credential-list,
.check-list,
.resource-list {
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.credential-list li,
.check-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 28px;
}

.credential-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
}

.feature-copy .eyebrow {
  color: var(--cyan-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}

.testimonial {
  padding: 42px 52px;
}

.testimonial + .testimonial {
  border-left: 1px solid var(--mist);
}

.testimonial i {
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 1.7rem;
}

.testimonial blockquote {
  margin: 0 0 24px;
  color: #3d464a;
  font-size: 1rem;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.82rem;
}

.location-band {
  display: grid;
  grid-template-columns: minmax(310px, 0.75fr) 1.25fr;
  min-height: 530px;
  background: var(--ink);
  color: var(--white);
}

.location-copy {
  padding: 70px 52px max(70px, calc((100vw - var(--max-width)) / 2));
}

.contact-lines {
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
}

.contact-lines li {
  display: flex;
  gap: 13px;
  margin-bottom: 13px;
  color: #d7e0e2;
}

.contact-lines i {
  width: 18px;
  margin-top: 6px;
  color: var(--cyan);
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.cta-band {
  padding-block: 38px;
  background: var(--coral);
  color: #17100e;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 62px 0 28px;
  background: #111618;
  color: #d5dfe1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1fr;
  gap: 50px;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 300px;
  color: #aebabc;
  font-size: 0.88rem;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  margin-bottom: 9px;
}

.footer-column a,
.footer-column li {
  color: #b8c4c6;
  font-size: 0.86rem;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #819093;
  font-size: 0.78rem;
}

.page-hero {
  padding: 88px 0 82px;
  background: var(--ink);
  color: var(--white);
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.page-hero p {
  max-width: 560px;
  margin-bottom: 0;
  color: #c9d3d5;
  font-size: 1.05rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 72px;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin-top: 54px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 32px;
}

.side-panel {
  align-self: start;
  padding: 30px;
  background: var(--ink);
  color: var(--white);
}

.side-panel h3 {
  font-size: 1.5rem;
}

.side-panel p {
  color: #cbd5d7;
}

.services-list {
  border-top: 1px solid var(--mist);
}

.service-row {
  display: grid;
  grid-template-columns: 64px 0.7fr 1.3fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--mist);
}

.service-row > i {
  color: var(--cyan-dark);
  font-size: 1.75rem;
}

.service-row h3,
.service-row p {
  margin: 0;
}

.service-row p {
  color: var(--muted);
}

.resource-list {
  border-top: 1px solid var(--mist);
}

.resource-list li {
  border-bottom: 1px solid var(--mist);
}

.resource-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-weight: 600;
}

.resource-list a:hover {
  color: var(--cyan-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #b9c4c7;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-status {
  grid-column: 1 / -1;
  padding: 16px;
  border-left: 4px solid var(--green);
  background: #edf7e4;
}

@media (max-width: 1040px) {
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    padding: 24px;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav[data-open="true"] {
    display: block;
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-phone {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--mist);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

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

  .header-actions .button {
    padding-inline: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .hero-media {
    min-height: 250px;
    flex: 0 0 250px;
  }

  .hero-copy {
    padding: 28px 20px 38px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .hero-copy h1 {
    font-size: 2.8rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .hero-actions {
    margin: 26px 0 32px;
  }

  .hero-signals {
    gap: 14px;
    flex-direction: column;
  }

  .trust-grid,
  .need-list,
  .path-grid,
  .about-band,
  .feature-band,
  .testimonials-grid,
  .location-band,
  .page-hero .container,
  .content-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--mist);
  }

  .needs-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .needs-content {
    padding: 48px 20px;
  }

  .needs-media img {
    min-height: 330px;
  }

  .need-item:nth-child(odd) {
    border-right: 0;
  }

  .need-item:nth-child(even) {
    padding-left: 0;
  }

  .section {
    padding-block: 68px;
  }

  .path-step,
  .path-step + .path-step {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .path-number {
    margin-bottom: 12px;
  }

  .about-media,
  .feature-media {
    min-height: 410px;
  }

  .about-copy,
  .feature-copy {
    padding: 48px 20px;
  }

  .testimonial {
    padding: 32px 0;
  }

  .testimonial + .testimonial {
    border-top: 1px solid var(--mist);
    border-left: 0;
  }

  .location-copy {
    padding: 48px 20px;
  }

  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 64px 0;
  }

  .page-hero .container {
    gap: 28px;
  }

  .service-row {
    grid-template-columns: 42px 1fr;
  }

  .service-row p {
    grid-column: 2;
  }

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

  .field-full {
    grid-column: auto;
  }
}

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

  * {
    transition-duration: 0.01ms !important;
  }
}

/* Homepage recreation based on the selected Human Performance design. */
.home-page {
  background: #ffffff;
  color: #171b1e;
  line-height: 1.45;
}

.home-page .site-header {
  position: absolute;
  width: 100%;
  height: 94px;
  background: transparent;
  border-bottom: 0;
}

.home-page .header-inner {
  width: min(calc(100% - 72px), 1360px);
  gap: 44px;
}

.home-page .brand img {
  width: 112px;
  height: 112px;
}

.home-page .brand {
  align-self: start;
  margin-top: 24px;
}

.home-page .site-nav {
  justify-self: end;
}

.home-page .site-nav ul {
  gap: 44px;
}

.home-page .site-nav a {
  color: #ffffff;
  font-size: 0.88rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.home-page .site-nav a[aria-current="page"] {
  position: relative;
  color: #ffffff;
}

.home-page .site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
}

.home-page .header-actions {
  gap: 12px;
}

.home-page .header-actions .button {
  min-width: 170px;
  min-height: 54px;
  padding-inline: 24px;
  color: #ffffff;
}

.home-hero {
  min-height: 808px;
  overflow: hidden;
  background-color: #171b1e;
  background-image: url("assets/hero-treatment.png");
  background-position: center top;
  background-size: cover;
  color: #ffffff;
}

.home-hero-inner {
  width: min(calc(100% - 48px), 1205px);
  min-height: 808px;
  display: flex;
  align-items: flex-start;
}

.home-hero-copy {
  width: 600px;
  padding-top: 205px;
}

.home-hero-copy h1 {
  margin-bottom: 25px;
  font-size: 5rem;
  line-height: 0.98;
}

.title-rule {
  display: block;
  width: 76px;
  height: 4px;
  margin-bottom: 32px;
  background: var(--cyan);
}

.home-hero-copy > p {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 1.03rem;
  line-height: 1.55;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 29px 0 38px;
}

.home-hero-actions .button {
  min-width: 224px;
  min-height: 58px;
  color: #ffffff;
  font-size: 0.95rem;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 0.95rem;
  font-weight: 700;
}

.text-action i {
  color: var(--cyan);
}

.home-hero-signals {
  display: flex;
  align-items: flex-start;
  gap: 42px;
  color: #ffffff;
}

.home-hero-signals span,
.home-hero-signals a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-hero-signals i {
  color: var(--cyan);
  font-size: 1.65rem;
}

.home-hero-signals b {
  font-size: 0.78rem;
  line-height: 1.38;
}

.home-needs {
  min-height: 430px;
  display: grid;
  grid-template-columns: 58.3% 41.7%;
  background: #ffffff;
}

.home-needs-copy {
  align-self: center;
  padding: 34px 70px 48px max(56px, calc((100vw - 1205px) / 2));
}

.home-needs-copy h2 {
  margin-bottom: 24px;
  font-size: 2.72rem;
  line-height: 1.08;
}

.home-needs-copy > p {
  margin-bottom: 0;
  color: #5f676b;
  font-size: 0.96rem;
}

.home-need-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 49px;
}

.home-need-list article {
  min-width: 0;
}

.home-need-list i {
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 2.85rem;
}

.home-need-list h3 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.home-needs-media {
  min-height: 430px;
}

.home-needs-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-path {
  min-height: 420px;
  padding: 46px 0 40px;
  background: #171b1e;
  color: #ffffff;
}

.home-section-title {
  text-align: center;
}

.home-section-title h2 {
  margin-bottom: 13px;
  font-size: 2.15rem;
}

.home-section-title .title-rule {
  width: 52px;
  height: 3px;
  margin: 0 auto;
}

.home-path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}

.home-path-grid article {
  position: relative;
  min-height: 220px;
  padding: 0 48px 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.home-path-grid article:first-child {
  padding-left: 14px;
}

.home-path-grid article:last-child {
  border-right: 0;
}

.home-path-grid .path-number {
  margin-bottom: 3px;
  color: var(--cyan);
  font-size: 3.1rem;
  line-height: 1;
}

.home-path-grid h3 {
  margin-bottom: 13px;
  font-size: 1.5rem;
}

.home-path-grid p {
  max-width: 218px;
  color: #d6dddf;
  font-size: 0.9rem;
  line-height: 1.5;
}

.path-icon {
  position: absolute;
  bottom: 0;
  left: 24px;
  color: var(--cyan);
  font-size: 3rem;
}

.home-path-grid article:first-child .path-icon {
  left: 14px;
}

.path-arrow {
  position: absolute;
  top: 50%;
  right: -11px;
  z-index: 2;
  color: var(--cyan);
  font-size: 2.2rem;
  transform: translateY(-50%);
}

.home-about {
  min-height: 632px;
  display: grid;
  grid-template-columns: 44% 56%;
  background: #ffffff;
}

.home-about-media {
  min-height: 632px;
}

.home-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.home-about-copy {
  align-self: center;
  max-width: 760px;
  padding: 58px 80px;
}

.home-about-copy .eyebrow,
.home-video-copy .eyebrow,
.home-location-copy .eyebrow {
  margin-bottom: 15px;
  color: var(--cyan-dark);
  font-size: 0.78rem;
}

.home-about-copy h2,
.home-video-copy h2 {
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 1.04;
}

.home-about-copy > p:not(.eyebrow):not(.qualifications) {
  max-width: 610px;
  margin-bottom: 15px;
  color: #525b5f;
  font-size: 0.93rem;
}

.qualifications {
  margin: 20px 0;
  color: var(--cyan-dark);
  font-weight: 700;
}

.home-check-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.home-check-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 24px;
  color: #4f585c;
  font-size: 0.86rem;
}

.home-check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
}

.home-outline-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 11px 18px;
  border: 1px solid #a8b0b3;
  font-size: 0.84rem;
  font-weight: 600;
}

.home-video {
  min-height: 484px;
  display: grid;
  grid-template-columns: 42% 58%;
  background: #ffffff;
}

.home-video-copy {
  align-self: center;
  max-width: 620px;
  padding: 30px 68px 30px max(56px, calc((100vw - 1240px) / 2));
}

.home-video-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: #525b5f;
  font-size: 0.94rem;
}

.home-video-copy .home-check-list {
  margin: 24px 0 27px;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--cyan-dark);
  font-size: 0.87rem;
  font-weight: 700;
}

.home-video-media {
  min-height: 484px;
}

.home-video-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-testimonials {
  min-height: 472px;
  padding: 52px 0 43px;
  background: #ffffff;
}

.home-testimonials .home-section-title h2 {
  font-size: 2.2rem;
}

.home-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 42px;
}

.home-testimonial-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
}

.home-testimonial-grid i {
  color: var(--coral);
  font-size: 1.85rem;
}

.home-testimonial-grid blockquote {
  min-height: 133px;
  margin: 0 0 16px;
  color: #4f585c;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.55;
}

.home-testimonial-grid strong,
.home-testimonial-grid span {
  display: block;
  font-size: 0.88rem;
}

.home-testimonial-grid strong {
  color: var(--cyan-dark);
}

.home-testimonial-grid span {
  color: #697478;
}

.home-reviews-link {
  display: block;
  margin-top: 31px;
  color: var(--cyan-dark);
  font-size: 0.83rem;
  font-weight: 700;
  text-align: center;
}

.home-reviews-link span {
  margin-left: 12px;
  color: #21aee2;
  letter-spacing: 2px;
}

.home-location {
  height: 405px;
  min-height: 405px;
  display: grid;
  grid-template-columns: 34% 66%;
  background: #171b1e;
  color: #ffffff;
}

.home-location-copy {
  padding: 36px 45px 32px max(56px, calc((100vw - 1240px) / 2));
}

.home-location-copy h2 {
  margin-bottom: 23px;
  font-size: 2.7rem;
}

.home-location-copy p {
  margin-bottom: 23px;
  color: #e2e8e9;
  font-size: 0.86rem;
  line-height: 1.45;
}

.home-location-copy p b {
  color: var(--cyan);
}

.home-location-copy > a {
  display: block;
  margin-top: 10px;
  color: var(--cyan);
  font-weight: 600;
}

.home-location-media {
  position: relative;
  min-height: 405px;
  overflow: hidden;
}

.home-location-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-booking-panel {
  position: absolute;
  top: 50%;
  right: max(48px, calc((100vw - 1240px) / 2));
  width: 360px;
  padding: 34px 38px;
  background: rgba(23, 27, 30, 0.96);
  transform: translateY(-50%);
}

.home-booking-panel h2 {
  margin-bottom: 17px;
  font-size: 2rem;
}

.home-booking-panel p {
  margin-bottom: 27px;
  color: #ffffff;
  font-size: 1rem;
}

.home-booking-panel .button {
  width: 100%;
  min-height: 56px;
  margin-bottom: 24px;
  color: #ffffff;
}

.home-booking-panel > a:last-child {
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
}

.home-footer {
  min-height: 354px;
  padding: 42px 0 22px;
  background: #171b1e;
}

.home-footer .footer-grid {
  grid-template-columns: 0.8fr 0.72fr 0.9fr 1.45fr;
  gap: 58px;
  align-items: start;
}

.home-footer .footer-brand img {
  width: 90px;
  height: 90px;
  margin: 0;
}

.home-footer .footer-column h3 {
  margin-bottom: 14px;
}

.home-footer .footer-column li {
  margin-bottom: 6px;
}

.home-footer .footer-summary p {
  color: #aebabc;
  font-size: 0.82rem;
  line-height: 1.65;
}

.home-footer .footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
}

@media (max-width: 1040px) {
  .home-page .site-header {
    height: 82px;
  }

  .home-page .header-inner {
    width: min(calc(100% - 40px), 1360px);
  }

  .home-page .brand img {
    width: 68px;
    height: 68px;
  }

  .home-page .brand {
    margin-top: 7px;
  }

  .home-page .site-nav {
    top: 82px;
  }

  .home-hero-copy {
    width: 540px;
  }

  .home-hero-copy h1 {
    font-size: 4.45rem;
  }

  .home-needs {
    grid-template-columns: 62% 38%;
  }

  .home-need-list {
    gap: 12px;
  }

  .home-path-grid article {
    padding-right: 30px;
  }

  .home-about-copy,
  .home-video-copy {
    padding-inline: 48px;
  }
}

@media (max-width: 760px) {
  .home-page .site-header {
    height: 72px;
  }

  .home-page .header-inner {
    width: calc(100% - 28px);
  }

  .home-page .brand img {
    width: 54px;
    height: 54px;
  }

  .home-page .brand {
    margin-top: 9px;
  }

  .home-page .header-actions .button {
    min-width: 0;
    min-height: 44px;
    padding-inline: 12px;
  }

  .home-page .site-nav {
    top: 72px;
    background: #171b1e;
  }

  .home-hero,
  .home-hero-inner {
    min-height: 760px;
  }

  .home-hero {
    background-position: 61% center;
  }

  .home-hero-inner {
    width: calc(100% - 38px);
  }

  .home-hero-copy {
    width: 100%;
    padding-top: 145px;
  }

  .home-hero-copy h1 {
    font-size: 3.25rem;
  }

  .home-hero-copy > p {
    font-size: 0.94rem;
  }

  .home-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
    margin: 25px 0 34px;
  }

  .home-hero-actions .button {
    min-width: 200px;
  }

  .home-hero-signals {
    flex-wrap: wrap;
    gap: 20px 28px;
  }

  .home-needs,
  .home-about,
  .home-video,
  .home-location {
    grid-template-columns: 1fr;
  }

  .home-location {
    height: auto;
  }

  .home-needs-copy,
  .home-about-copy,
  .home-video-copy,
  .home-location-copy {
    padding: 48px 20px;
  }

  .home-needs-copy h2,
  .home-about-copy h2,
  .home-video-copy h2,
  .home-location-copy h2 {
    font-size: 2.35rem;
  }

  .home-needs-copy br,
  .home-about-copy h2 br,
  .home-video-copy h2 br {
    display: none;
  }

  .home-need-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  .home-needs-media,
  .home-about-media,
  .home-video-media {
    min-height: 350px;
  }

  .home-path {
    padding-inline: 20px;
  }

  .home-path-grid {
    grid-template-columns: 1fr;
  }

  .home-path-grid article,
  .home-path-grid article:first-child {
    min-height: 190px;
    padding: 22px 42px 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .home-path-grid article:last-child {
    border-bottom: 0;
  }

  .path-icon,
  .home-path-grid article:first-child .path-icon {
    bottom: 25px;
    left: auto;
    right: 4px;
  }

  .path-arrow {
    display: none;
  }

  .home-testimonials {
    padding-inline: 20px;
  }

  .home-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .home-testimonial-grid blockquote {
    min-height: auto;
  }

  .home-location-media {
    min-height: 500px;
  }

  .home-booking-panel {
    right: 20px;
    left: 20px;
    width: auto;
  }

  .home-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Clinical Precision homepage */
.clinical-page {
  --clinical-ink: #1a2228;
  --clinical-blue: #009fda;
  --clinical-green: #5cac35;
  --clinical-line: #dce4e8;
  background: #ffffff;
  color: var(--clinical-ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

.clinical-page h1,
.clinical-page h2,
.clinical-page h3,
.clinical-page p {
  margin-top: 0;
}

.clinical-page h1,
.clinical-page .clinical-section-heading h2,
.clinical-page .clinical-about-copy > h2,
.clinical-page .clinical-location-copy h2,
.clinical-page .clinical-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.clinical-shell {
  width: min(calc(100% - 80px), 1280px);
  margin-inline: auto;
}

.clinical-header {
  position: relative;
  height: 126px;
  background: #182126;
}

.clinical-header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 34px;
}

.clinical-header .brand img {
  width: 92px;
  height: 92px;
}

.clinical-header .site-nav {
  justify-self: end;
}

.clinical-header .site-nav ul {
  gap: 29px;
}

.clinical-header .site-nav a {
  position: relative;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

.clinical-header .site-nav a[aria-current="page"] {
  color: var(--clinical-blue);
}

.clinical-header .site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 0;
  height: 2px;
  background: var(--clinical-blue);
  content: "";
}

.clinical-header-actions {
  display: flex;
  align-items: center;
}

.clinical-phone {
  white-space: nowrap;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 500;
}

.clinical-phone i {
  margin-right: 12px;
}

.clinical-hero {
  height: 690px;
  min-height: 690px;
  background-color: #f9fafb;
  background-image:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.97) 34%, rgba(255, 255, 255, 0.78) 52%, rgba(255, 255, 255, 0.12) 76%),
    url("assets/clinical-hero-background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.clinical-hero-inner {
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 145px;
}

.clinical-hero-copy {
  width: 590px;
  margin-top: 12px;
}

.clinical-eyebrow {
  margin-bottom: 17px;
  color: var(--clinical-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clinical-hero h1 {
  margin-bottom: 45px;
  color: #21272d;
  font-size: 5rem;
  line-height: 1.12;
}

.clinical-lead {
  margin-bottom: 42px;
  color: #384148;
  font-size: 1.15rem;
  line-height: 1.72;
}

.clinical-credentials {
  margin-bottom: 56px;
  font-size: 1.04rem;
  font-weight: 600;
}

.clinical-hero-actions {
  display: flex;
  gap: 28px;
}

.clinical-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.clinical-button-primary {
  min-width: 260px;
  background: var(--clinical-blue);
  color: #ffffff;
}

.clinical-button-outline {
  min-width: 150px;
  border-color: #7d858a;
  background: #ffffff;
  color: #242c31;
}

.clinical-trust {
  height: 171px;
  border-bottom: 1px solid var(--clinical-line);
  background: #ffffff;
}

.clinical-trust-grid {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.clinical-trust article {
  min-width: 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 17px;
  min-height: 74px;
  padding: 0 26px;
  border-right: 1px solid var(--clinical-line);
}

.clinical-trust article:first-child {
  padding-left: 14px;
}

.clinical-trust article:last-child {
  border-right: 0;
}

.clinical-trust article > i {
  color: var(--clinical-blue);
  font-size: 3rem;
  text-align: center;
}

.clinical-trust h2 {
  margin-bottom: 5px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
}

.clinical-trust p {
  margin-bottom: 0;
  color: #475259;
  font-size: 0.84rem;
  line-height: 1.55;
}

.clinical-services {
  height: 785px;
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--clinical-line);
  background: #fbfbfb;
}

.clinical-section-heading {
  text-align: center;
}

.clinical-section-heading .clinical-eyebrow {
  margin-bottom: 8px;
}

.clinical-section-heading h2 {
  margin-bottom: 30px;
  font-size: 2.55rem;
  line-height: 1.1;
}

.clinical-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}

.clinical-services-grid article {
  min-width: 0;
}

.clinical-services-grid img {
  width: 100%;
  height: 248px;
  object-fit: cover;
}

.clinical-services-grid article:nth-child(1) img,
.clinical-services-grid article:nth-child(4) img {
  object-position: 72% center;
}

.clinical-services-grid article:nth-child(2) img,
.clinical-services-grid article:nth-child(5) img {
  object-position: 66% center;
}

.clinical-services-grid article:nth-child(3) img,
.clinical-services-grid article:nth-child(6) img {
  object-position: 70% center;
}

.clinical-services-grid h3 {
  min-height: 48px;
  margin: 14px 0 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
}

.clinical-services-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clinical-services-grid li {
  margin-bottom: 5px;
  color: #404a50;
  font-size: 0.78rem;
  line-height: 1.4;
}

.clinical-services-grid li::before {
  margin-right: 5px;
  content: "•";
}

.clinical-center {
  margin-top: 18px;
  text-align: center;
}

.clinical-button-blue-outline {
  min-width: 210px;
  border-color: var(--clinical-blue);
  background: transparent;
  color: #007cab;
}

.clinical-about {
  height: 604px;
  border-bottom: 1px solid var(--clinical-line);
  background: #ffffff;
}

.clinical-about-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 43% 57%;
  gap: 70px;
  align-items: center;
}

.clinical-about-media {
  height: 510px;
  overflow: hidden;
}

.clinical-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.clinical-about-copy {
  padding-right: 10px;
}

.clinical-about-copy > h2 {
  margin-bottom: 22px;
  font-size: 2.32rem;
  line-height: 1.15;
}

.clinical-about-copy > p:not(.clinical-eyebrow) {
  margin-bottom: 21px;
  color: #667077;
  font-size: 0.94rem;
  line-height: 1.65;
}

.clinical-about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin: 39px 0 23px;
}

.clinical-about-points i {
  margin-bottom: 14px;
  color: var(--clinical-blue);
  font-size: 2.35rem;
}

.clinical-about-points h3 {
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}

.clinical-about-points p {
  margin-bottom: 0;
  color: #687279;
  font-size: 0.77rem;
  line-height: 1.5;
}

.clinical-button-green {
  min-width: 154px;
  background: var(--clinical-green);
  color: #ffffff;
}

.clinical-testimonials {
  height: 448px;
  padding: 44px 0 28px;
  border-bottom: 1px solid var(--clinical-line);
  background: #ffffff;
}

.clinical-testimonials .clinical-section-heading h2 {
  margin-bottom: 36px;
  font-size: 2.05rem;
}

.clinical-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.clinical-quotes article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
}

.clinical-quotes article + article {
  padding-left: 54px;
  border-left: 1px solid var(--clinical-line);
}

.clinical-quotes > article > i {
  color: var(--clinical-green);
  font-size: 2.25rem;
}

.clinical-quotes blockquote {
  min-height: 145px;
  margin: 0 0 14px;
  color: #404a50;
  font-size: 0.87rem;
  line-height: 1.75;
}

.clinical-reviewer {
  display: flex;
  align-items: center;
  gap: 13px;
}

.clinical-reviewer img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.clinical-reviewer p {
  margin-bottom: 0;
}

.clinical-reviewer strong,
.clinical-reviewer span {
  display: block;
  font-size: 0.78rem;
}

.clinical-reviewer strong {
  color: var(--clinical-blue);
}

.clinical-reviewer span {
  color: #758087;
}

.clinical-reviews-link {
  display: block;
  margin-top: 17px;
  color: var(--clinical-blue);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.clinical-reviews-link i {
  margin-left: 13px;
}

.clinical-location {
  height: 451px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--clinical-line);
  background: #ffffff;
}

.clinical-location-grid {
  display: grid;
  grid-template-columns: 43% 25% 32%;
  align-items: center;
}

.clinical-map {
  position: relative;
  height: 330px;
  overflow: hidden;
  background:
    linear-gradient(34deg, transparent 43%, #f2cbd0 44%, #f2cbd0 47%, transparent 48%),
    linear-gradient(91deg, transparent 61%, #d6ecef 62%, #d6ecef 100%),
    #edf2e9;
}

.map-road {
  position: absolute;
  height: 12px;
  background: #ffffff;
  box-shadow: 0 0 0 1px #d8ddda;
  transform-origin: left center;
}

.map-road-a {
  top: 42px;
  left: -22px;
  width: 430px;
  transform: rotate(34deg);
}

.map-road-b {
  top: 252px;
  left: 28px;
  width: 380px;
  transform: rotate(-28deg);
}

.map-road-c {
  top: 0;
  left: 180px;
  width: 360px;
  transform: rotate(82deg);
}

.map-water {
  position: absolute;
  top: 0;
  right: 0;
  width: 75px;
  height: 100%;
  background: #d4ebee;
}

.map-label,
.map-place {
  position: absolute;
  z-index: 2;
  color: #455159;
  font-size: 0.74rem;
  line-height: 1.2;
}

.map-label {
  top: 74px;
  right: 102px;
  font-weight: 700;
}

.map-place {
  top: 146px;
  right: 72px;
}

.map-pin {
  position: absolute;
  top: 133px;
  right: 155px;
  z-index: 3;
  color: var(--clinical-blue);
  font-size: 2.7rem;
}

.clinical-location-copy,
.clinical-contact-copy {
  min-height: 245px;
  padding-left: 65px;
}

.clinical-contact-copy {
  border-left: 1px solid var(--clinical-line);
}

.clinical-location-copy h2 {
  margin-bottom: 18px;
  font-size: 2.05rem;
}

.clinical-location-copy > p:not(.clinical-eyebrow),
.clinical-contact-copy p {
  margin-bottom: 21px;
  color: #3f4a50;
  font-size: 0.88rem;
  line-height: 1.55;
}

.clinical-location-copy .clinical-button {
  min-width: 170px;
  padding-inline: 14px;
}

.clinical-location-copy .clinical-button i {
  margin-right: 12px;
  color: #6e787d;
}

.clinical-contact-copy a {
  display: block;
  margin-bottom: 10px;
  color: #2f3a40;
  font-size: 0.88rem;
}

.clinical-contact-copy a i {
  width: 24px;
  margin-right: 10px;
  color: #263137;
  text-align: center;
}

.clinical-contact-copy a:last-child {
  color: var(--clinical-blue);
}

.clinical-cta {
  height: 137px;
  display: flex;
  align-items: center;
  background: #009dd6;
  color: #ffffff;
}

.clinical-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clinical-cta h2 {
  margin-bottom: 4px;
  font-size: 1.45rem;
}

.clinical-cta p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.clinical-cta-inner > div:last-child {
  min-width: 320px;
  text-align: center;
}

.clinical-button-light {
  width: 100%;
  min-height: 42px;
  background: #ffffff;
  color: #0087bb;
}

.clinical-cta span {
  display: block;
  margin-top: 8px;
  font-size: 0.76rem;
}

.clinical-footer {
  min-height: 0;
  padding: 49px 0 24px;
  background: #192329;
  color: #e8eef0;
}

.clinical-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 1.15fr 1fr;
  gap: 70px;
}

.clinical-footer-brand img {
  width: 82px;
  height: 82px;
  margin-bottom: 20px;
}

.clinical-footer-brand p {
  max-width: 260px;
  color: #c4ced2;
  font-size: 0.82rem;
  line-height: 1.65;
}

.clinical-footer h2 {
  margin-bottom: 15px;
  color: #8f9ba1;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
}

.clinical-footer-grid > div > a,
.clinical-footer-grid > div > p {
  display: block;
  margin-bottom: 7px;
  color: #edf2f3;
  font-size: 0.82rem;
  line-height: 1.45;
}

.clinical-footer-grid > div > a i,
.clinical-footer-grid > div > p i {
  width: 20px;
  margin-right: 8px;
  color: #ffffff;
}

.clinical-footer-bottom {
  margin-top: 42px;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  color: #89969c;
  font-size: 0.72rem;
}

@media (max-width: 1180px) {
  .clinical-header-inner {
    grid-template-columns: 100px 1fr auto;
  }

  .clinical-header .site-nav ul {
    gap: 16px;
  }

  .clinical-phone {
    display: none;
  }

  .clinical-services-grid {
    gap: 15px;
  }

  .clinical-about-grid {
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .clinical-shell {
    width: calc(100% - 36px);
  }

  .clinical-header {
    height: 76px;
  }

  .clinical-header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .clinical-header .brand img {
    width: 58px;
    height: 58px;
  }

  .clinical-header .site-nav {
    top: 76px;
    background: #182126;
  }

  .clinical-header .site-nav[data-open="true"] {
    display: block;
  }

  .clinical-header .site-nav ul {
    gap: 0;
  }

  .clinical-hero {
    height: 860px;
    min-height: 860px;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.18) 31%, #ffffff 48%),
      url("assets/clinical-hero-background.png");
    background-position: center, center top;
    background-size: cover, auto 48%;
  }

  .clinical-hero-inner {
    align-items: flex-start;
    padding-top: 315px;
    padding-bottom: 0;
  }

  .clinical-hero-copy {
    width: 100%;
  }

  .clinical-hero h1 {
    margin-bottom: 20px;
    font-size: 3.15rem;
    line-height: 1.05;
  }

  .clinical-lead {
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .clinical-credentials {
    margin-bottom: 22px;
  }

  .clinical-lead br {
    display: none;
  }

  .clinical-hero-actions {
    gap: 12px;
  }

  .clinical-button-primary {
    min-width: 0;
  }

  .clinical-trust,
  .clinical-services,
  .clinical-about,
  .clinical-testimonials,
  .clinical-location,
  .clinical-cta {
    height: auto;
  }

  .clinical-trust-grid,
  .clinical-services-grid,
  .clinical-about-grid,
  .clinical-quotes,
  .clinical-location-grid,
  .clinical-footer-grid {
    grid-template-columns: 1fr;
  }

  .clinical-trust {
    padding: 24px 0;
  }

  .clinical-trust-grid {
    gap: 20px;
  }

  .clinical-trust article,
  .clinical-trust article:first-child {
    padding: 0;
    border-right: 0;
  }

  .clinical-services,
  .clinical-about,
  .clinical-testimonials,
  .clinical-location {
    padding: 46px 0;
  }

  .clinical-services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 18px;
  }

  .clinical-services-grid img {
    height: 190px;
  }

  .clinical-services-grid h3 {
    min-height: 0;
  }

  .clinical-about-grid {
    gap: 36px;
  }

  .clinical-about-media {
    height: 390px;
  }

  .clinical-about-points {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .clinical-quotes {
    gap: 38px;
  }

  .clinical-quotes article + article {
    padding: 38px 0 0;
    border-top: 1px solid var(--clinical-line);
    border-left: 0;
  }

  .clinical-quotes blockquote {
    min-height: 0;
  }

  .clinical-location-grid {
    gap: 36px;
  }

  .clinical-map {
    height: 300px;
  }

  .clinical-location-copy,
  .clinical-contact-copy {
    min-height: 0;
    padding-left: 0;
    border-left: 0;
  }

  .clinical-cta {
    padding: 27px 0;
  }

  .clinical-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .clinical-cta-inner > div:last-child {
    width: 100%;
    min-width: 0;
  }

  .clinical-footer {
    min-height: 0;
    padding-bottom: 24px;
  }

  .clinical-footer-grid {
    gap: 32px;
  }

  .clinical-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 38px;
  }
}

/* Readability floor: no supporting text below 1.05rem. */
.clinical-page .clinical-header .site-nav a,
.clinical-page .clinical-phone,
.clinical-page .clinical-eyebrow,
.clinical-page .clinical-button,
.clinical-page .clinical-trust p,
.clinical-page .clinical-services-grid li,
.clinical-page .clinical-about-copy > p:not(.clinical-eyebrow),
.clinical-page .clinical-about-points h3,
.clinical-page .clinical-about-points p,
.clinical-page .clinical-quotes blockquote,
.clinical-page .clinical-reviewer strong,
.clinical-page .clinical-reviewer span,
.clinical-page .clinical-reviews-link,
.clinical-page .map-label,
.clinical-page .map-place,
.clinical-page .clinical-location-copy > p:not(.clinical-eyebrow),
.clinical-page .clinical-contact-copy p,
.clinical-page .clinical-contact-copy a,
.clinical-page .clinical-cta p,
.clinical-page .clinical-cta span,
.clinical-page .clinical-footer-brand p,
.clinical-page .clinical-footer h2,
.clinical-page .clinical-footer-grid > div > a,
.clinical-page .clinical-footer-grid > div > p,
.clinical-page .clinical-footer-bottom {
  font-size: 1.05rem;
}

.clinical-page .clinical-credentials {
  font-size: 1.15rem;
}

.clinical-page .clinical-lead {
  font-size: 1.25rem;
}

.clinical-page .clinical-trust h2 {
  font-size: 1.15rem;
}

.clinical-page .clinical-services-grid h3 {
  min-height: 58px;
  font-size: 1.35rem;
}

.clinical-page .clinical-section-heading h2 {
  font-size: 2.8rem;
}

.clinical-page .clinical-about-copy > h2 {
  font-size: 2.6rem;
}

.clinical-page .clinical-location-copy h2 {
  font-size: 2.35rem;
}

.clinical-page .clinical-cta h2 {
  font-size: 1.75rem;
}

.clinical-page .clinical-hero h1 {
  font-size: 5.35rem;
}

.clinical-page .skip-link {
  font-size: 1.05rem;
}

.clinical-page .clinical-hero {
  height: 780px;
  min-height: 780px;
}

.clinical-page .clinical-hero-inner {
  padding-top: 125px;
}

.clinical-page .clinical-hero-copy {
  width: 700px;
}

.clinical-page .clinical-header-inner {
  gap: 24px;
}

.clinical-page .clinical-header .site-nav ul {
  gap: 20px;
}

.clinical-page .clinical-trust {
  height: auto;
  min-height: 190px;
  padding: 20px 0;
}

.clinical-page .clinical-services {
  height: auto;
  min-height: 900px;
  padding-bottom: 48px;
}

.clinical-page .clinical-services-grid li {
  margin-bottom: 7px;
  line-height: 1.5;
}

.clinical-page .clinical-about {
  height: auto;
  min-height: 690px;
  padding: 55px 0;
}

.clinical-page .clinical-about-grid {
  min-height: 580px;
}

.clinical-page .clinical-about-media {
  height: 550px;
}

.clinical-page .clinical-about-points h3,
.clinical-page .clinical-about-points p {
  line-height: 1.5;
}

.clinical-page .clinical-testimonials {
  height: auto;
  min-height: 520px;
  padding: 55px 0 40px;
}

.clinical-page .clinical-quotes blockquote {
  min-height: 190px;
  line-height: 1.65;
}

.clinical-page .clinical-location {
  height: auto;
  min-height: 485px;
  padding: 48px 0;
}

.clinical-page .clinical-cta {
  height: auto;
  min-height: 150px;
  padding: 24px 0;
}

@media (max-width: 760px) {
  .clinical-page .clinical-hero {
    height: 850px;
    min-height: 850px;
  }

  .clinical-page .clinical-hero-inner {
    padding-top: 245px;
  }

  .clinical-page .clinical-hero-copy {
    width: 100%;
  }

  .clinical-page .clinical-hero h1 {
    font-size: 3.5rem;
  }

  .clinical-page .clinical-lead {
    font-size: 1.08rem;
  }

  .clinical-page .clinical-services,
  .clinical-page .clinical-about,
  .clinical-page .clinical-testimonials,
  .clinical-page .clinical-location,
  .clinical-page .clinical-cta {
    min-height: 0;
  }

  .clinical-page .clinical-services-grid {
    grid-template-columns: 1fr;
  }

  .clinical-page .clinical-services-grid img {
    height: 260px;
  }

  .clinical-page .clinical-services-grid h3 {
    min-height: 0;
  }
}

/* Shared Clinical Precision subpages */
.clinical-subpage {
  background: #ffffff;
  color: #1a2228;
}

.clinical-subpage :is(p, li, a, label, input, select, textarea, button, blockquote, span, strong, summary) {
  font-size: 1.05rem;
}

.clinical-subpage .clinical-header {
  position: relative;
}

.subpage-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  background-color: #edf4f6;
  background-image:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.97) 36%, rgba(255, 255, 255, 0.72) 58%, rgba(255, 255, 255, 0.12) 80%),
    var(--subpage-hero);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.subpage-hero-content {
  max-width: 720px;
  padding: 80px 0;
}

.subpage-hero h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.03;
}

.subpage-hero .subpage-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: #354047;
  font-size: 1.25rem;
  line-height: 1.65;
}

.subpage-section {
  padding: 88px 0;
  border-bottom: 1px solid #dce4e8;
}

.subpage-section-muted {
  background: #f6f8f8;
}

.subpage-section-dark {
  background: #192329;
  color: #ffffff;
}

.subpage-section-dark p,
.subpage-section-dark li {
  color: #d8e1e3;
}

.subpage-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.subpage-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.subpage-heading h2,
.subpage-copy h2,
.subpage-callout h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.12;
}

.subpage-heading p,
.subpage-copy > p {
  color: #566168;
  font-size: 1.12rem;
  line-height: 1.7;
}

.subpage-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 72px;
}

.subpage-two-column-wide {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.subpage-media {
  min-height: 500px;
  overflow: hidden;
}

.subpage-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.subpage-copy .clinical-button {
  margin-top: 14px;
}

.subpage-checks,
.subpage-links {
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.subpage-checks li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 30px;
  color: #465158;
  line-height: 1.55;
}

.subpage-checks li::before {
  position: absolute;
  left: 0;
  color: #5cac35;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
}

.subpage-stat-grid,
.subpage-feature-grid,
.subpage-service-grid {
  display: grid;
  gap: 36px;
}

.subpage-stat-grid {
  grid-template-columns: repeat(3, 1fr);
}

.subpage-feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.subpage-service-grid {
  grid-template-columns: repeat(2, 1fr);
}

.subpage-stat,
.subpage-feature,
.subpage-service {
  min-width: 0;
  padding-top: 24px;
  border-top: 3px solid #00a6df;
}

.subpage-stat strong {
  display: block;
  margin-bottom: 6px;
  color: #007fae;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 400;
}

.subpage-stat p,
.subpage-feature p,
.subpage-service p {
  margin-bottom: 0;
  color: #59656b;
  line-height: 1.6;
}

.subpage-feature i,
.subpage-service i {
  margin-bottom: 18px;
  color: #00a6df;
  font-size: 2.5rem;
}

.subpage-feature h3,
.subpage-service h3,
.subpage-step h3,
.subpage-article h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.subpage-service {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid #dce4e8;
}

.subpage-service img {
  width: 190px;
  height: 190px;
  object-fit: cover;
}

.subpage-service ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: #4c585e;
}

.subpage-service li {
  margin-bottom: 7px;
}

.subpage-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.subpage-step {
  min-height: 250px;
  padding: 30px 34px;
  border-left: 1px solid #dce4e8;
}

.subpage-step:last-child {
  border-right: 1px solid #dce4e8;
}

.subpage-step-number {
  display: block;
  margin-bottom: 30px;
  color: #00a6df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem !important;
}

.subpage-step p {
  color: #5b666c;
  line-height: 1.6;
}

.subpage-article-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  border-top: 1px solid #dce4e8;
}

.subpage-article {
  padding: 30px 0;
  border-bottom: 1px solid #dce4e8;
}

.subpage-article p {
  color: #5b666c;
  line-height: 1.6;
}

.subpage-article a {
  color: #008dbf;
  font-weight: 700;
}

.subpage-callout {
  padding: 54px 60px;
  background: #009fd8;
  color: #ffffff;
}

.subpage-callout p {
  max-width: 760px;
  margin-bottom: 26px;
  color: #ffffff;
  line-height: 1.65;
}

.subpage-callout .clinical-button {
  background: #ffffff;
  color: #007fae;
}

.subpage-faq {
  border-top: 1px solid #dce4e8;
}

.subpage-faq details {
  border-bottom: 1px solid #dce4e8;
}

.subpage-faq summary {
  position: relative;
  padding: 24px 48px 24px 0;
  font-weight: 700;
  cursor: pointer;
}

.subpage-faq summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  color: #00a6df;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\2b";
}

.subpage-faq details[open] summary::after {
  content: "\f068";
}

.subpage-faq details p {
  max-width: 900px;
  padding: 0 0 25px;
  color: #566168;
  line-height: 1.65;
}

.subpage-contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 72px;
}

.subpage-contact-details {
  padding: 38px;
  background: #192329;
  color: #ffffff;
}

.subpage-contact-details h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  font-weight: 400;
}

.subpage-contact-details a,
.subpage-contact-details p {
  display: block;
  margin-bottom: 16px;
  color: #e4ebed;
  line-height: 1.55;
}

.subpage-contact-details i {
  width: 26px;
  margin-right: 8px;
  color: #00a6df;
}

.clinical-subpage .contact-form {
  gap: 24px;
}

.clinical-subpage .field label {
  font-size: 1.05rem;
}

.clinical-subpage .field input,
.clinical-subpage .field textarea,
.clinical-subpage .field select {
  border-radius: 0;
  font-size: 1.05rem;
}

.clinical-subpage .field input,
.clinical-subpage .field select {
  min-height: 58px;
}

.clinical-subpage .form-status {
  font-size: 1.05rem;
}

@media (max-width: 1040px) {
  .clinical-subpage .clinical-header .site-nav {
    top: 126px;
  }

  .subpage-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .subpage-service-grid {
    grid-template-columns: 1fr;
  }

  .subpage-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .clinical-subpage .clinical-header .site-nav {
    top: 76px;
  }

  .subpage-hero {
    min-height: 610px;
    align-items: flex-end;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.35) 35%, #ffffff 66%),
      var(--subpage-hero);
    background-position: center top;
  }

  .subpage-hero-content {
    padding: 250px 0 48px;
  }

  .subpage-hero h1 {
    font-size: 3.35rem;
  }

  .subpage-hero .subpage-lead {
    font-size: 1.1rem;
  }

  .subpage-section {
    padding: 60px 0;
  }

  .subpage-heading h2,
  .subpage-copy h2,
  .subpage-callout h2 {
    font-size: 2.35rem;
  }

  .subpage-two-column,
  .subpage-stat-grid,
  .subpage-feature-grid,
  .subpage-service-grid,
  .subpage-steps,
  .subpage-article-list,
  .subpage-contact-layout {
    grid-template-columns: 1fr;
  }

  .subpage-two-column {
    gap: 38px;
  }

  .subpage-media {
    min-height: 360px;
  }

  .subpage-service {
    grid-template-columns: 1fr;
  }

  .subpage-service img {
    width: 100%;
    height: 260px;
  }

  .subpage-step,
  .subpage-step:last-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid #dce4e8;
    border-left: 0;
  }

  .subpage-callout {
    padding: 38px 24px;
  }
}

/* Exercise video library */
.exercise-library-hero {
  min-height: 500px;
  background-image:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.97) 38%, rgba(255, 255, 255, 0.65) 60%, rgba(255, 255, 255, 0.08) 82%),
    url("assets/running-video-analysis.png");
  background-position: center 44%;
}

.exercise-library-hero .subpage-hero-content {
  max-width: 760px;
}

.exercise-library-hero .clinical-button i {
  margin-left: 12px;
}

.exercise-safety {
  border-bottom: 1px solid #cfdadd;
  background: #eaf4f6;
}

.exercise-safety-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 92px;
}

.exercise-safety-inner > i {
  color: #008dbf;
  font-size: 1.6rem;
}

.exercise-safety-inner p {
  margin: 0;
  color: #344147;
  line-height: 1.55;
}

.exercise-safety-inner a {
  color: #007fae;
  font-weight: 700;
  white-space: nowrap;
}

.exercise-safety-inner a i {
  margin-left: 8px;
  transition: transform 180ms ease;
}

.exercise-safety-inner a:hover i {
  transform: translateX(4px);
}

.exercise-browser {
  padding-top: 78px;
}

.exercise-browser-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 40px;
}

.exercise-browser-heading h2,
.exercise-guidance h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 1.1;
}

.exercise-browser-heading > p {
  margin: 0 0 4px;
  color: #566168;
  line-height: 1.65;
}

.exercise-tools {
  border-top: 1px solid #cfdadd;
  border-bottom: 1px solid #cfdadd;
}

.exercise-search {
  position: relative;
  display: block;
  max-width: 620px;
  margin: 26px 0;
}

.exercise-search > i {
  position: absolute;
  top: 50%;
  left: 20px;
  color: #69747a;
  transform: translateY(-50%);
  pointer-events: none;
}

.exercise-search input {
  width: 100%;
  min-height: 62px;
  padding: 10px 60px;
  border: 1px solid #aebdc2;
  border-radius: 0;
  background: #ffffff;
  color: #1a2228;
  font: inherit;
}

.exercise-search input:focus {
  border-color: #008dbf;
  outline: 3px solid rgba(0, 141, 191, 0.18);
  outline-offset: 2px;
}

.exercise-search button {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: #4a565c;
  cursor: pointer;
  transform: translateY(-50%);
}

.exercise-search button:hover {
  color: #008dbf;
}

.exercise-filters {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 26px;
  scrollbar-width: thin;
}

.exercise-filters button {
  min-height: 52px;
  padding: 10px 18px;
  border: 1px solid #aebdc2;
  border-right: 0;
  background: #ffffff;
  color: #344147;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.exercise-filters button:last-child {
  border-right: 1px solid #aebdc2;
}

.exercise-filters button:hover {
  background: #edf6f8;
  color: #007fae;
}

.exercise-filters button[aria-pressed="true"] {
  border-color: #008dbf;
  background: #008dbf;
  color: #ffffff;
}

.exercise-filters button:focus-visible,
.exercise-more-button:focus-visible,
.exercise-search button:focus-visible {
  outline: 3px solid rgba(0, 141, 191, 0.28);
  outline-offset: 3px;
}

.exercise-results-bar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 22px;
}

.exercise-results-bar p,
.exercise-results-bar span {
  margin: 0;
  color: #59656b;
}

.exercise-results-bar p {
  color: #263239;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.exercise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 28px;
}

.exercise-card {
  min-width: 0;
}

.exercise-card[hidden] {
  display: none;
}

.exercise-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.exercise-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  background: #dfe8ea;
}

.exercise-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(18, 29, 35, 0.55));
  content: "";
  pointer-events: none;
}

.exercise-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
}

.exercise-card:hover img,
.exercise-card a:focus-visible img {
  filter: saturate(1.06);
  transform: scale(1.035);
}

.exercise-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(0, 141, 191, 0.94);
  color: #ffffff;
  transform: translate(-50%, -50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.exercise-play i {
  margin-left: 4px;
  font-size: 1.2rem;
}

.exercise-card:hover .exercise-play,
.exercise-card a:focus-visible .exercise-play {
  background: #5cac35;
  transform: translate(-50%, -50%) scale(1.06);
}

.exercise-duration {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  padding: 4px 9px;
  background: rgba(18, 29, 35, 0.82);
  color: #ffffff;
  font-weight: 600;
}

.exercise-card-body {
  padding: 18px 2px 0;
}

.exercise-card-body > span {
  display: block;
  margin-bottom: 7px;
  color: #008dbf;
  font-weight: 700;
}

.exercise-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.25;
  text-wrap: pretty;
}

.exercise-card a:focus-visible {
  outline: 3px solid rgba(0, 141, 191, 0.28);
  outline-offset: 5px;
}

.exercise-empty {
  padding: 72px 24px;
  border-bottom: 1px solid #cfdadd;
  text-align: center;
}

.exercise-empty > i {
  margin-bottom: 20px;
  color: #008dbf;
  font-size: 2.4rem;
}

.exercise-empty h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.exercise-empty p {
  margin-bottom: 24px;
  color: #59656b;
}

.exercise-load-more {
  display: flex;
  justify-content: center;
  padding-top: 52px;
}

.exercise-more-button {
  min-width: 260px;
}

.exercise-more-button i {
  margin-left: 12px;
}

.exercise-guidance {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 90px;
}

.exercise-guidance > div:last-child {
  padding-left: 40px;
  border-left: 3px solid #00a6df;
}

.exercise-guidance p {
  color: #536067;
  line-height: 1.65;
}

.exercise-guidance .clinical-button {
  margin-top: 12px;
}

@media (max-width: 1040px) {
  .exercise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .exercise-library-hero {
    min-height: 660px;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.38) 36%, #ffffff 65%),
      url("assets/running-video-analysis.png");
    background-position: 62% top;
  }

  .exercise-library-hero .subpage-hero-content {
    padding-top: 280px;
  }

  .exercise-safety-inner {
    grid-template-columns: auto minmax(0, 1fr);
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .exercise-safety-inner > i {
    align-self: start;
    margin-top: 4px;
  }

  .exercise-safety-inner a {
    grid-column: 2;
  }

  .exercise-browser-heading,
  .exercise-guidance {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .exercise-browser-heading h2,
  .exercise-guidance h2 {
    font-size: 2.55rem;
  }

  .exercise-search {
    max-width: none;
  }

  .exercise-results-bar {
    display: block;
  }

  .exercise-results-bar span {
    display: block;
    margin-top: 8px;
  }

  .exercise-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .exercise-card-media {
    aspect-ratio: 16 / 11;
  }

  .exercise-guidance > div:last-child {
    padding: 26px 0 0;
    border-top: 3px solid #00a6df;
    border-left: 0;
  }
}
