/* ===========================
   Travel Slider  v1.1
   =========================== */

.ts-wrap *,
.ts-wrap *::before,
.ts-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ts-wrap {
    width: 100%;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

/* ---- Main row: title + tiles ---- */
.ts-body {
    display: flex;
    height: 660px;
}

/* ---- Left: static title, no background ---- */
.ts-left {
    flex: 0 0 22%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 48px;
}

.ts-heading {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.35;
    color: #fff;
    letter-spacing: 0.02em;
}

/* ---- Viewport: clips the sliding track ---- */
.ts-viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* ---- Track: slides horizontally ---- */
.ts-track {
    display: flex;
    height: 100%;
    gap: 3px;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* ---- Tiles: 30% each → 120% total → 4th tile bleeds ~33% ---- */
.ts-tile {
    flex: 0 0 30%;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ts-tile-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.ts-tile:hover .ts-tile-img {
    transform: scale(1.04);
}

/* ---- Caption overlay at tile bottom ---- */
.ts-tile-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 18px 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.ts-tile-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 7px;
}

.ts-tile-desc {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.55;
}

/* ---- Navigation: four horizontal lines ---- */
.ts-nav {
    display: flex;
    gap: 5px;
    padding-top: 16px;
}

.ts-line {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.18);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.35s;
}

.ts-line--on {
    background: #e07628;   /* orange */
}

.ts-line:hover:not(.ts-line--on) {
    background: rgba(255, 255, 255, 0.38);
}
