.mRfYn5h4peyh {
    position: relative;
    border-radius: 24px;
    padding: clamp(24px, 5vw, 48px);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.72));
    color: #ffffff;
}
.sjwh-guide__heading {
    margin: 0 0 clamp(20px, 4vw, 32px);
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.2;
    font-weight: 700;
}
.sjwh-guide__steps {
    display: grid;
    gap: clamp(16px, 3vw, 28px);
}
.sjwh-guide__step {
    border-radius: 20px;
    padding: clamp(18px, 3vw, 28px);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    display: grid;
    gap: 16px;
}
.sjwh-guide__step--hidden {
    display: none;
}
.sjwh-guide__header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
}
.sjwh-guide__index {
    width: clamp(42px, 6vw, 56px);
    height: clamp(42px, 6vw, 56px);
    border-radius: 16px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #0f172a;
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sjwh-guide__title {
    margin: 0;
    font-size: clamp(18px, 3.2vw, 24px);
    line-height: 1.3;
    font-weight: 600;
}
.sjwh-guide__description {
    margin: 0;
    font-size: clamp(15px, 2.6vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.86);
}
.sjwh-guide__image {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.44);
}
.sjwh-guide__image img {
    width: 100%;
    height: auto;
    display: block;
}
.sjwh-guide__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: clamp(24px, 4vw, 36px);
    flex-wrap: wrap;
}
.sjwh-guide__controls {
    display: flex;
    gap: 12px;
}
.sjwh-guide__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 600;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.sjwh-guide__btn svg {
    width: 18px;
    height: 18px;
}
.sjwh-guide__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}
.sjwh-guide__btn:not(:disabled):hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}
.sjwh-guide__indicator {
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
}
.sjwh-guide__indicator-current {
    font-size: 22px;
    font-weight: 700;
}
.sjwh-guide__indicator-total {
    opacity: 0.7;
}
@media (min-width: 768px) {
    .sjwh-guide__steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .sjwh-guide__step {
        min-height: 320px;
    }
}







