.locations-section {
  padding: 110px 0;
}

.locations-map-wrapper {
  position: relative;
  border-radius: 192px 0 173px 0;
  overflow: hidden;
  width: 100%;
}

.locations-map-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Locations Grid */
.locations-grid-section {
  background: #fafafa;
  padding: 110px 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.location-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.location-card__state {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 400;
  color: #222;
  line-height: 36px;
  margin: 0;
}

.location-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.location-card__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  min-height: 74px;
}

.location-card__item .fa-star {
  font-size: 20px;
  color: #c64239;
  flex-shrink: 0;
}

.location-card__city {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 28px;
}

@media (max-width: 991px) {
  .locations-section {
    padding: 70px 0;
  }

  .locations-map-wrapper {
    border-radius: 80px 0 80px 0;
  }

  .locations-grid-section {
    padding: 70px 0;
  }

  .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .locations-section {
    padding: 50px 0;
  }

  .locations-map-wrapper {
    border-radius: 40px 0 40px 0;
  }

  .locations-grid-section {
    padding: 50px 0;
  }

  .locations-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .location-card {
    padding: 20px 16px;
    gap: 16px;
  }

  .location-card__state {
    font-size: 24px;
  }

  .location-card__city {
    font-size: 18px;
  }
}
