.place-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  height: 420px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 36px 12px 12px;
}

.place-card > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  position: absolute;
  z-index: -1;
}

.place-card > h3 {
  z-index: 1;
  font-size: 24px;
  font-weight: 700;
  mix-blend-mode: luminosity;
  text-transform: uppercase;
  color: white;
}

.place-card > button {
  background-color: white;
  color: black;
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.place-card > button.small {
  display: flex;
  align-self: flex-end;
  gap: 0;
  width: min-content;
}

.place-card > button > img {
  max-width: 24px;
}

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

@media (max-width: 480px) {
}
