.cts-destinations,
.cts-destinations * {
    box-sizing: border-box;
}

.cts-destinations {
    --cts-destinations-ink: #ffffff;
    --cts-destinations-muted: rgba(255,255,255,.68);
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: clamp(72px, 7vw, 112px) clamp(16px, 4vw, 64px);
    background:
        radial-gradient(circle at 10% 10%, rgba(70,103,255,.3), transparent 31%),
        radial-gradient(circle at 92% 90%, rgba(68,26,215,.34), transparent 32%),
        linear-gradient(135deg, #111854 0%, #211176 48%, #27069a 100%);
    color: var(--cts-destinations-ink);
    font-family: "Montserrat", "Poppins", Arial, sans-serif;
}

.cts-destinations::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: .2;
    background:
        linear-gradient(140deg, transparent 42%, rgba(255,255,255,.1) 42% 42.35%, transparent 42.35%),
        linear-gradient(35deg, transparent 65%, rgba(110,139,255,.15) 65% 65.4%, transparent 65.4%);
}

.cts-destinations__inner {
    position: relative;
    z-index: 2;
    width: min(100%, 1460px);
    margin: 0 auto;
}

.cts-destinations__intro {
    display: grid;
    grid-template-columns: minmax(220px,.55fr) minmax(0,1.45fr);
    align-items: end;
    gap: clamp(32px,5vw,82px);
    margin-bottom: clamp(38px,5vw,66px);
}

.cts-destinations__brand {
    display: inline-flex;
    align-items: flex-start;
    flex-direction: column;
}

.cts-destinations__brand img {
    display: block;
    width: min(100%, 250px);
    max-width: 250px;
    max-height: 90px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
}

.cts-destinations__brand b {
    font-size: 59px;
    font-weight: 900;
    letter-spacing: -.07em;
    line-height: .8;
}

.cts-destinations__brand small {
    margin: 9px 0 0 5px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
}

.cts-destinations__heading > p {
    margin: 0 0 10px;
    color: #a9c3ff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.cts-destinations__heading h2 {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: clamp(38px,4.2vw,64px);
    font-weight: 760;
    letter-spacing: -.055em;
    line-height: 1;
    text-wrap: balance;
}

.cts-destinations__heading h2 span {
    color: #a8c4ff;
}

.cts-destinations__heading > div {
    max-width: 700px;
    margin-top: 18px;
    color: var(--cts-destinations-muted);
    font-size: 14px;
    line-height: 1.65;
}

.cts-destinations__columns {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: clamp(18px,2.3vw,34px);
}

.cts-destinations__journey {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 30px;
    background: linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.055));
    box-shadow: 0 28px 70px rgba(4,7,53,.28);
    backdrop-filter: blur(13px);
}

.cts-destinations__journey::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg,#35c878,#8aefb0);
}

.cts-destinations__journey.is-international::before {
    background: linear-gradient(90deg,#4c7cff,#75c6ff);
}

.cts-destinations__journey-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    padding: clamp(25px,3vw,38px);
}

.cts-destinations__journey-head > div {
    min-width: 0;
}

.cts-destinations__journey-head > div > span {
    display: block;
    margin-bottom: 7px;
    color: #81e6ac;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.is-international .cts-destinations__journey-head > div > span {
    color: #9fc9ff;
}

.cts-destinations__journey-head h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(27px,2.5vw,40px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.02;
}

.cts-destinations__journey-head p {
    max-width: 390px;
    margin: 12px 0 0;
    color: rgba(255,255,255,.66);
    font-size: 11px;
    line-height: 1.6;
}

.cts-destinations__journey-head > a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
    gap: 16px;
    min-height: 48px;
    padding: 9px 10px 9px 15px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 13px;
    background: rgba(255,255,255,.095);
    color: #fff !important;
    font-size: 9px;
    font-weight: 850;
    line-height: 1.25;
    text-decoration: none !important;
    transition: background .2s,transform .2s;
}

.cts-destinations__journey-head > a span {
    max-width: 110px;
}

.cts-destinations__journey-head > a b {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,.12);
    font-size: 15px;
}

.cts-destinations__journey-head > a:hover {
    background: rgba(255,255,255,.16);
    transform: translateY(-2px);
}

.cts-destinations__showcase {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: 5px 0 28px;
}

.cts-destinations__track {
    display: flex;
    width: max-content;
    animation: cts-destinations-scroll 35s linear infinite;
    will-change: transform;
}

.is-international .cts-destinations__track {
    animation-duration: 58s;
}

