.contact-paths article {
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-paths article:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 20px 44px rgba(28, 30, 28, .09);
}

.contact-paths article > .contact-path-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 0 34px;
  border-radius: 20px;
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(167, 199, 0, .24);
}

.contact-path-icon svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-paths .contact-path-icon + h2 {
  margin-top: 0;
}

@media (max-width: 680px) {
  .contact-paths article > .contact-path-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 26px;
    border-radius: 18px;
  }
}

.dealer-points > div {
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
}

.dealer-points .dealer-point-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--lime);
  box-shadow: 0 9px 22px rgba(167, 199, 0, .18);
}

.dealer-points .dealer-point-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dealer-points > div {
  transition: transform .22s ease;
}

.dealer-points > div:hover {
  transform: translateX(7px);
}
