.shs-slider {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
}

.shs-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.shs-slide.active {
    opacity: 1;
}

.shs-slide img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.shs-title {
    position: absolute;
    bottom: 40px;
    left: 50px;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}