@font-face {
  font-family: "Myriad Pro";
  src: url("/legacy-assets/fonts/Myriad_Pro/MYRIADPRO-REGULAR.woff")
    format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("/legacy-assets/fonts/Myriad_Pro/MyriadPro-Light.woff")
    format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("/legacy-assets/fonts/Myriad_Pro/MYRIADPRO-SEMIBOLD.woff")
    format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --podiatre-navy: #00222c;
  --podiatre-green: #16343d;
  --podiatre-blue-grey: #9eb5b7;
  --podiatre-blue-light: #6c858a;
  --podiatre-beige: #f1ede7;
  --podiatre-beige-light: #f8f5f0;
  --podiatre-beige-dark: #8b7e74;
  --podiatre-white: #fff;
  --podiatre-container: 1320px;
  --podiatre-gutter: clamp(1rem, 4vw, 3.75rem);
  --podiatre-section: clamp(4rem, 8vw, 8rem);
  --podiatre-serif: Merriweather, Georgia, "Times New Roman", serif;
  --podiatre-sans: "Myriad Pro", Arial, sans-serif;
}

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

body {
  background: var(--podiatre-beige);
  color: #000;
  font-family: var(--podiatre-sans);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  overflow-x: hidden;
}

body.podiatre-menu-is-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

body.single-post {
  background: var(--podiatre-beige-light);
}

.podiatre-post-content .wp-block-buttons {
  margin-block: 1.3333333rem 0;
}

.podiatre-post-content .wp-block-list > li {
  font-size: 1rem;
  line-height: 1.5;
}

.podiatre-post-content h3,
.podiatre-post-content h4 {
  font-family: var(--podiatre-serif);
}

.podiatre-post-content .wp-block-button__link {
  background: #8b7e74;
  border-radius: 0;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 1.125rem 1.5rem;
  text-transform: uppercase;
}

.podiatre-post-content .podiatre-migrated-button .wp-block-button__link {
  background: #8b7e74;
  border: 0;
  border-color: #8b7e74;
  color: var(--podiatre-beige);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  min-height: 60px;
  padding: 1.125rem 1.5rem;
}

.podiatre-post-content .podiatre-migrated-button {
  display: flex;
}

.wp-site-blocks {
  padding: 0;
}

.wp-site-blocks > * {
  margin-block-start: 0 !important;
}

.podiatre-astro-contents {
  display: contents;
}

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

iframe {
  border: 0;
}

a {
  color: inherit;
}

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

button {
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--podiatre-serif);
}

h1 {
  font-weight: 300;
}

body h2 {
  line-height: 1.5;
}

body h3,
body h4,
body h5,
body h6 {
  font-family: var(--podiatre-sans);
  font-weight: inherit;
  line-height: inherit;
}

