.tour_wrapper {
  --camp-card-bg: #dce4e5;
  --camp-card-bg-rgb: 220, 228, 229;
  min-height: 684px;
  overflow: hidden;
  background: var(--camp-card-bg);
}

.tour_wrapper .tour_container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  min-height: 684px;
  margin: 0;
  padding: 0;
}

.tour_wrapper .tour_container.tour_container_no_image {
  grid-template-columns: minmax(0, 1fr);
}

.tour_wrapper .tour_content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  min-width: 0;
  padding: 100px 60px;
}

.tour_wrapper .camp_content_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.tour_wrapper .camp_attributes {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tour_wrapper .camp_budge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 18px;
  border: 1px solid #aa2b21;
  border-radius: 14px;
  background: #ffffff;
  color: #aa2b21;
}

.tour_wrapper .camp_budge .p1,
.tour_wrapper .camp_state .p1 {
  margin: 0;
  font-size: 18px;
  font-weight: 550;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

.tour_wrapper .camp_state {
  gap: 0;
  color: #000000;
  text-transform: none;
}

.tour_wrapper .camp_state_point {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin: 10px;
  border-radius: 50%;
  background: #6c9d6a;
}

.tour_wrapper .camp_content_title {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.tour_wrapper .camp_content_title > .h5 {
  margin: 0 0 10px;
  color: #aa2b21;
  font-size: 30px;
  font-weight: 600;
  font-stretch: 40%;
  font-variation-settings: "GRAD" -55, "XOPQ" 80, "XTRA" 421, "YOPQ" 79, "YTAS" 750, "YTDE" -203, "YTFI" 738, "YTLC" 514, "YTUC" 712, "wdth" 40, "opsz" 60;
  line-height: 0.9;
  text-transform: uppercase;
}

.tour_wrapper .camp_content_title > .h2 {
  width: 100%;
  margin: 0;
  color: #000000;
  font-size: clamp(88px, 8.333vw, 120px);
  font-weight: 500;
  font-stretch: 35%;
  font-variation-settings: "GRAD" 0, "XOPQ" 80, "XTRA" 421, "YOPQ" 79, "YTAS" 750, "YTDE" -203, "YTFI" 738, "YTLC" 540, "YTUC" 712, "wdth" 35, "opsz" 70;
  line-height: 0.85;
}

.tour_wrapper .camp_content_title > .h2 + .p1 {
  max-width: 100%;
  margin: 20px 0 0;
  color: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  font-weight: 550;
  line-height: 1.4;
}

.tour_wrapper .camp_content_title > .p1 + .button,
.tour_wrapper .camp_content_title > .h2 + .button {
  margin-top: 40px;
}

.tour_wrapper .button {
  min-height: 61px;
  padding: 18px 40px;
  border-radius: 14px;
  background: var(--button-red);
  font-size: 18px;
  font-weight: 550;
  line-height: 1.4;
}

.tour_wrapper .button:hover,
.tour_wrapper .button:focus-visible {
  background: var(--button-red-hover);
}

.tour_wrapper .camp_features {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 0;
  padding: 12px 18px;
  border: 1px solid #ffffff;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
}

.tour_wrapper .tour_single_feature {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.tour_wrapper .tour_single_feature + .tour_single_feature {
  padding-left: 19px;
}

.tour_wrapper .tour_single_feature + .tour_single_feature::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(10, 9, 7, 0.15);
}

.tour_wrapper .tour_single_feature img {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.tour_wrapper .tour_single_feature .h4,
.tour_wrapper .tour_single_feature .p2 {
  margin: 0;
  color: #0a0907;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 550;
  line-height: 1.4;
  text-align: left;
  text-transform: none;
}

.tour_wrapper .tour_img {
  position: relative;
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: auto;
}

.tour_wrapper .tour_img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tour_wrapper .tour_img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--camp-card-bg) 0%, rgba(var(--camp-card-bg-rgb), 0) 61.506%);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .tour_wrapper .tour_content {
    padding-right: 40px;
    padding-left: 40px;
  }

  .tour_wrapper .camp_content_title > .h2 {
    font-size: clamp(72px, 9vw, 96px);
  }
}

@media (max-width: 900px) {
  .tour_wrapper,
  .tour_wrapper .tour_container {
    min-height: 0;
  }

  .tour_wrapper .tour_container {
    grid-template-columns: 1fr;
  }

  .tour_wrapper .tour_content {
    gap: 20px;
    padding: 60px 20px;
  }

  .tour_wrapper .camp_content_title > .h2 {
    font-size: clamp(68px, 21vw, 92px);
  }

  .tour_wrapper .tour_img {
    min-height: 440px;
  }

  .tour_wrapper .tour_img::after {
    background: linear-gradient(180deg, var(--camp-card-bg) 0%, rgba(var(--camp-card-bg-rgb), 0) 55%);
  }

  .tour_wrapper .button {
    width: auto;
    align-self: flex-start;
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 520px) {
  .tour_wrapper .camp_attributes {
    gap: 10px;
  }

  .tour_wrapper .camp_budge .p1,
  .tour_wrapper .camp_state .p1,
  .tour_wrapper .camp_content_title > .h2 + .p1,
  .tour_wrapper .tour_single_feature .h4,
  .tour_wrapper .tour_single_feature .p2 {
    font-size: 16px;
  }

  .tour_wrapper .camp_content_title > .h5 {
    font-size: 26px;
  }

  .tour_wrapper .camp_content_title > .h2 {
    font-size: clamp(60px, 20vw, 78px);
  }

  .tour_wrapper .camp_features {
    gap: 12px;
    padding: 10px 12px;
  }

  .tour_wrapper .tour_single_feature + .tour_single_feature {
    padding-left: 13px;
  }

  .tour_wrapper .tour_single_feature img {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .tour_wrapper .tour_img {
    min-height: 360px;
  }
}