.cts-destinations__group {
    display: flex;
    flex: 0 0 auto;
    gap: 11px;
    padding-right: 11px;
}

.cts-destinations__card {
    position: relative;
    display: block;
    flex: 0 0 clamp(155px,12vw,195px);
    width: clamp(155px,12vw,195px);
    aspect-ratio: 1080/1650;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    background: #0c1448;
    box-shadow: 0 18px 38px rgba(3,5,37,.3);
    text-decoration: none !important;
    transform: translateZ(0);
    transition: border-color .2s,box-shadow .2s;
}

.cts-destinations__card:hover,
.cts-destinations__card:focus-visible {
    border-color: rgba(255,255,255,.65);
    box-shadow: 0 23px 48px rgba(3,5,37,.43);
    outline: none;
}

.cts-destinations__card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cts-destinations__card > span {
    position: absolute;
    right: 8px;
    bottom: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 10px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    background: rgba(5,10,48,.84);
    color: #fff;
    backdrop-filter: blur(8px);
}

.cts-destinations__card > span b {
    min-width: 0;
    overflow: hidden;
    font-size: 8px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cts-destinations__card > span i {
    color: #9fc2ff;
    font-size: 7px;
    font-style: normal;
    font-weight: 750;
    text-transform: uppercase;
}

.is-national .cts-destinations__card > span i {
    color: #8ce8b1;
}

.cts-destinations__fade {
    position: absolute;
    z-index: 4;
    top: 0;
    bottom: 0;
    width: 42px;
    pointer-events: none;
}

.cts-destinations__fade--left {
    left: 0;
    background: linear-gradient(90deg,rgba(31,24,104,.94),transparent);
}

.cts-destinations__fade--right {
    right: 0;
    background: linear-gradient(270deg,rgba(35,18,126,.94),transparent);
}

.cts-destinations__glow {
    position: absolute;
    z-index: -1;
    top: -220px;
    left: 44%;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: rgba(80,70,255,.24);
    filter: blur(110px);
    pointer-events: none;
}

.cts-destinations__route {
    position: absolute;
    z-index: -1;
    right: -170px;
    bottom: -360px;
    width: 700px;
    height: 700px;
    border: 2px dashed rgba(160,181,255,.13);
    border-radius: 50%;
    pointer-events: none;
}

@keyframes cts-destinations-scroll {
    from { transform: translate3d(0,0,0); }
    to { transform: translate3d(-50%,0,0); }
}

@media (max-width: 1120px) {
    .cts-destinations__journey-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .cts-destinations__journey-head > a {
        width: 100%;
    }

    .cts-destinations__journey-head > a span {
        max-width: none;
    }
}

@media (max-width: 920px) {
    .cts-destinations__intro {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
    }

    .cts-destinations__columns {
        grid-template-columns: 1fr;
    }

    .cts-destinations__journey-head {
        align-items: flex-end;
        flex-direction: row;
    }

    .cts-destinations__journey-head > a {
        width: auto;
    }

    .cts-destinations__journey-head > a span {
        max-width: 150px;
    }

    .cts-destinations__card {
        flex-basis: 185px;
        width: 185px;
    }
}

@media (max-width: 620px) {
    .cts-destinations {
        padding: 65px 14px 72px;
    }

    .cts-destinations__brand img {
        width: 205px;
    }

    .cts-destinations__heading h2 {
        font-size: clamp(37px,11vw,49px);
    }

    .cts-destinations__heading > div {
        font-size: 13px;
    }

    .cts-destinations__columns {
        gap: 18px;
    }

    .cts-destinations__journey {
        border-radius: 23px;
    }

    .cts-destinations__journey-head {
        align-items: stretch;
        flex-direction: column;
        padding: 25px 21px;
    }

    .cts-destinations__journey-head > a {
        width: 100%;
    }

    .cts-destinations__journey-head > a span {
        max-width: none;
    }

    .cts-destinations__card {
        flex-basis: 158px;
        width: 158px;
        border-radius: 15px;
    }

    .cts-destinations__track {
        animation-duration: 32s;
    }

    .is-international .cts-destinations__track {
        animation-duration: 52s;
    }

    .cts-destinations__fade {
        width: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cts-destinations__track {
        animation: none !important;
    }

    .cts-destinations,
    .cts-destinations * {
        scroll-behavior: auto !important;
        transition: none !important;
    }

    .cts-destinations__showcase {
        overflow-x: auto;
    }

    .cts-destinations__group[aria-hidden="true"] {
        display: none;
    }
}
