/* Footer LOCATIONS block + footer nav row (child theme overrides, scoped to footer) */

.footer .pm-footer__locations {
  margin-bottom: 30px;
}

.footer .pm-footer__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #aa8453;
  margin: 0 0 15px 0;
}

.footer .pm-footer__locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer .pm-footer__locations-grid a.location-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  font-size: 13px;
  color: #adadad;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0;
  transition: all 300ms ease;
  text-decoration: none;
}

.footer .pm-footer__locations-grid a.location-pill:hover {
  color: #aa8453;
  border-color: #aa8453;
  background-color: transparent;
}

.footer .pm-footer__locations-grid a.location-pill:focus-visible {
  outline: 2px solid #aa8453;
  outline-offset: 2px;
}

.footer .pm-footer__nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 30px;
}

/* Reuse theme link styling, just make it horizontal */
.footer .pm-footer__nav-row .footer-explore-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer .pm-footer__nav-row .footer-explore-list li + li {
  margin-top: 0; /* override theme vertical list spacing */
}

.footer .pm-footer__cta .butn-dark {
  margin: 0;
}

.footer .pm-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 18px;
}

.footer .pm-footer__legal-nav {
  display: block;
}

.footer .pm-footer__legal-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer .pm-footer__legal-list a {
  font-size: 14px;
  color: #adadad;
  transition: all 500ms ease;
  text-decoration: none;
}

.footer .pm-footer__legal-list a:hover {
  color: #aa8453;
}

/* Padding between blocks in footer-about column */
.footer .footer-column.footer-about .footer-logo {
  margin-bottom: 20px;
}

.footer .footer-column.footer-about .footer-about-text {
  margin-top: 0;
}

@media screen and (max-width: 991px) {
  .footer .pm-footer__nav-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

