/* ==============================
   HERO — Full-width + Thumbnail
   ============================== */

.hs-slides {
    position: absolute;
    inset: 0;
}
.hs-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .9s ease;
}
.hs-slide.active {
    opacity: 1;
    z-index: 2;
}
.hs-gradient {
    position: absolute;
    inset: 0;
    /* background: #1C1C1CE5; */
    background: linear-gradient(
        180.05deg,
        rgba(0, 0, 0, 0.60)    4.53%,
        rgba(0, 0, 0, 0.69) 41.21%,
        #000000             77.9%,
        #000000             99.96%
    );
    z-index: 1;
}
.hs-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 52px 36px;
}
.hs-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .4px;
    line-height: 1.1;
    margin: 0 0 18px;
}

/* ── KEY CHANGE: space-between pushes thumbs to far right ── */
.hs-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

/* Left group: button + arrows side by side */
.hs-left-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hs-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 142px;
    height: 48px;
    padding: 9px 16px;
    gap: 10px;
    background: #A2150E;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s;
}
.hs-cta:hover {
    background: #c01810;
    color: #fff;
}
.hs-nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.hs-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .55);
    background: rgba(0, 0, 0, .35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}
.hs-nav-btn:hover {
    background: rgba(255, 255, 255, .18);
    border-color: #fff;
}
.hs-thumbs {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    flex-shrink: 0;
}
.hs-thumb {
    width: 100px;
    background: rgba(28, 28, 28, .80);
    border-radius: 8px;
    padding: 8px 8px 12px;
    cursor: pointer;
    position: relative;
    text-align: center;
    transition: background .2s;
    flex-shrink: 0;
}
.hs-thumb:hover,
.hs-thumb.active {
    background: rgba(55, 55, 55, .95);
}
.hs-thumb-img {
    width: 100%;
    height: 48px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}
.hs-thumb-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-top: 6px;
    line-height: 1.3;
}
.hs-thumb.active .hs-thumb-label {
    color: #fff;
}
.hs-thumb-bar {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 0;
    height: 3px;
    background: #A2150E;
    border-radius: 2px;
    transition: width .18s;
}
.hs-thumb.active .hs-thumb-bar {
    width: 80%;
}
.hs-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, .12);
    z-index: 15;
}
.hs-progress-fill {
    height: 100%;
    background: #A2150E;
    width: 0%;
}
@media (max-width: 768px) {
    .hs-bottom { padding: 0 24px 28px; }
    .hs-title { font-size: 28px; }
    .hs-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hs-thumbs { width: 100%; overflow-x: auto; }
    .hs-thumb { width: 76px; }
    .hs-thumb-img { height: 36px; }
}