.st-wrapper {
    position: relative !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.st-wrapper * {
    box-sizing: border-box;
}

.st-heading {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #1a1a1a !important;
}

.st-subtitle {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
    color: #555 !important;
    font-size: 17px;
    line-height: 1.6;
}

.st-slider {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
}

.st-slides {
    position: relative;
    width: 100%;
    height: 560px;
}

.st-slide {
    display: none !important;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.st-slide.st-active {
    display: block !important;
    animation: st-fade 0.5s ease;
}

@keyframes st-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.st-slide-bg {
    position: absolute;
    inset: 0;
    background-color: #2b2b2b;
    background-size: cover;
    background-position: center;
}

.st-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.85) 100%);
}

.st-slide-panel {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    max-width: 560px;
    padding: 36px 40px 44px;
    color: #fff;
}

.st-slide-title {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff !important;
}

.st-slide-tags {
    margin: 0 0 8px;
    font-size: 13px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #f0a04b !important;
    font-weight: 600;
}

.st-slide-tagline {
    margin: 0 0 14px;
    font-size: 15px;
    font-style: italic;
    color: #e6e6e6 !important;
}

.st-slide-desc {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #d8d8d8 !important;
}

.st-view-btn {
    display: inline-block;
    padding: 11px 26px;
    background: #f0a04b;
    color: #1a1a1a !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background 0.2s ease;
}

.st-view-btn:hover {
    background: #fff;
    color: #1a1a1a !important;
}

.st-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.st-arrow:hover {
    background: rgba(255,255,255,0.35);
}

.st-arrow-prev {
    left: 20px;
}

.st-arrow-next {
    right: 20px;
}

.st-thumbs {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 10px;
    padding: 14px 20px;
    background: #0d0d0d;
    overflow-x: auto;
}

.st-thumb {
    flex: 0 0 auto;
    width: 84px;
    height: 60px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.2s ease, border-color 0.2s ease;
    background: #222;
}

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

.st-thumb:hover {
    opacity: 0.85;
}

.st-thumb-active {
    opacity: 1;
    border-color: #f0a04b;
}

@media (max-width: 782px) {
    .st-slides {
        height: 460px;
    }
    .st-slide-panel {
        max-width: 100%;
        padding: 24px 20px 28px;
    }
    .st-slide-title {
        font-size: 22px;
    }
    .st-arrow {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    .st-thumb {
        width: 64px;
        height: 46px;
    }
}
