/* Structural and completeness fixes */

/* Brand word highlight — marker stripe behind key words (not a boxed pill) */
.brand-highlight {
  color: var(--navy);
  padding: 0 0.08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(
    to top,
    rgba(37, 59, 119, 0.2) 0.44em,
    transparent 0.44em
  );
  background-repeat: repeat;
  background-size: 100% 1em;
}

.hero h1 .brand-highlight,
.page-hero h1 .brand-highlight {
  color: #fff;
  background-image: linear-gradient(
    to top,
    var(--navy) 0.5em,
    transparent 0.5em
  );
}

.mot-banner .brand-highlight,
.page-cta-band .brand-highlight,
.call-band .brand-highlight,
.section-header--light .brand-highlight {
  color: #fff;
  background-image: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.28) 0.44em,
    transparent 0.44em
  );
}

:root {
  --section-pad: clamp(72px, 9vw, 120px);
  --container: min(1160px, calc(100% - 48px));
}

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


.trust-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--light-bg);
}

.trust-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: center;
  color: var(--primary);
  margin-bottom: 2.5rem;
}

.trust-section__title .brand-highlight {
  color: var(--primary);
  background-image: linear-gradient(
    to top,
    rgba(37, 59, 119, 0.2) 0.44em,
    transparent 0.44em
  );
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .trust-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .trust-cards { grid-template-columns: 1fr; }
}

.trust-card {
  background: var(--white);
  border-top: 3px solid var(--primary);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 59, 119, 0.12);
  border-top-color: var(--primary-accent);
}

.trust-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
}

.trust-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.75;
}

.trust-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.trust-card span {
  display: block;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted-text);
  line-height: 1.5;
}

.steps-numbered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 100%;
}

.steps-numbered--four {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .steps-numbered--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

.how-it-works--dark {
  background: var(--hero-bg);
  color: #fff;
}

.how-it-works--dark .step-numbered__num {
  color: #fff;
  opacity: 0.2;
}

.how-it-works--dark .step-numbered h3 {
  color: #fff;
}

.how-it-works--dark .step-numbered p {
  color: rgba(255, 255, 255, 0.8);
}

.how-it-works--dark .step-numbered a {
  color: #fff;
  text-decoration: underline;
}

.how-it-works--dark h2 {
  color: #fff;
}

@media (max-width: 768px) {
  .steps-numbered,
  .steps-numbered--four {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    padding-left: 1.5rem;
  }

  .steps-numbered::before {
    content: "";
    position: absolute;
    left: 0.55rem;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 2px;
    background: var(--navy);
    opacity: 0.35;
  }
}

.step-numbered {
  position: relative;
}

.step-numbered__num {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step-numbered h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.step-numbered p {
  font-weight: 300;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .card-grid-2 { grid-template-columns: 1fr; }
}

.info-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-left: 3px solid var(--navy);
  border-radius: 6px;
  padding: 24px;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .card-grid-3 { grid-template-columns: 1fr; }
}

.sign-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 6px;
  padding: 24px;
  text-align: center;
}

.sign-card__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  color: var(--navy);
}

.sign-card__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.75;
}

.sign-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-transform: none;
  margin-bottom: 0.5rem;
}

.sign-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

.page-cta-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.page-cta-band h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-cta-band p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.page-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.page-cta-band .btn--outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.page-cta-band .btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.contact-form-panel__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.contact-block__value {
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-block__value a {
  color: var(--navy);
}

.call-band {
  background: var(--navy);
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.call-band h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.call-band__phone {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3rem);
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.call-band__phone:hover {
  color: #fff;
  opacity: 0.9;
}

.call-band p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  font-size: 1rem;
}

.book-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .book-options { grid-template-columns: 1fr; }
}

.book-option-card {
  background: #fff;
  border-top: 3px solid var(--navy);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
}

.book-option-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.book-option-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 0.5rem 0;
}

.book-option-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
}

.local-area__map {
  min-height: 380px;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid var(--primary);
}

.local-area h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--primary);
}

.why-us__media {
  min-height: 440px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background-color: var(--primary-light);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(37, 59, 119, 0.06) 0,
    rgba(37, 59, 119, 0.06) 12px,
    rgba(37, 59, 119, 0.14) 12px,
    rgba(37, 59, 119, 0.14) 24px
  );
}

.why-us__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 8px;
}

.why-us__copy h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--primary);
}

.why-us__copy .prose {
  color: #2a3a50;
  font-size: 1rem;
  line-height: 1.8;
  max-width: none;
}

.local-area__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.content-block,
.seo-local .prose,
.prose--full {
  max-width: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-layout-single {
  max-width: 42rem;
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 2000;
  padding: 0.75rem 1.25rem;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
}

.skip-link:focus {
  left: 1rem;
  top: 0;
  width: auto;
  height: auto;
}

.contact-block__label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.contact-block {
  margin-bottom: 1.25rem;
}

.contact-block p {
  font-weight: 300;
  color: var(--text-muted);
}

.contact-map {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--border-card);
}