@media (min-width: 768px) {
  body h2 {
    line-height: 45px;
  }
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.screen-reader-text:focus {
  clip: auto;
  clip-path: none;
  background: #fff;
  color: #000;
  height: auto;
  left: 1rem;
  padding: 0.75rem 1rem;
  top: 1rem;
  width: auto;
  z-index: 100000;
}

:focus-visible {
  outline: 3px solid #d8aa62;
  outline-offset: 4px;
}

.podiatre-container {
  margin-inline: auto;
  max-width: var(--podiatre-container);
  padding-inline: var(--podiatre-gutter);
  width: 100%;
}

.podiatre-eyebrow {
  font-family: var(--podiatre-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.podiatre-button {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 400;
  gap: 2rem;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 60px;
  padding: 1.125rem 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.podiatre-button:hover {
  transform: translateY(-2px);
}

.podiatre-button:not(.has-icon)::after {
  content: "→";
  flex: 0 0 auto;
  font-size: 1.1rem;
  line-height: 1;
}

.podiatre-button-icon {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
}

.podiatre-button-icon svg {
  height: 20px;
  width: 20px;
}

.podiatre-button.is-light {
  background: var(--podiatre-beige);
  border-color: var(--podiatre-beige);
  color: var(--podiatre-green);
}

.podiatre-button.is-light:hover {
  background: var(--podiatre-white);
  border-color: var(--podiatre-white);
}

.podiatre-button.is-dark {
  background: var(--podiatre-green);
  border-color: var(--podiatre-green);
  color: var(--podiatre-white);
}

.podiatre-button.is-dark:hover {
  background: var(--podiatre-navy);
  border-color: var(--podiatre-navy);
}

.podiatre-text-link {
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 600;
  gap: 1rem;
  letter-spacing: 0.06em;
  padding-bottom: 0.35rem;
  text-decoration: none;
  text-transform: uppercase;
}

.podiatre-text-link span {
  transition: transform 180ms ease;
}

.podiatre-text-link:hover span {
  transform: translateX(5px);
}

.podiatre-text-link.is-light {
  color: var(--podiatre-beige);
}

/* Header */
.podiatre-nav-shell {
  --a: var(--beige);
  --h1: #fff;
  --h2: var(--beige);
  --label: var(--beige-dark);
  --p: var(--blue-grey);
  color: var(--podiatre-beige);
  scrollbar-color: #aaa #00222c;
  transition:
    height 500ms ease,
    background-color 300ms ease;
  width: 100%;
}

.podiatre-nav-shell.is-open {
  background: var(--podiatre-navy);
  height: 100dvh !important;
  overflow-y: auto !important;
}

.podiatre-nav-shell button {
  color: inherit;
}

.podiatre-nav-shell [hidden] {
  display: none !important;
}

.podiatre-nav-panel {
  opacity: 1;
  transition: opacity 500ms ease;
}

.podiatre-nav-panel.is-closing {
  opacity: 0;
}

.podiatre-nav-shell [data-podiatre-submenu-panel] {
  transition: height 400ms ease;
}

.podiatre-nav-shell [data-podiatre-submenu] img {
  transition: transform 300ms ease;
}

.podiatre-nav-appointment {
  color: #000 !important;
}

.podiatre-nav-appointment:hover {
  color: var(--podiatre-beige) !important;
}

.admin-bar .podiatre-nav-shell {
  top: 32px;
}

.podiatre-site-header {
  background: var(--podiatre-navy);
  color: var(--podiatre-beige);
  height: 100px;
  position: relative;
  width: 100%;
  z-index: 100;
}

.podiatre-site-header.is-home,
.podiatre-site-header.is-overlay {
  background: transparent;
  left: 0;
  position: absolute;
  top: 0;
}

.admin-bar .podiatre-site-header.is-home,
.admin-bar .podiatre-site-header.is-overlay {
  top: 32px;
}

.podiatre-header-inner {
  align-items: stretch;
  display: flex;
  height: 100%;
  margin-inline: auto;
  max-width: calc(var(--podiatre-container) + 7.5rem);
  padding-inline: var(--podiatre-gutter);
}

.podiatre-header-logo {
  align-items: center;
  display: flex;
  flex: 0 0 86px;
  justify-content: center;
}

.podiatre-header-logo img,
.podiatre-menu-mark img {
  filter: brightness(0) invert(1);
  height: 74px;
  object-fit: contain;
  transform: translateX(-6px);
  width: 52px;
}

.podiatre-header-bar {
  align-items: center;
  border-bottom: 2px solid rgb(241 237 231 / 20%);
  display: flex;
  flex: 1;
  gap: 1.75rem;
  justify-content: space-between;
  padding-right: 31px;
}

.podiatre-phone {
  align-items: center;
  display: inline-flex;
  font-size: 1rem;
  gap: 0.1rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.podiatre-phone svg {
  height: 40px;
  width: 40px;
}

.podiatre-quick-nav {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 2.4vw, 2rem);
  margin-left: auto;
}

.podiatre-quick-nav a {
  font-size: 1rem;
  letter-spacing: 0.1em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.podiatre-quick-nav a::after {
  background: currentColor;
  bottom: -0.35rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.podiatre-quick-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.podiatre-menu-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  gap: 7px;
  padding: 14px 5px 14px 14px;
  width: 48px;
}

.podiatre-menu-button > span:not(.screen-reader-text) {
  background: currentColor;
  display: block;
  height: 1.5px;
  width: 25px;
}

.podiatre-full-menu {
  background: var(--podiatre-navy);
  color: var(--podiatre-beige);
  height: 100dvh;
  inset: 0;
  overflow-y: auto;
  padding: 1.5rem var(--podiatre-gutter) 3rem;
  position: fixed;
  z-index: 1000;
}

.podiatre-full-menu[hidden] {
  display: none;
}

.podiatre-menu-top {
  align-items: flex-start;
  border-bottom: 1px solid rgb(241 237 231 / 20%);
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  max-width: var(--podiatre-container);
  padding-bottom: 1rem;
}

.podiatre-menu-close {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  font-size: 0.8rem;
  gap: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.5rem;
  text-transform: uppercase;
}

.podiatre-menu-layout {
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  margin-inline: auto;
  max-width: var(--podiatre-container);
  padding-top: clamp(2rem, 5vw, 4.5rem);
}

.podiatre-menu-list,
.podiatre-menu-list ul,
.podiatre-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.podiatre-menu-list > li {
  border-bottom: 1px solid rgb(241 237 231 / 18%);
  padding: 0.8rem 0;
}

.podiatre-menu-list > li > a {
  display: inline-block;
  font-family: var(--podiatre-serif);
  font-size: clamp(1.8rem, 3.2vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  text-decoration: none;
}

.podiatre-menu-list .sub-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  padding: 0.7rem 0 0.25rem;
}

.podiatre-menu-list .sub-menu a {
  color: var(--podiatre-blue-grey);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.podiatre-menu-aside {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.podiatre-menu-aside > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.podiatre-menu-aside a {
  text-decoration: none;
}

.podiatre-menu-actions {
  display: flex;
  gap: 2rem;
}

/* Footer */
.podiatre-site-footer {
  background: var(--podiatre-navy);
  color: var(--podiatre-beige);
  padding: clamp(3rem, 6vw, 6rem) var(--podiatre-gutter) 1.5rem;
}

.podiatre-footer-inner {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 140px minmax(0, 1fr);
  margin-inline: auto;
  max-width: var(--podiatre-container);
}

.podiatre-footer-stamp {
  height: 126px;
  position: relative;
  width: 126px;
}

.podiatre-footer-stamp img {
  inset: 0;
  height: 100%;
  position: absolute;
  width: 100%;
}

.podiatre-stamp-text {
  animation: podiatre-rotate 24s linear infinite;
}

.podiatre-footer-nav {
  border-bottom: 1px solid rgb(241 237 231 / 22%);
  padding-bottom: 2.5rem;
}

.podiatre-footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem clamp(1rem, 2.5vw, 2.5rem);
}

.podiatre-footer-menu a {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.podiatre-footer-columns {
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-block: 2.5rem;
}

.podiatre-footer-intro {
  border-right: 1px solid rgb(241 237 231 / 22%);
  padding-right: clamp(2rem, 5vw, 5rem);
}

.podiatre-footer-intro > p {
  color: var(--podiatre-blue-grey);
  max-width: 540px;
}

.podiatre-socials {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.podiatre-socials img {
  filter: brightness(0) invert(1);
}

.podiatre-footer-locations {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.podiatre-footer-locations h2 {
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  margin-bottom: 0.5rem;
}

.podiatre-footer-locations a {
  border-bottom: 1px solid rgb(241 237 231 / 30%);
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.7rem;
  text-decoration: none;
}

.podiatre-footer-bottom {
  align-items: center;
  border-top: 1px solid rgb(241 237 231 / 22%);
  display: flex;
  font-size: 0.84rem;
  justify-content: space-between;
  padding-top: 1.5rem;
}

.podiatre-footer-bottom > div {
  display: flex;
  gap: 1.5rem;
}

.podiatre-footer-bottom a {
  text-decoration: none;
}

/* Splash and hero */
.podiatre-splash {
  align-items: center;
  animation: podiatre-splash-fade 1.5s ease-in-out 3.3s forwards;
  background: var(--podiatre-navy);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 1;
  position: fixed;
  z-index: 9999;
}

.podiatre-splash.is-leaving {
  opacity: 0;
  visibility: hidden;
}

.podiatre-splash-curtain {
  animation: podiatre-curtain 1s cubic-bezier(0.32, 0.03, 0.35, 0.87) 2s
    forwards;
  background: var(--podiatre-beige);
  inset: 0;
  position: absolute;
  transform: translateY(-100%);
  z-index: 3;
}

.podiatre-splash-logo {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  max-width: calc(100vw - 2rem);
  position: relative;
  z-index: 2;
}

.podiatre-splash-logo.is-english {
  width: calc(100vw - 2rem);
}

.podiatre-splash-logo img {
  animation: podiatre-logo-in 1s both;
  height: auto;
  max-height: none;
  max-width: 100%;
  object-fit: contain;
}

.podiatre-splash-logo img + img {
  animation-delay: 300ms;
}

@media (min-width: 768px) {
  .podiatre-splash-logo.is-english {
    width: 50vw;
  }
}

@media (min-width: 1024px) {
  .podiatre-splash-logo.is-english {
    width: 41.6667vw;
  }
}

@media (min-width: 1280px) {
  .podiatre-splash-logo.is-english {
    width: 33.3333vw;
  }
}

.podiatre-home-hero {
  align-items: center;
  color: var(--podiatre-white);
  display: flex;
  height: 100svh;
  justify-content: center;
  min-height: 680px;
  min-width: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.podiatre-hero-video {
  filter: blur(3px) brightness(0.65);
  height: calc(100% + 10px);
  inset: -5px;
  object-fit: cover;
  position: absolute;
  width: calc(100% + 10px);
}

.podiatre-hero-overlay {
  background: rgb(0 34 44 / 38%);
  inset: 0;
  position: absolute;
}

.podiatre-hero-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-inline: auto;
  max-width: 1150px;
  min-width: 0;
  padding: 7rem var(--podiatre-gutter) 2rem;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.podiatre-hero-content h1 {
  font-size: clamp(2.35rem, 5.7vw, 5.7rem);
  line-height: 1.06;
  margin: 0;
  overflow-wrap: anywhere;
  width: 100%;
}

.podiatre-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Homepage content */
.podiatre-video-section {
  background: var(--podiatre-green);
  color: var(--podiatre-beige);
  padding-block: var(--podiatre-section);
}

.podiatre-video-rail {
  display: grid;
  gap: 1rem;
  grid-auto-columns: minmax(260px, 33%);
  grid-auto-flow: column;
  margin-right: calc(var(--podiatre-gutter) * -1);
  overflow-x: auto;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
}

.podiatre-video-card {
  scroll-snap-align: start;
}

.podiatre-video-card button {
  aspect-ratio: 16 / 9;
  background: #071f27;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.podiatre-video-card button img,
.podiatre-video-card iframe {
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
  width: 100%;
}

.podiatre-video-card button:hover img {
  transform: scale(1.025);
}

.podiatre-play {
  align-items: center;
  background: var(--podiatre-beige);
  border-radius: 50%;
  color: var(--podiatre-green);
  display: flex;
  height: 64px;
  justify-content: center;
  left: 50%;
  padding-left: 4px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
}

.podiatre-video-card h2 {
  font-family: var(--podiatre-sans);
  font-size: 0.91rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 1rem 0 0;
  text-transform: uppercase;
}

.podiatre-home-intro {
  align-items: flex-end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: clamp(3rem, 7vw, 6.5rem);
  position: relative;
}

.podiatre-home-intro > p {
  font-family: var(--podiatre-serif);
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  font-weight: 300;
  line-height: 1.25;
  margin: 0;
  max-width: 1050px;
}

.podiatre-home-intro strong {
  color: var(--podiatre-white);
  font-weight: 300;
}

.podiatre-home-intro .podiatre-text-link {
  grid-column: 1;
}

.podiatre-inline-stamp {
  grid-column: 2;
  grid-row: 1 / span 2;
  height: 125px;
  position: relative;
  width: 125px;
}

.podiatre-inline-stamp img {
  animation: podiatre-rotate 24s linear infinite;
  height: 100%;
  width: 100%;
}

.podiatre-service-section {
  background: var(--podiatre-beige);
  padding-block: var(--podiatre-section);
}

.podiatre-section-heading {
  display: grid;
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr);
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.podiatre-section-lead {
  font-family: var(--podiatre-serif);
  font-size: clamp(1.75rem, 3vw, 3.4rem);
  font-weight: 300;
  line-height: 1.23;
  margin: 0;
}

.podiatre-feature-grid {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
}

.podiatre-feature-card {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.podiatre-feature-card.is-reversed .podiatre-feature-media {
  grid-column: 2;
  grid-row: 1;
}

.podiatre-feature-card.is-reversed .podiatre-feature-copy {
  grid-column: 1;
  grid-row: 1;
}

.podiatre-feature-media {
  border-radius: 0 0 150px;
  min-height: 480px;
  overflow: hidden;
}

.podiatre-feature-card.is-reversed .podiatre-feature-media {
  border-radius: 150px 0 0;
}

.podiatre-feature-media img {
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  width: 100%;
}

.podiatre-feature-copy h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  margin-bottom: 1.5rem;
}

.podiatre-feature-copy p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 540px;
}

.podiatre-card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(3rem, 7vw, 6rem);
}

.podiatre-condition-card {
  align-items: center;
  background: var(--podiatre-beige-light);
  display: flex;
  flex-direction: column;
  padding: 0 2rem 3.2rem;
  text-align: center;
  text-decoration: none;
}

.podiatre-condition-image {
  aspect-ratio: 0.79 / 1;
  border-radius: 0 0 150px 150px;
  margin-bottom: 2rem;
  max-width: 286px;
  overflow: hidden;
  width: 100%;
}

.podiatre-condition-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
  width: 100%;
}

.podiatre-condition-card:hover img {
  transform: scale(1.035);
}

.podiatre-condition-card h2 {
  font-family: var(--podiatre-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.podiatre-condition-card p {
  margin: 0;
}

.podiatre-approach {
  background-image: url("/legacy-assets/img/header.jpg");
  background-position: center;
  background-size: cover;
  color: var(--podiatre-beige);
  padding-block: var(--podiatre-section);
  position: relative;
}

.podiatre-approach-backdrop {
  background: rgb(0 34 44 / 87%);
  inset: 0;
  position: absolute;
}

.podiatre-approach-grid {
  display: grid;
  gap: clamp(2rem, 8vw, 8rem);
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  position: relative;
}

.podiatre-approach-grid h2 {
  font-size: clamp(2rem, 3.8vw, 4rem);
}

.podiatre-approach-grid p {
  color: var(--podiatre-blue-grey);
  white-space: pre-line;
}

.podiatre-approach-grid .podiatre-button {
  margin-top: 1.5rem;
}

.podiatre-cta-band {
  background: var(--podiatre-green);
  color: var(--podiatre-beige);
  overflow: hidden;
}

.podiatre-cta-band .podiatre-container {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  grid-template-columns: 120px minmax(0, 1fr) auto;
  min-height: 260px;
  position: relative;
}

.podiatre-cta-band img {
  align-self: end;
  height: 190px;
  object-fit: contain;
  width: auto;
}

.podiatre-cta-band h2 {
  font-size: clamp(2rem, 3.5vw, 4rem);
  margin: 0;
}

.podiatre-honors {
  background: var(--podiatre-beige);
  padding-block: var(--podiatre-section);
}

.podiatre-honors-grid {
  display: grid;
  gap: clamp(2rem, 7vw, 7rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.podiatre-honor {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.podiatre-honor.is-second {
  flex-direction: column-reverse;
}

.podiatre-honor-copy h2 {
  font-family: var(--podiatre-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.podiatre-honor-image {
  align-items: center;
  background: var(--podiatre-beige-light);
  border-radius: 0 0 0 150px;
  display: flex;
  justify-content: center;
  min-height: 410px;
  padding: 3rem;
}

.podiatre-honor.is-second .podiatre-honor-image {
  border-radius: 0 150px 0 0;
}

.podiatre-honor-image img {
  max-height: 250px;
  object-fit: contain;
}

.podiatre-resources {
  background: var(--podiatre-green);
  color: var(--podiatre-beige);
  padding-block: var(--podiatre-section);
}

.podiatre-resource-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 2.5rem;
}

.podiatre-resource-grid article {
  background: var(--podiatre-navy);
  padding-bottom: 2rem;
}

.podiatre-resource-grid img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.podiatre-resource-grid h2,
.podiatre-resource-grid p {
  margin-inline: 2rem;
}

.podiatre-resource-grid h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-top: 2rem;
}

.podiatre-resource-grid p {
  color: var(--podiatre-blue-grey);
}

.podiatre-techniques {
  padding-block: var(--podiatre-section);
}

.podiatre-technique-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.podiatre-technique-grid article {
  background: var(--podiatre-beige-light);
  padding: clamp(2rem, 4vw, 3.5rem) 2rem;
}

.podiatre-technique-grid h2 {
  font-family: var(--podiatre-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  min-height: 110px;
  text-transform: uppercase;
}

.podiatre-about-home {
  background: var(--podiatre-beige-light);
  padding-top: var(--podiatre-section);
}

.podiatre-about-intro {
  max-width: 1100px;
}

.podiatre-about-intro h2 {
  font-size: clamp(2rem, 3.3vw, 3.6rem);
}

.podiatre-about-intro > p:last-child {
  max-width: 980px;
}

.podiatre-about-split {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  margin-top: clamp(3rem, 7vw, 6rem);
}

.podiatre-about-image {
  border-radius: 0 150px 0 0;
  max-height: 720px;
  overflow: hidden;
}

.podiatre-about-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.podiatre-about-copy h2 {
  font-size: clamp(2rem, 4vw, 4.3rem);
}

.podiatre-about-copy p {
  margin-bottom: 2rem;
}

.podiatre-home-accordion {
  background: var(--podiatre-beige-light);
  padding-block: var(--podiatre-section);
}

.podiatre-accordion-layout {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 7vw, 7rem);
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
}

.podiatre-accordion-image {
  border-radius: 0 0 150px;
  max-height: 720px;
  overflow: hidden;
}

.podiatre-accordion-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.podiatre-accordion-item {
  border-top: 1px solid rgb(22 52 61 / 35%);
}

.podiatre-accordion-item:last-child {
  border-bottom: 1px solid rgb(22 52 61 / 35%);
}

.podiatre-accordion-item h2 {
  margin: 0;
}

.podiatre-accordion-item button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  font-family: var(--podiatre-sans);
  font-size: 1rem;
  font-weight: 600;
  justify-content: space-between;
  letter-spacing: 0.04em;
  padding: 1.6rem 0;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
}

.podiatre-accordion-item button > span:last-child {
  font-size: 1.8rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.podiatre-accordion-item button[aria-expanded="true"] > span:last-child {
  transform: rotate(45deg);
}

.podiatre-accordion-panel {
  padding: 0 2rem 1.6rem 0;
}

.podiatre-accordion-panel[hidden] {
  display: none;
}

/* General WordPress content */
.editor-styles-wrapper .podiatre-splash {
  display: none !important;
}

.podiatre-migrated-section {
  margin-block-start: 0 !important;
  padding: var(--podiatre-section) var(--podiatre-gutter);
}

.podiatre-migrated-section > .wp-block-group__inner-container,
.podiatre-migrated-section
  > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  margin-inline: auto;
  max-width: var(--podiatre-container);
}

.podiatre-migrated-section.is-dark {
  background: var(--podiatre-green);
  color: var(--podiatre-beige);
}

.podiatre-migrated-section.is-light {
  background: var(--podiatre-beige-light);
  color: var(--podiatre-green);
}

.podiatre-migrated-section.is-beige {
  background: var(--podiatre-beige);
  color: var(--podiatre-green);
}

.podiatre-migrated-section.is-hero {
  align-items: center;
  display: flex;
  min-height: clamp(430px, 66vh, 720px);
}

.podiatre-migrated-section.is-hero h1 {
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  max-width: 1080px;
}

.podiatre-migrated-section h2 {
  font-size: clamp(2rem, 4vw, 4.25rem);
  max-width: 1050px;
}

.podiatre-migrated-section h3 {
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
}

.podiatre-migrated-section p,
.podiatre-migrated-section .wp-block-list {
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  max-width: 880px;
}

.podiatre-migrated-section .wp-block-image {
  margin-block: clamp(2rem, 5vw, 4rem);
}

.podiatre-migrated-section .wp-block-image img {
  height: auto;
  max-height: 780px;
  object-fit: cover;
  width: 100%;
}

.podiatre-migrated-section .wp-block-buttons {
  margin-top: 2rem;
}

.podiatre-migrated-button .wp-block-button__link {
  background: var(--podiatre-beige);
  border: 1px solid var(--podiatre-beige);
  border-radius: 0;
  color: var(--podiatre-green);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  min-height: 54px;
  padding: 0.9rem 1.6rem;
  text-transform: uppercase;
}

.podiatre-video-embed {
  aspect-ratio: 16 / 9;
  background: var(--podiatre-navy);
  margin-block: 2rem;
  overflow: hidden;
  width: 100%;
}

.podiatre-post-content .podiatre-video-embed {
  margin-block: 0;
}

.podiatre-video-embed iframe {
  height: 100%;
  width: 100%;
}

.podiatre-blog-archive {
  background: var(--podiatre-beige);
  min-height: 65vh;
}

.podiatre-blog-header {
  background: var(--podiatre-green);
  color: var(--podiatre-beige);
  padding: var(--podiatre-section) 0;
}

.podiatre-blog-header h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  margin: 0;
}

.podiatre-blog-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem) clamp(1rem, 3vw, 2.5rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-block: var(--podiatre-section);
}

.podiatre-blog-card {
  background: var(--podiatre-beige-light);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.podiatre-blog-card-image {
  aspect-ratio: 4 / 3;
  background: var(--podiatre-blue-grey);
  display: block;
  overflow: hidden;
}

.podiatre-blog-card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
  width: 100%;
}

.podiatre-blog-card:hover .podiatre-blog-card-image img {
  transform: scale(1.035);
}

.podiatre-blog-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.podiatre-blog-card time {
  color: #536a70;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.podiatre-blog-card h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin: 1rem 0;
}

.podiatre-blog-card h2 a {
  text-decoration: none;
}

.podiatre-blog-card p {
  flex: 1;
}

.podiatre-contact-form-section {
  background: var(--podiatre-beige-light);
  padding-block: var(--podiatre-section);
}

.podiatre-contact-form-section h2,
.podiatre-locations h2,
.podiatre-steps h2,
.podiatre-quiz > .podiatre-container > h2 {
  font-size: clamp(2.2rem, 4vw, 4.25rem);
}

.podiatre-form-required {
  color: #536a70;
  font-size: 0.92rem;
}

.podiatre-form-notice {
  background: #f7d9d5;
  border-left: 4px solid #a42e20;
  max-width: 900px;
  padding: 1rem 1.25rem;
}

.podiatre-contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 980px;
}

.podiatre-form-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.podiatre-contact-form > label,
.podiatre-form-grid label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 0.45rem;
}

.podiatre-contact-form input[type="text"],
.podiatre-contact-form input[type="tel"],
.podiatre-contact-form input[type="email"],
.podiatre-contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(22 52 61 / 50%);
  border-radius: 0;
  color: var(--podiatre-green);
  min-height: 52px;
  padding: 0.6rem 0;
  width: 100%;
}

.podiatre-contact-form textarea {
  border: 1px solid rgb(22 52 61 / 50%);
  margin-top: 0.35rem;
  padding: 1rem;
}

.podiatre-contact-form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.podiatre-contact-form legend {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.podiatre-form-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.podiatre-form-options label {
  cursor: pointer;
}

.podiatre-form-options input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.podiatre-form-options span {
  border: 1px solid rgb(22 52 61 / 35%);
  display: block;
  padding: 0.7rem 1rem;
}

.podiatre-form-options input:checked + span {
  background: var(--podiatre-green);
  border-color: var(--podiatre-green);
  color: var(--podiatre-white);
}

.podiatre-form-options input:focus-visible + span {
  outline: 3px solid #d8aa62;
  outline-offset: 3px;
}

.podiatre-form-options.is-stacked {
  align-items: flex-start;
  flex-direction: column;
}

.podiatre-form-consent {
  align-items: flex-start;
  display: flex !important;
  flex-direction: row !important;
  font-weight: 400 !important;
  gap: 1.5rem !important;
}

.podiatre-form-consent input {
  flex: 0 0 auto;
  height: 24px;
  margin-top: 0.15rem;
  width: 24px;
}

.podiatre-contact-form > .podiatre-button {
  align-self: flex-start;
}

.podiatre-contact-form.is-embedded {
  gap: 2rem;
  max-width: 730px;
}

.podiatre-contact-form.is-embedded .podiatre-form-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  grid-template-columns: none;
}

.podiatre-contact-form.is-embedded input.floating {
  border: 0;
  border-bottom: 1px solid var(--podiatre-green);
  min-height: 0;
  padding: 0.75rem 0.25rem 0.375rem;
}

.podiatre-contact-form.is-embedded fieldset {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.podiatre-contact-form.is-embedded legend {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.podiatre-contact-form.is-embedded .podiatre-form-options {
  gap: 0.75rem;
}

.podiatre-contact-form.is-embedded .podiatre-form-options span {
  border-color: var(--podiatre-beige-dark);
  border-radius: 25px;
  padding: 0.625rem 1.25rem;
}

.podiatre-contact-form.is-embedded .podiatre-form-consent input {
  height: 2rem;
  min-width: 2rem;
  width: 2rem;
}

.podiatre-honeypot {
  left: -10000px;
  position: absolute;
}

.podiatre-locations {
  background: var(--podiatre-beige);
  padding-block: var(--podiatre-section);
}

.podiatre-map-canvas {
  background: #e9e7e2;
  height: 100%;
  inset: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.podiatre-map-canvas.mapboxgl-map {
  position: absolute;
}

.podiatre-map-canvas .mapboxgl-canvas {
  outline: 0;
}

.podiatre-map-fallback {
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.podiatre-map-fallback-tiles {
  display: grid;
  grid-template-columns: repeat(8, 256px);
  grid-template-rows: repeat(5, 256px);
  left: -407px;
  position: absolute;
  top: -190px;
}

.podiatre-map-fallback-tiles img {
  height: 256px;
  max-width: none;
  width: 256px;
}

.podiatre-map-fallback-pin {
  height: 89px;
  left: calc(36.111% - 24px);
  position: absolute;
  top: calc(44% - 89px);
  width: auto;
}

.podiatre-map-attribution {
  bottom: 2px;
  color: #536a70;
  font-size: 10px;
  left: 4px;
  position: absolute;
}

@media (max-width: 1023px) {
  .podiatre-map-fallback-pin {
    left: calc(50% - 24px);
  }
}

.podiatre-location-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.podiatre-location-card {
  background: var(--podiatre-beige-light);
}

.podiatre-location-card > img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.podiatre-location-card > div {
  padding: clamp(1.4rem, 3vw, 2.5rem);
}

.podiatre-location-card h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.podiatre-location-card dl {
  display: grid;
  font-size: 0.96rem;
  gap: 0.7rem 1rem;
  grid-template-columns: minmax(76px, 0.35fr) minmax(0, 1fr);
  margin-bottom: 0;
}

.podiatre-location-card dt {
  font-weight: 600;
}

.podiatre-location-card dd {
  margin: 0;
}

.podiatre-steps {
  background: var(--podiatre-green);
  color: var(--podiatre-beige);
  padding-block: var(--podiatre-section);
}

.podiatre-steps-intro {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.podiatre-steps-intro p {
  color: var(--podiatre-blue-grey);
  max-width: 900px;
}

.podiatre-steps-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.podiatre-steps-grid li {
  background: var(--podiatre-navy);
  min-height: 320px;
  padding: clamp(1.5rem, 3vw, 2.7rem);
}

.podiatre-steps-grid li > span {
  color: var(--podiatre-blue-grey);
  display: block;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}

.podiatre-steps-grid h3 {
  font-family: var(--podiatre-sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.podiatre-steps-grid p {
  color: var(--podiatre-blue-grey);
}

.podiatre-wordpress-steps .steps-grid .step {
  opacity: 0;
  transform: none;
  will-change: opacity;
}

.podiatre-wordpress-steps .steps-grid .step:first-child,
.podiatre-wordpress-steps .steps-grid .step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .podiatre-wordpress-steps > .container {
    height: 100%;
  }

  .podiatre-wordpress-steps .steps-section {
    height: calc(var(--podiatre-steps-grid-height, 576px) + 100vh);
    position: relative;
  }

  .podiatre-wordpress-steps .steps-grid {
    position: sticky;
    top: 50px;
  }
}

@media (max-width: 1023px) {
  .podiatre-wordpress-steps .steps-section {
    height: auto;
  }

  .podiatre-wordpress-steps .steps-grid .step {
    opacity: 1;
    transform: none;
  }
}

.podiatre-quiz {
  background: var(--podiatre-navy);
  color: var(--podiatre-beige);
  padding-block: var(--podiatre-section);
}

.podiatre-quiz-types {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 3rem;
}

.podiatre-quiz-types button {
  background: var(--podiatre-green);
  border: 0;
  color: var(--podiatre-beige);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-family: var(--podiatre-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  gap: 1.5rem;
  padding: 0 2rem 2.5rem;
  transition: background-color 180ms ease;
}

.podiatre-quiz-types button:hover {
  background: var(--podiatre-blue-light);
}

.podiatre-quiz-types img {
  align-self: center;
  max-height: 390px;
  object-fit: contain;
}

.podiatre-quiz-dialog {
  background: var(--podiatre-navy);
  border: 0;
  color: var(--podiatre-beige);
  height: 100dvh;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  width: 100%;
}

.podiatre-quiz-dialog::backdrop {
  background: var(--podiatre-navy);
}

.podiatre-quiz-dialog-inner {
  margin-inline: auto;
  max-width: var(--podiatre-container);
  min-height: 100%;
  padding: clamp(4rem, 10vw, 8rem) var(--podiatre-gutter);
  position: relative;
}

.podiatre-quiz-close {
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  cursor: pointer;
  font-size: 2rem;
  height: 52px;
  line-height: 1;
  position: absolute;
  right: var(--podiatre-gutter);
  top: 1.5rem;
  width: 52px;
}

.podiatre-quiz-dialog h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  max-width: 900px;
}

.podiatre-quiz-choices {
  display: grid;
  gap: 0.7rem;
  margin-block: 2rem 3rem;
  max-width: 780px;
}

.podiatre-quiz-choices button {
  background: var(--podiatre-green);
  border: 1px solid transparent;
  color: var(--podiatre-beige);
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  text-align: left;
}

.podiatre-quiz-choices button:hover,
.podiatre-quiz-choices button[aria-pressed="true"] {
  background: var(--podiatre-blue-light);
  border-color: var(--podiatre-beige);
}

.podiatre-quiz-navigation {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  max-width: 780px;
}

.podiatre-quiz-navigation button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.podiatre-quiz-result {
  max-width: 900px;
}

.podiatre-quiz-result p {
  color: var(--podiatre-blue-grey);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.podiatre-content-shell,
.podiatre-article,
.podiatre-migration-page {
  min-height: 58vh;
  padding: clamp(4rem, 8vw, 8rem) var(--podiatre-gutter);
}

.podiatre-migration-page h1,
.podiatre-content-shell > h1,
.podiatre-article > h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

.podiatre-migration-page > p {
  font-size: clamp(1.25rem, 2vw, 2rem);
  max-width: 860px;
}

.podiatre-article {
  max-width: 1080px;
}

.podiatre-article-meta {
  color: #536a70;
  display: flex;
  font-size: 0.9rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.podiatre-article > h1 {
  max-width: 980px;
}

.podiatre-article > .wp-block-post-featured-image {
  margin-block: clamp(2rem, 5vw, 4rem);
}

.podiatre-article > .wp-block-post-featured-image img {
  max-height: 700px;
  object-fit: cover;
  width: 100%;
}

.podiatre-article .wp-block-post-content {
  font-size: 1.1rem;
  max-width: 840px;
}

.podiatre-article .wp-block-post-content h2,
.podiatre-article .wp-block-post-content h3 {
  margin-top: 2.8rem;
}

.podiatre-article .wp-block-post-content h3 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.podiatre-article .wp-block-post-content h4 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  margin-top: 2.2rem;
}

.podiatre-article .wp-block-post-content p,
.podiatre-article .wp-block-post-content li {
  line-height: 1.7;
}

.podiatre-anchor {
  display: block;
  scroll-margin-top: 2rem;
}

html.podiatre-motion-pending
  body
  :is(p, h1, h2, h3, h4, h5, h6, a, button, li):not(
    .no-fade-in,
    .no-fade-in *,
    .quiz,
    .quiz *
  ),
[data-podiatre-motion-reveal] {
  opacity: 0;
  transform: translateY(20%);
  will-change: opacity, transform;
}

[data-podiatre-motion-reveal] {
  transition:
    opacity 400ms cubic-bezier(0.45, 0, 0.55, 1),
    transform 400ms cubic-bezier(0.45, 0, 0.55, 1);
}

[data-podiatre-motion-reveal].podiatre-motion-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes podiatre-rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes podiatre-curtain {
  to {
    transform: translateY(0);
  }
}

@keyframes podiatre-logo-in {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes podiatre-splash-fade {
  to {
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  .podiatre-quick-nav a:nth-child(2),
  .podiatre-quick-nav a:nth-child(3) {
    display: none;
  }

  .podiatre-menu-layout {
    grid-template-columns: 1fr;
  }

  .podiatre-menu-aside {
    border-top: 1px solid rgb(241 237 231 / 20%);
    padding-top: 2rem;
  }

  .podiatre-footer-inner {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .podiatre-footer-nav {
    display: none;
  }

  .podiatre-feature-media,
  .podiatre-feature-media img {
    min-height: 390px;
  }

  .podiatre-cta-band .podiatre-container {
    grid-template-columns: 90px minmax(0, 1fr);
    padding-block: 2rem;
  }

  .podiatre-cta-band .podiatre-button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 782px) {
  .admin-bar .podiatre-site-header.is-home,
  .admin-bar .podiatre-site-header.is-overlay {
    top: 46px;
  }
}

@media (max-width: 760px) {
  :root {
    --podiatre-section: 4rem;
  }

  body {
    font-size: 16px;
  }

  .podiatre-site-header {
    height: 60px;
  }

  .podiatre-header-inner {
    padding-left: 0;
  }

  .podiatre-header-logo {
    flex-basis: 64px;
  }

  .podiatre-header-logo img {
    height: 56px;
    transform: none;
    width: 39px;
  }

  .podiatre-header-bar {
    gap: 0.5rem;
    padding-right: 0;
  }

  .podiatre-phone span,
  .podiatre-quick-nav {
    display: none;
  }

  .podiatre-phone {
    margin-right: auto;
  }

  .podiatre-phone svg {
    height: 48px;
    width: 48px;
  }

  .podiatre-full-menu {
    padding-top: 0.75rem;
  }

  .podiatre-menu-list > li > a {
    font-size: 1.7rem;
  }

  .podiatre-menu-list .sub-menu {
    display: none;
  }

  .podiatre-menu-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

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

  .podiatre-footer-stamp {
    height: 94px;
    width: 94px;
  }

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

  .podiatre-footer-intro {
    border-bottom: 1px solid rgb(241 237 231 / 22%);
    border-right: 0;
    padding-bottom: 2.5rem;
    padding-right: 0;
  }

  .podiatre-footer-bottom,
  .podiatre-footer-bottom > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .podiatre-home-hero {
    min-height: 620px;
  }

  .podiatre-migrated-section.is-hero {
    display: block;
    min-height: 0;
  }

  .podiatre-migrated-section.is-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3rem);
    max-width: 100% !important;
    overflow-wrap: break-word;
    white-space: normal !important;
    width: 100%;
  }

  .podiatre-migrated-section.is-hero .wp-block-buttons {
    justify-content: flex-start;
  }

  .podiatre-migrated-section.is-hero .wp-block-button__link {
    width: auto;
  }

  .podiatre-hero-content {
    padding-top: 6rem;
  }

  .podiatre-hero-content h1 {
    font-size: clamp(2.1rem, 10vw, 3.6rem);
  }

  .podiatre-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .podiatre-hero-actions .podiatre-button {
    width: 100%;
  }

  .podiatre-video-rail {
    grid-auto-columns: 84%;
  }

  .podiatre-home-intro {
    display: flex;
    flex-direction: column;
  }

  .podiatre-inline-stamp {
    align-self: flex-end;
  }

  .podiatre-section-heading,
  .podiatre-feature-card,
  .podiatre-feature-card.is-reversed,
  .podiatre-approach-grid,
  .podiatre-about-split,
  .podiatre-accordion-layout {
    grid-template-columns: 1fr;
  }

  .podiatre-section-heading {
    gap: 0.5rem;
  }

  .podiatre-feature-card.is-reversed .podiatre-feature-media,
  .podiatre-feature-card.is-reversed .podiatre-feature-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .podiatre-feature-media,
  .podiatre-feature-media img {
    min-height: 320px;
  }

  .podiatre-card-grid,
  .podiatre-honors-grid,
  .podiatre-resource-grid,
  .podiatre-technique-grid,
  .podiatre-blog-grid,
  .podiatre-location-grid,
  .podiatre-steps-grid,
  .podiatre-quiz-types {
    grid-template-columns: 1fr;
  }

  .podiatre-form-grid,
  .podiatre-steps-intro {
    grid-template-columns: 1fr;
  }

  .podiatre-steps-intro .podiatre-button {
    justify-self: start;
  }

  .podiatre-steps-grid li {
    min-height: 0;
  }

  .podiatre-quiz-navigation {
    flex-direction: column-reverse;
  }

  .podiatre-condition-card {
    padding-inline: 1.25rem;
  }

  .podiatre-condition-image {
    max-width: 340px;
  }

  .podiatre-cta-band .podiatre-container {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .podiatre-cta-band img {
    height: 140px;
  }

  .podiatre-cta-band h2 {
    font-size: 1.8rem;
  }

  .podiatre-honor.is-second {
    flex-direction: column;
  }

  .podiatre-honor-image {
    min-height: 320px;
  }

  .podiatre-technique-grid h2 {
    min-height: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  html.podiatre-motion-pending
    body
    :is(p, h1, h2, h3, h4, h5, h6, a, button, li),
  [data-podiatre-motion-reveal] {
    opacity: 1;
    transform: none;
  }
}
