.slider--dests--admin ul {
  padding: 0;
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 16px;
}
.slider--dests--admin ul li {
  flex-grow: 1;
}

.tile-dest {
  display: block;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--black);
  padding: 24px;
  min-height: 420px;
  position: relative;
  border-radius: 24px;
}
.tile-dest:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 24px;
}
.tile-dest:hover .content {
  border: 1px solid #fff;
}
.tile-dest:hover .text {
  display: block;
}
.tile-dest .title {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  color: #fff;
  text-align: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  z-index: 2;
}
.tile-dest .title h3, .tile-dest .title h4 {
  color: #fff;
  text-shadow: 1px 1px 20px rgba(0, 0, 0, 0.7);
}
.tile-dest .title h3 {
  font-family: "Lemonado Caps Smooth", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 32px;
}
.tile-dest .title h4 {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  color: #c5e4e4;
  font-size: 18px;
  margin-top: 0;
  font-weight: 700;
}
.tile-dest .text {
  font-size: 14px;
  color: #fff;
  display: none;
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0 10px 10px;
  border-radius: 16px;
  z-index: 2;
}