.contact-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.contact-form-panel {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 40px;
}

.contact-form-panel .btn {
  width: 100%;
}

.booking-intro {
  margin-bottom: 1.25rem;
}

.booking-note {
  margin-top: 1.25rem;
}

.page-hero--image {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.page-hero--image > .container {
  width: 100%;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.section-header .section-label {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.site-footer {
  padding-top: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem 1.5rem;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}

@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}

.footer-logo-img {
  filter: none;
  max-height: 52px;
  margin-bottom: 1rem;
}

.footer-address,
.footer-phone,
.footer-email {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  margin-bottom: 0.5rem;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--footer-heading);
  margin-bottom: 1rem;
}

.footer-nav--services {
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-nav--services a {
  padding: 0.2rem 0;
}

.footer-hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}

.footer-hours-list li {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  margin-bottom: 0.35rem;
}

.footer-hours-note {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  line-height: 1.5;
}

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

.footer-nav a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.footer-bottom {
  width: 100%;
  background: var(--footer-bar);
  margin-top: 0;
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-credit {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--footer-link);
}

.footer-bottom a {
  color: var(--footer-link);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-grid,
.contact-grid--single {
  display: none;
}

.trust-bar {
  display: none;
}

/* Inner page hero with booking widget */
.page-hero--booking {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-block: clamp(4rem, 8vh, 6rem);
}

.page-hero--booking > .container {
  width: 100%;
}

.page-hero__layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

@media (max-width: 900px) {
  .page-hero__layout {
    grid-template-columns: 1fr;
  }

  .page-hero--booking .hero__widget-card {
    margin-top: 32px;
  }
}

.page-hero--booking .section-label {
  background: transparent;
  color: var(--primary);
  padding: 0;
}

.page-hero--booking h1 {
  color: #fff;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
}

.page-hero--location {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.page-hero--location .page-hero__content {
  max-width: 42rem;
}

.page-hero--location .hero__location {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.page-hero--location h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.page-hero--location p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.page-hero--location .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

/* Diagnostic / service job cards */
.card-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.job-card {
  background: var(--white);
  border-top: 3px solid var(--primary);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 59, 119, 0.12);
  border-top-color: var(--primary-accent);
}

.job-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
}

.job-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.75;
}

.job-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.job-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted-text);
  line-height: 1.6;
}

/* Makes pills */
.makes-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.makes-pills span {
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 20px;
}

/* SEO info boxes */
.seo-info-box {
  background: var(--light-bg);
  border-top: 4px solid var(--primary);
  border-radius: 8px;
  padding: 28px;
}

.seo-info-box--white {
  background: var(--white);
}

.seo-info-box h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.seo-info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-info-box li {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted-text);
  padding: 0.35rem 0;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}

.seo-info-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.seo-info-box__item {
  margin-bottom: 1rem;
}

.seo-info-box__item:last-child {
  margin-bottom: 0;
}

.seo-info-box__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.seo-info-box__item p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted-text);
  margin: 0;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

/* Location link cards */
.location-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .location-links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .location-links-grid { grid-template-columns: repeat(3, 1fr); }
}

.location-link-card {
  display: block;
  background: var(--white);
  border-top: 3px solid var(--primary);
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 59, 119, 0.12);
  color: inherit;
}

.location-link-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.location-link-card__title::after {
  content: "\2192";
  font-size: 1.1rem;
}

.location-link-card p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted-text);
  margin-top: 0.35rem;
  line-height: 1.45;
}

.internal-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .internal-links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .internal-links-grid { grid-template-columns: repeat(3, 1fr); }
}

.internal-link-card {
  display: block;
  background: var(--white);
  border-top: 3px solid var(--primary);
  border-radius: 8px;
  padding: 20px 24px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.internal-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 59, 119, 0.1);
}

.internal-link-card strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.internal-link-card strong::after {
  content: "\2192";
}

.internal-link-card span {
  display: block;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted-text);
  margin-top: 0.35rem;
}

.booking-widget-section {
  text-align: center;
}

.booking-widget-section .hero__widget-card {
  max-width: 720px;
  margin-inline: auto;
  text-align: left;
}

.booking-widget-section h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.text-link-cta {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.text-link-cta:hover {
  color: var(--primary-accent);
  text-decoration: underline;
}

.text-link-cta::after {
  content: " \2192";
}

/* Footer local areas dropdown */
.footer-local {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-local__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--footer-heading);
  cursor: pointer;
  text-align: left;
}

.footer-local__toggle::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.footer-local__toggle[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.footer-local__panel {
  list-style: none;
  padding: 0.5rem 0 0;
  margin: 0;
}

.footer-local__panel[hidden] {
  display: none;
}

.footer-local__panel a {
  font-size: 0.82rem;
  padding: 0.25rem 0;
}
