.showrooms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 2rem;
}

.showrooms > div {
  display: block;
  border: 1px solid #D0D5DD;
}

.showroom-img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.showroom-desc {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #D0D5DD;
}

.showroom-desc > div:first-child {
  border-bottom: 1px solid #D0D5DD;
}

.showroom-desc h3 {
  font-size: 20px;
  letter-spacing: -0.5px;
  white-space: nowrap;
  padding: 1.25rem;
  font-weight: bold;
}

.showroom-desc h3 span {
  text-decoration: underline;
}

.showroom-desc a.address {
  display: block;
  padding: 0 1.25rem 1.25rem 1.25rem;
  min-height: 140px;
}

.showroom-desc > div:last-child a {
  padding: 1.5rem;
  text-align: center;
}

.section-showroom-arrow {
  display: block;
  width: 100%;
  height: 100%;
}

.section-showroom-arrow::after {
  content: "";
  display: block;
  width: 18px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .showrooms {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem;
  }

  .showroom-img {
    height: 440px;
  }

  .showroom-desc {
    flex-direction: row;
    align-items: center;
  }

  .showroom-desc > div:first-child {
    border-bottom: none;
    border-right: 1px solid #D0D5DD;
    flex-grow: 1;
  }

  .showroom-desc > div:last-child a {
    padding: 2.5rem;
  }

  .showroom-desc h3 {
    border-right: none;
    width: 100%;
  }

  .showroom-desc h4 {
    font-size: 12px;
    margin-top: 10px;
  }
}