.tour-card {
  position: relative;

  a {
    text-decoration: none !important;
    color: var(--Alias-Secondary-500) !important;
  }

  a:hover {

    h2,
    h3,
    h4,
    h5 {
      color: var(--Alias-Primary-500);
    }

    img {
      box-shadow: 0 0 34px 0 rgba(106, 122, 147, 0.6);
    }
  }
}

.tour-card__image {
  margin-bottom: 1.25rem;

  @media screen and (min-width: 1024px) {
    margin-bottom: 1.5rem;
  }

  img {
    border-radius: 1rem;
    aspect-ratio: 460 / 320;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    box-shadow: 0 0 34px 0 rgba(106, 122, 147, 0);
    transition: 0.3s;
  }
}

.tour-card__title {

  h2,
  h3,
  h4,
  h5 {
    font-size: var(--heading-sm-font-size);
    line-height: var(--heading-sm-line-height);
    letter-spacing: var(--heading-sm-letter-spacing);
    margin-bottom: 0.75rem;
    color: var(--Alias-Secondary-500);
    transition: 0.3s;
  }
}

.tour-card__content {
  @media screen and (min-width: 1440px) {
    padding: 0 1.25rem;
  }
}

.tour-card__exerpt {
  margin-bottom: 1.75rem;
  font-weight: normal !important;

  p {
    margin: 0;
  }
}