.stepper-card-outer {
    background: #FFFFFF;
    border-radius: 10px !important;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #E4E4E4;
}

.stepper-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    width: 100%;
}

.stepper-card-step {
    background: #F7F6FB;
    border: none;
    border-radius: 10.03px !important;
    padding: 20px 20px 0 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.stepper-card-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.stepper-card-step-badge {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 263.89px;
    background: #42296E;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stepper-card-step-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700 !important;
    color: #000000;
}

.stepper-card-step-description {
    margin: 0 0 16px 52px;
    font-size: 14px;
    font-weight: 400;
    color: #444444;
    line-height: 1.4;
}

.stepper-card-step-content {
    margin: 0 0 16px 52px;
}

.stepper-card-step-placeholder {
    margin-top: auto;
    border: 1px dashed #D9D9D9;
    border-radius: 8px;
    background: #FAFAFA;
    color: #A0A0A0;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.stepper-card-step-placeholder span {
    font-size: 12px;
}

.stepper-card-step-image {
    margin: auto -20px 0 -20px;
    width: calc(100% + 40px);
    max-width: none;
    height: auto;
    display: block;
    border: 1px solid #E4E4E4;
    border-radius: 12px 12px 12px 12px !important;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .stepper-card-grid {
        grid-template-columns: 1fr;
    }
}
