.pricing-alerts {
  margin: -8px 0 26px;
  padding: 14px 16px;
  border-left: 3px solid #b42318;
  background: #fff1f0;
}

.pricing-alerts p {
  margin: 0;
  color: #b42318;
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.55;
}

.pricing-alerts p + p {
  margin-top: 7px;
}

.travel-alert {
  margin: -8px 0 26px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: #fff8e4;
}

.travel-alert p {
  margin: 0;
  color: #705716;
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.55;
}

.flight-fields {
  margin: 22px 0 0;
}

.destination-grid {
  grid-template-columns: repeat(3, 1fr);
}

.choice-label {
  display: block;
  margin-bottom: 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.island-selector,
.airport-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.island-selector label,
.airport-options label {
  cursor: pointer;
}

.island-selector input,
.airport-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.island-selector span,
.airport-options label > span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 7px;
  border: 1px solid #bdc7c7;
  background: #fff;
  text-align: center;
  font-size: .7rem;
  transition: border-color .2s, background .2s, color .2s, opacity .2s;
}

.island-selector input:checked + span,
.airport-options input:checked + span {
  border-color: var(--deep);
  background: var(--deep);
  color: #fff;
}

.island-selector input:disabled + span {
  cursor: not-allowed;
  opacity: .38;
  background: #e7ecea;
}

.airport-options label > span {
  min-height: 76px;
  flex-direction: column;
  gap: 4px;
}

.airport-options small {
  color: #718084;
  font-size: .65rem;
}

.airport-options input:checked + span small {
  color: #d9e0e2;
}

@media (min-width: 901px) {
  .nav nav a {
    transition: color .22s ease, transform .22s ease;
    transform-origin: center;
  }

  .nav nav a:hover,
  .nav nav a:focus-visible {
    color: var(--gold);
    transform: scale(1.16);
  }
}

@media (max-width: 900px) {
  .destination-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .island-selector,
  .airport-options {
    grid-template-columns: 1fr;
  }
}
