.slt-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.slt-wrapper nav.slt-nav {
    width: 55%;
    height: 620px;
    overflow-y: scroll;
    scrollbar-width: none;
    flex-shrink: 0;
    align-self: flex-start;
}

.slt-nav ul {
    list-style: none;
    padding: 0;
}

.slt-nav li {
    padding: 10px 0;
}

.slt-nav a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #828282;
    font-size: 22px;
    line-height: 30px;
    font-weight: 600 !important;
    transition-duration: 0.5s;
}

.slt-nav li a span {
    width: 100%;
}

.slt-nav a:hover, .slt-nav a.active-section {
    color: #fff;
}

.slt-nav li a span.circle {
    background: #141414;
    background: linear-gradient(131deg, #141414 0%, #141414 55%, #141414 100%);
    width: 100px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.slt-nav li a:hover span.circle,
.slt-nav li a.active-section span.circle {
    background: #C42970;
    background: linear-gradient(131deg, rgba(196,41,112,1) 0%, rgba(130,75,149,1) 55%, rgba(64,42,102,1) 100%);
}

.slt-nav li a:hover span.circle img,
.slt-nav li a.active-section span.circle img {
    filter: brightness(20);
}

.slt-nav li a span.circle img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.slt-wrapper .slt-mn-content {
    width: 100%;
    flex: 1;
}

.slt-wrapper .slt-desktop-only {
    position: relative;
    width: 100%;
}

/* All desktop sections overlap at same position */
.slt-desktop-only .content-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

/* Active section: visible + relative so it sets container height */
.slt-desktop-only .content-section.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.slt-wrapper .slt-section .slt-feature-image img {
    width: 100%;
    height: 100%;
}

.slt-section .slt-title {
    color: #fff;
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    margin-top: 15px;
}

.slt-section .slt-content p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #C5C5C5;
}

/* Mobile sections */
.slt-mobile-only {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s ease, opacity 0.4s ease;
}

.slt-mobile-only.active {
    opacity: 1;
}

@media (max-width: 1366px) {
    .slt-nav a {
        font-size: 20px;
        line-height: 28px;
    }
    .slt-nav li a span.circle {
        width: 80px;
        height: 65px;
    }
    .slt-nav li {
        margin-bottom: 5px;
    }
    .slt-section .slt-title {
        font-size: 26px;
        line-height: 34px;
    }
    .slt-section .slt-content p {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 1024px) {
    .slt-wrapper {
        gap: 20px;
    }
    .slt-wrapper nav.slt-nav {
        width: 65%;
        height: 450px;
    }
    .slt-nav a {
        font-size: 18px;
        line-height: 26px;
        gap: 15px;
    }
    .slt-section .slt-title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 12px;
        margin-top: 18px;
    }
    .slt-section .slt-content p {
        font-size: 17px;
        line-height: 27px;
    }
    .slt-nav li a span.circle {
        width: 80px;
        height: 65px;
    }
    .slt-nav li a span.circle img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 767px) {
    .slt-wrapper {
        flex-direction: column;
    }
    .slt-wrapper nav.slt-nav {
        width: 100%;
        height: auto;
    }
    .slt-nav a {
        gap: 0px;
    }
    .slt-nav li a span.circle {
        margin-right: 15px;
        width: 80px;
        height: 65px;
    }
    .slt-mobile-only.active {
        margin-top: 30px;
    }
    .slt-nav li a span.circle img {
        width: 40px;
        height: 38px;
    }
}

@media (min-width: 768px) {
    .slt-mobile-only {
        display: none !important;
    }
    .slt-desktop-only {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .slt-desktop-only {
        display: none !important;
    }
}