.tours-slider-wrapper {
    --tours-slider-width: 720px;
    --tours-slider-bg: #ebe9e6;
    --tours-slider-text: #050505;
    position: relative;
    overflow: visible;
    width: 100%;
    background: var(--tours-slider-bg);
    color: var(--tours-slider-text);
    padding: 22px 0 40px;
}

.tours-slider-inner {
    position: relative;
    overflow: visible;
    width: min(var(--tours-slider-width), calc(100vw - 116px));
    margin: 0 auto;
}

.tours-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.tours-slider-track {
    display: flex;
    gap: 26px;
    transition: transform .45s ease;
    will-change: transform;
}

.tour-slide {
    flex: 0 0 calc((100% - 52px) / 3);
    min-width: 0;
}

.tour-card {
    background: transparent;
}

.tour-image-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 230 / 270;
}

.tour-image:is([sizes="auto" i], [sizes^="auto," i]) {
    contain-intrinsic-size: 230px 270px !important;
}

.tour-image {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none;
    object-fit: cover;
}

.tour-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #006f9f;
    padding: 8px 13px;
    text-transform: uppercase;
    font-size: 9px;
    line-height: 1;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.tour-badge-discover {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #bb6713;;
    padding: 8px 13px;
    text-transform: uppercase;
    font-size: 9px;
    line-height: 1;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.tour-duration {
    position: absolute;
    bottom: 14px;
    left: 10px;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    font-family: Georgia, "Times New Roman", serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}

.tour-content {
    padding-top: 15px;
}

.tour-title {
    color: var(--tours-slider-text);
    font-size: 1.5rem;
    line-height: 1.25;
    margin: 0 0 8px;
    font-family: "minion-pro", Georgia, serif !important;
    font-weight: 400;
	 
}

.tour-title a {
    color: inherit;
    text-decoration: none;
}

.tour-title a:hover {
    color: #006f9f;
}

.tour-departure {
    color: var(--tours-slider-text);
    font-size: 1.1rem;
    line-height: 1.35;
    min-height: 26px;
    margin-bottom: 13px;
	 
}

.tour-footer {
    border-top: 1px solid color-mix(in srgb, var(--tours-slider-text) 22%, transparent);
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 14px;
}

.tour-price-label {
    color: var(--tours-slider-text);
    font-size: 0.8rem;
    line-height: 1;
    margin-bottom: 9px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.tour-price {
    color: #0072a7;
    font-size: 1.6rem;
    line-height: 1;
    font-family: "Roboto", sans-serif !important;
}

.tour-price-discover {
    color: #bb6613;
    font-size: 22px;
    line-height: 1;
    font-family: "Roboto", sans-serif !important;
}

.tour-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 22px;
  background: #0073a6;
  color: #fff;
  border-radius: 3px;
  text-decoration: none;
  padding: 13px 25px;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  transition: background-color .2s ease;
}

.tour-button:hover,
.tour-button:focus {
    background: #2e6b98;
    color: #fff;
}

.tours-arrow {
    position: absolute;
    top: 34%;
    transform: translateY(-50%);
    width: 31px;
    height: 31px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #111;
    cursor: pointer;
    z-index: 10;
    font-size: 0;
    line-height: 1;
    box-shadow: none;
}

.tours-arrow::before {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
}

.tours-arrow.prev {
    left: -46px;
}

.tours-arrow.prev::before {
    content: "<";
}

.tours-arrow.next {
    right: -46px;
}

.tours-arrow.next::before {
    content: ">";
}

.tours-slider-dots {
    display: none;
}

@media (max-width: 1100px) {
    .tour-slide {
        flex-basis: calc((100% - 26px) / 2);
    }
}

@media (max-width: 767px) {
    .tours-slider-wrapper {
        border: 1px solid currentColor;
        padding: 0 0 36px;
    }

    .tours-slider-inner {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .tours-slider-viewport {
        display: block;
        overflow: hidden;
        overflow-x: clip;
        width: 100%;
        max-width: 100%;
    }

    .tours-slider-track {
        gap: 0;
        width: 100%;
    }

    .tour-slide {
        box-sizing: border-box;
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100%;
    }

    .tour-card {
        width: 100%;
    }

    .tour-image-wrap {
        aspect-ratio: 337 / 188;
    }

    .tour-image:is([sizes="auto" i], [sizes^="auto," i]) {
        contain-intrinsic-size: 337px 188px !important;
    }

    .tour-badge {
        position: static;
        display: block;
        width: fit-content;
        background: transparent;
        padding: 0;
        margin: 0 24px 9px;
        color: #0072a7;
        font-size: 14px;
        line-height: 1.2;
        letter-spacing: 1.2px;
    }

    .tour-duration {
        display: none;
    }

    .tour-content {
        padding-top: 0;
    }

    .tour-title {
        margin: 0 24px 12px;
        font-size: 26px;
        line-height: 1.12;
    }

    .tour-departure {
        min-height: 0;
        margin: 0 24px 20px;
        font-size: 15px;
        line-height: 1.35;
    }

    .tour-footer {
        margin: 0 24px;
        padding-top: 22px;
        align-items: flex-start;
    }

    .tour-price-label {
        margin-bottom: 8px;
        font-size: 13px;
        letter-spacing: .8px;
    }

    .tour-price {
        font-size: 24px;
    }

    .tour-button {
        min-width: 143px;
        min-height: 45px;
        padding: 10px 18px;
        font-size: 15px;
    }

    .tours-arrow {
        top: 96px;
        width: 42px;
        height: 42px;
    }

    .tours-arrow::before {
        font-size: 31px;
        line-height: 38px;
    }

    .tours-arrow.prev {
        left: 9px;
    }

    .tours-arrow.next {
        right: 9px;
    }

    .tours-slider-dots {
        display: flex;
        justify-content: center;
        gap: 17px;
        padding: 23px 24px 18px;
    }

    .tours-slider-dot {
        width: 14px;
        height: 14px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #9c9c9a;
        cursor: pointer;
    }

    .tours-slider-dot.is-active {
        background: #252525;
    }
}
