.locations {
  margin: 40px auto 0;
  padding: 0 25.5px 80px;
}

.locations__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 24px;
  row-gap: 48px;
  padding: 0 clamp(0px, calc(12px + 50vw - 188.5px), 12px);
  width: 100%;
  max-width: 1032px;
  margin: 0 auto;
  align-items: stretch;
}

.location {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location__image {
  width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  aspect-ratio: 1;
  object-fit: cover;
}

.location__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
}

.location > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location__text {
  font-size: 16px;
  line-height: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.link {
  margin-top: 16px;
}

.fadeIn {
  transition: 0.9s;
  opacity: 0;
  will-change: opacity;
}

.fadeIn.animated {
  opacity: 1;
}

@media (min-width: 768px) {
}
