/**
 * Step Cards Widget Styles
 */

.step-cards-widget {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    width: 100%;
}

.step-card-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-card-box {
    width: 100%;
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 20px;
    background: #ffffff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.step-card-separator {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-bottom: 35px;
}

.step-card-separator::before {
    content: '';
    width: 40px;
    height: 1px;
    background-color: #e0e0e0;
}

.step-card-icon {
    margin-bottom: 15px;
}

.step-card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.step-card-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

.step-card-desc {
    margin: 0;
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

.step-card-label {
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #b8860b;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .step-cards-widget {
        flex-wrap: wrap;
    }
    
    .step-card-item {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
    
    .step-card-separator {
        display: none;
    }
}

@media (max-width: 768px) {
    .step-card-item {
        flex: 0 0 100%;
    }
}
