/* Two genuinely equivalent choices, using the same rhythm, image area and action. */
.tours-routes {
  padding: 90px 0;
  background: #f5f7fc;
}

.tours-routes__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.72fr);
  gap: 22px 80px;
  align-items: end;
  margin-bottom: 32px;
}

.tours-routes__heading .section-kicker {
  grid-column: 1 / -1;
  margin: 0;
}

.tours-routes__heading h2 {
  max-width: 620px;
  margin: 0;
}

.tours-routes__heading > p:not(.section-kicker) {
  max-width: 520px;
  margin: 0 0 3px;
  color: #536985;
  font-size: 16px;
  line-height: 1.6;
}

.tours-routes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.tours-route {
  display: grid;
  grid-template-columns: minmax(340px, 0.42fr) minmax(0, 0.58fr);
  min-height: 340px;
  overflow: hidden;
  border: 1px solid #1c3f55;
  border-radius: 17px;
  background: #071a29;
  color: #fff;
}

.tours-route > div {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 37px;
}

.tours-route .route-kicker,
.tours-route--capture .route-kicker {
  margin: 0 0 12px;
  color: #81dcb5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tours-route--studio .route-kicker {
  color: #ab9cff;
}

.tours-route h3 {
  max-width: 315px;
  margin: 0 0 12px;
  color: #fff;
  font-size: 26px;
  line-height: 1.14;
}

.tours-route > div > p:not(.route-kicker) {
  max-width: 340px;
  margin: 0 0 25px;
  color: #d2e0e8;
  font-size: 14px;
  line-height: 1.62;
}

.tours-route figure,
.tours-route--capture figure {
  display: block;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  background: #0d1520;
}

.tours-route figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tours-route--studio figure img {
  object-fit: contain;
  object-position: center;
}

.tours-route__button {
  display: inline-flex;
  min-width: 205px;
  min-height: 48px;
  margin-top: auto;
  align-items: center;
  justify-content: center;
  border-color: #5e3df4;
  background: #5e3df4;
  color: #fff;
  box-shadow: 0 12px 25px rgba(94, 61, 244, 0.28);
}

.tours-route__button:hover,
.tours-route__button:focus-visible {
  border-color: #7256ff;
  background: #7256ff;
  color: #fff;
}

@media (max-width: 800px) {
  .tours-routes { padding: 62px 0; }
  .tours-routes__heading { grid-template-columns: 1fr; gap: 16px; margin-bottom: 26px; }
  .tours-routes__heading > p:not(.section-kicker) { margin: 0; }
  .tours-route { grid-template-columns: 1fr; }
  .tours-route > div { min-height: 0; padding: 29px 27px; }
  .tours-route figure,.tours-route--capture figure { min-height: 0; aspect-ratio: 16 / 9; }
  .tours-route h3 { max-width: 100%; }
}

@media (max-width: 520px) {
  .tours-route__button { width: 100%; }
}
