.aw-exp-steps-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    margin: 30px auto;
    width: 100% !important;
    font-family: 'Inter', sans-serif;
}

.aw-exp-step-card {
    display: flex !important;
    flex-direction: row !important;
    background: #EBF5F6;
    border-radius: 20px;
    overflow: hidden;
    height: 100% !important;
    align-items: stretch !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.aw-exp-step-img-wrap {
    flex: 0 0 42% !important;
    position: relative !important;
    overflow: hidden !important;
}

.aw-exp-step-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.aw-exp-step-placeholder {
    width: 100% !important;
    height: 100% !important;
    background: #E2E8F0 !important;
}

.aw-exp-step-content {
    flex: 1 !important;
    padding: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
}

.aw-exp-step-number {
    background: #F89A24;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 800;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 12px;
    line-height: 1;
}

.aw-exp-step-desc {
    font-size: 15px;
    line-height: 1.4;
    color: #1F2933;
    margin: 0 !important;
    font-weight: 600;
}

/* Responsivo */
@media (max-width: 991px) {
    .aw-exp-steps-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    
    .aw-exp-step-content {
        padding: 20px 16px !important;
    }

    .aw-exp-step-desc {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .aw-exp-steps-container {
        grid-template-columns: 1fr !important; /* Stack vertically, but cards remain row flex */
        gap: 16px !important;
    }

    .aw-exp-step-card {
        flex-direction: row !important; /* Force side-by-side */
    }

    .aw-exp-step-img-wrap {
        flex: 0 0 40% !important;
    }

    .aw-exp-step-content {
        padding: 16px 20px !important;
    }
}

@media (max-width: 480px) {
    .aw-exp-step-img-wrap {
        flex: 0 0 38% !important;
    }

    .aw-exp-step-content {
        padding: 14px 12px !important;
    }

    .aw-exp-step-number {
        width: 28px !important;
        height: 28px !important;
        font-size: 14px;
        margin-bottom: 8px !important;
        border-radius: 6px !important;
    }

    .aw-exp-step-desc {
        font-size: 12.5px;
        line-height: 1.3;
    }

    .aw-exp-step-card {
        border-radius: 16px !important;
    }
}
