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

.dm_history {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  margin-top: 60px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  background-color: var(--silver_alt);
}
@media (min-width: 769px) {
  .dm_history {
    background-image: var(--history_fade);
  }
}
@supports (padding: clamp(1em, 1vw, 1em)) {
  .dm_history {
    margin-top: clamp(60px, 5.7142857143vw, 80px);
    margin-bottom: clamp(60px, 9.6428571429vw, 90px);
    padding-bottom: clamp(40px, 7.5vw, 70px);
  }
}

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

.dm_history__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_history__heading {
    font-size: clamp(20px, 1.9444444444vw, 28px);
  }
}

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

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

.dm_history__gallery {
  margin-top: 36px;
}
@supports (padding: clamp(1em, 1vw, 1em)) {
  .dm_history__gallery {
    margin-top: clamp(36px, 5vw, 70px);
  }
}

ul.dm_history__gallery__list {
  display: grid;
  align-items: center;
  column-gap: 20px;
  max-width: none;
  grid-auto-flow: column;
  width: 200vw;
}
@supports (column-gap: clamp(1em, 1vw, 1em)) {
  ul.dm_history__gallery__list {
    column-gap: clamp(20px, 3.4722222222vw, 50px);
  }
}
@media (min-width: 769px) {
  ul.dm_history__gallery__list {
    width: 130vw;
  }
}

@media (min-width: 769px) {
  ul.dm_history__gallery__list--mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  ul.dm_history__gallery__list--desktop {
    display: none;
  }
}

.dm_history__gallery__image {
  filter: grayscale(1);
  border-radius: 4px;
  overflow: hidden;
}
.dm_history__gallery__image:first-child {
  border-radius: 0 4px 4px 0;
}
.dm_history__gallery__image:last-child {
  border-radius: 4px 0 0 4px;
}
.dm_history__gallery__image img {
  display: block;
  aspect-ratio: 336/240;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.dm_history__timeline {
  margin-top: 44px;
  margin-left: auto;
  margin-right: auto;
  max-width: 934px;
}

.dm_history__timeline__item {
  display: grid;
  row-gap: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 14px;
  border-top: solid 1px var(--silver);
  color: var(--black);
}
.dm_history__timeline__item:first-child {
  padding-top: 0;
  border-top-width: 0;
}
.dm_history__timeline__item:last-child {
  padding-bottom: 0;
}
@media (min-width: 481px) {
  .dm_history__timeline__item {
    grid-template-columns: 60px 1fr;
    column-gap: 36px;
  }
}
.dm_history__timeline__item dt {
  font-family: var(--font_heading);
  font-weight: bold;
  color: var(--navy);
}
