.wsp-sss-section {
    margin: 70px auto 40px;
    max-width: 1120px;
    padding: 0 18px;
    font-family: inherit;
}

.wsp-sss-heading {
    text-align: center;
    margin-bottom: 26px;
}

.wsp-sss-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    color: #2563eb;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.wsp-sss-heading h2 {
    margin: 12px 0 0;
    color: #102a43;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.18;
    font-weight: 800;
}

.wsp-sss-list {
    display: grid;
    gap: 14px;
}

.wsp-sss-item {
    border: 1px solid rgba(37, 99, 235, .14);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
    overflow: hidden;
}

.wsp-sss-question {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    color: #0f172a;
    font-weight: 800;
    font-size: 17px;
}

.wsp-sss-question::-webkit-details-marker {
    display: none;
}

.wsp-sss-icon {
    position: relative;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    box-shadow: 0 8px 20px rgba(37, 99, 235, .25);
}

.wsp-sss-icon::before,
.wsp-sss-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transform: translate(-50%, -50%);
}

.wsp-sss-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .2s ease, opacity .2s ease;
}

.wsp-sss-item[open] .wsp-sss-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.wsp-sss-answer {
    padding: 0 22px 22px;
    color: #475569;
    line-height: 1.75;
    font-size: 15.5px;
}

.wsp-sss-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .wsp-sss-section {
        margin: 44px auto 28px;
        padding: 0 14px;
    }

    .wsp-sss-question {
        padding: 17px 17px;
        font-size: 15.5px;
        align-items: flex-start;
    }

    .wsp-sss-icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .wsp-sss-answer {
        padding: 0 17px 18px;
        font-size: 14.8px;
    }
}
