.review-marquee {
  overflow: hidden;
  margin-inline: calc((100vw - 100%) / -2);
  padding-inline: max(20px, calc((100vw - var(--wrap)) / 2));
}

.review-grid {
  display: flex;
  grid-template-columns: none;
  width: max-content;
  gap: 12px;
}

.review-grid.is-looping {
  animation: review-loop 48s linear infinite;
}

.review-grid:hover,
.review-grid:focus-within {
  animation-play-state: paused;
}

.review-grid article {
  width: 238px;
  min-width: 238px;
  flex: 0 0 238px;
}

@keyframes review-loop {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 6px)); }
}

.real-map {
  display: block;
  width: 100%;
  height: 205px;
  border: 0;
  border-radius: 8px;
}

.location-card > a {
  display: block;
  margin-top: 10px;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  text-align: right;
}

@media (max-width: 620px) {
  .review-grid {
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .review-grid article {
    width: 280px;
    min-width: 280px;
    flex-basis: 280px;
  }

  .review-grid.is-looping {
    animation-duration: 55s;
  }

  .real-map { height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  .review-marquee { overflow-x: auto; }
  .review-grid.is-looping { animation: none; }
}

.footer-brand img {
  display: block;
  padding: 10px 14px;
  background: #fff;
  border-radius: 7px;
}

.footer-contact > a,
.footer-contact > span {
  position: relative;
  min-height: 24px;
  padding-left: 29px;
}

.footer-contact > a > img,
.footer-contact > span > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
