.visit__heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.visit__heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4.5vw, 4.35rem);
}

.visit__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.visit-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(36, 67, 49, .12);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(36, 67, 49, .1);
}

.visit-card::after {
  position: absolute;
  right: -75px;
  bottom: -95px;
  width: 230px;
  height: 230px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: .12;
}

.visit-card--tour {
  background: var(--forest-deep);
  color: #fff;
}

.visit-card--reviews {
  background: #f2e8d4;
  color: var(--forest-deep);
}

.visit-card .eyebrow {
  margin-bottom: 18px;
}

.visit-card--tour .eyebrow {
  color: #c9d9bd;
}

.visit-card--reviews .eyebrow {
  color: #866632;
}

.visit-card h3 {
  max-width: 480px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.visit-card > p:not(.eyebrow) {
  max-width: 490px;
  margin-bottom: 30px;
}

.visit-card .button {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.visit-card--tour .button {
  background: #fff;
  color: var(--forest-deep);
}

.review-stars {
  margin-bottom: 18px;
  color: #b4822d;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: .22em;
  line-height: 1;
}

.button--reviews {
  background: var(--forest);
  color: #fff;
}

@media (max-width: 760px) {
  .visit__heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .visit__cards {
    grid-template-columns: 1fr;
  }

  .visit-card {
    min-height: 355px;
    padding: 34px 28px;
  }

  .visit .visit-card .button {
    margin-top: auto;
  }
}
