.dm_locations__heading {
  letter-spacing: 0.03em;
  font-family: var(--font_heading);
  font-weight: bold;
}

.dm_locations__item a {
  text-underline-offset: 0.2em;
  text-decoration-color: transparent;
  transition: color 0.2s, text-decoration 0.2s;
}
.dm_locations {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  margin-top: 60px;
  padding-bottom: 60px;
  background-color: var(--silver_alt);
}
@media (min-width: 769px) {
  .dm_locations {
    background-image: var(--contact_fade);
  }
}
@supports (padding: clamp(1em, 1vw, 1em)) {
  .dm_locations {
    margin-top: clamp(60px, 5.7142857143vw, 80px);
    padding-bottom: clamp(60px, 13.9285714286vw, 130px);
  }
}

.dm_locations__header {
  position: relative;
  padding-bottom: 36px;
  background-color: var(--white);
}

.dm_locations__heading {
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--navy);
}
@supports (font-size: clamp(1em, 1vw, 1em)) {
  .dm_locations__heading {
    font-size: clamp(20px, 1.9444444444vw, 28px);
  }
}

.dm_locations__line__container {
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  z-index: 20;
  mix-blend-mode: multiply;
}

.dm_locations__line {
  height: 32px;
  background-color: var(--blue);
}
@media (min-width: 769px) {
  .dm_locations__line {
    display: grid;
    grid-template-columns: 440fr 580fr;
    column-gap: 36px;
    background-color: transparent;
  }
  @supports (margin: clamp(1em, 1vw, 1em)) {
    .dm_locations__line {
      column-gap: clamp(36px, 5.5555555556vw, 80px);
    }
  }
}
@media (min-width: 769px) {
  .dm_locations__line span {
    display: block;
    height: 100%;
    background-color: var(--blue);
  }
}

.dm_locations__list {
  display: grid;
  row-gap: 60px;
  column-gap: 20px;
  margin-top: 60px;
}
@supports (padding: clamp(1em, 1vw, 1em)) {
  .dm_locations__list {
    margin-top: clamp(60px, 6.4285714286vw, 90px);
  }
}
@media (min-width: 1025px) {
  .dm_locations__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .dm_locations__item {
    text-align: center;
  }
}
@media (min-width: 561px) and (max-width: 1024px) {
  .dm_locations__item {
    display: grid;
    grid-template-columns: 180px 1fr;
    column-gap: 30px;
  }
}
.dm_locations__item p, .dm_locations__item address {
  font-size: 16px;
  line-height: 1.4444444444;
  text-wrap: pretty;
  color: var(--navy);
}
@supports (font-size: clamp(1em, 1vw, 1em)) {
  .dm_locations__item p, .dm_locations__item address {
    font-size: clamp(16px, 1.2857142857vw, 18px);
  }
}
.dm_locations__item strong {
  font-family: var(--heading_text);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--red);
}
.dm_locations__item address {
  margin-top: 1em;
  font-style: normal;
}
.dm_locations__item address + p {
  margin-top: 1em;
}
.dm_locations__item a {
  font-weight: bold;
  color: var(--navy);
}
.dm_locations__item a:hover, .dm_locations__item a:focus {
  text-decoration-color: currentColor;
  color: var(--navy_hover);
}

.dm_locations__map {
  position: relative;
  height: 0;
  margin-top: 30px;
  padding-bottom: 82.4175824176%;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--white);
}
@media (min-width: 561px) and (max-width: 1024px) {
  .dm_locations__map {
    margin-top: 0;
  }
}

.dm_locations__map__container,
.dm_locations__map__container .map__container__embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dm_locations__map__marker {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 20px 44px;
}
.dm_locations__map__marker .button__container {
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.dm_locations__map__marker .dm_button {
  pointer-events: auto;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.dm_locations__map__marker > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.dm_locations__map__marker > a .text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.dm_locations__map__marker:hover .dm_button, .dm_locations__map__marker:focus-within .dm_button {
  background-color: var(--navy_hover);
  box-shadow: 0 10px 15px var(--navy_button_hover);
  transform: translateY(-5px);
}
