/* Destinations */
#destinations {
  padding-block: 2rem;
}

.destinations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "one two"
    "three four";
  gap: 1rem;
  align-items: stretch;
}

.destinations-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 1.5rem 0.25rem 1.5rem 0.25rem;
}

.destinations-item::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top,
      rgba(155, 2, 2, 0.15),
      rgba(255, 0, 0, 0));
  border-radius: 1.5rem 0.25rem 1.5rem 0.25rem;
}

.destinations-link {
  color: var(--white);
}

.destinations-item img {
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem 0.25rem 1.5rem 0.25rem;
}

.destinations-item:nth-child(1) {
  grid-area: one;
}

.destinations-item:nth-child(2) {
  grid-area: two;
}

.destinations-item:nth-child(3) {
  grid-area: three;
}

.destinations-item:nth-child(4) {
  grid-area: four;
}

.destinations-item-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem;
  text-align: start;
  z-index: 10;
}

.destinations-item-desc h3 {
  font-weight: 500;
}

.destinations-item-desc .cta {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "one" "two" "three" "four";
  }
}

/* Static Promo */
.static-promo {
  position: relative;
}

.static-promo-desc {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  padding: 1.5rem;
  width: 50%;
  background-color: var(--terciario);
  color: var(--white);
  text-decoration: none;
  opacity: .9;
  border-radius: 0 1rem 1rem 0;
}

.static-promo-desc h2 {
  font-size: 1.25rem;
  font-weight: 600;
}

.static-promo-desc span {
  font-size: 1rem;
  font-weight: 400;
}

@media (max-width: 992px) {
  .static-promo-desc {
    width: 100%;
    border-radius: 0;
  }

  .static-promo-desc h2 {
    font-size: 1.125rem;
  }

  .static-promo-desc span {
    font-size: .925rem;
  }
}