.stores {
  background: var(--gray-light);
  padding-top: 48px;
  padding-bottom: 0;
}

.stores--home .stores__wrap {
  position: relative;
}

.stores--home .stores__bg {
  width: 100%;
  height: auto;
  display: block;
}

.stores--home .stores__inner {
  position: absolute;
  inset: 0;
  padding: 48px var(--gutter);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .stores--home .stores__inner {
    flex-direction: column;
    padding: 24px;
    align-items: stretch;
  }
}

.stores--home .stores__slider {
  flex: 0 1 auto;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.stores__column {
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
  height: 100%;
}

@media (max-width: 767px) {
  .stores__column {
    flex-direction: column;
    gap: 16px;
  }
}

.stores__city {
  flex-shrink: 0;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stores__city .city {
  font: 700 42px/1 var(--primary-font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  color: #000;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .stores__city {
    width: auto;
    justify-content: flex-start;
  }

  .stores__city .city {
    font-size: 28px;
    writing-mode: horizontal-tb;
    transform: none;
  }
}

.stores__stores {
  flex: 1;
  min-width: 0;
  margin-bottom: auto;
}

.stores__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
}

.stores__item {
  color: #000;
  min-width: 0;
}

@media (max-width: 767px) {
  .stores__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stores__item {
    min-width: 0;
  }
}

.stores__item-name {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.35;
  margin: 0 0 4px;
}

.stores__item-address,
.stores__item-hours,
.stores__item-phone {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0 0 2px;
  padding-bottom: 0;
}

.stores__item-phone a {
  color: inherit;
  text-decoration: none;
}

/* Swiper slides equal height */
.stores__slider .swiper-wrapper {
  align-items: stretch;
}

.stores__slider .swiper-slide {
  height: auto;
}

