.tour-card {
  padding-block: 5rem;
}

.tour-card--alt {
  background-color: rgb(248, 248, 248);
}

.tour-card__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-inline: 1rem;
}

.tour-card__heading {
  font-size: 1.875rem;
  line-height: calc(2.25 / 1.875);
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(85, 85, 85);
  margin-block-end: 1rem;
}

.tour-card__body {
  color: rgb(119, 119, 119);
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block-end: 2rem;
}

.tour-card__carousel {
  border-radius: 0.75rem;
  overflow: hidden;
}

.tour-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

@media (min-width: 64rem) {
  .tour-card__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .tour-card__inner--reversed .tour-card__image {
    order: -1;
  }
}
