/* ============================================
   Process Steps Widget — Base Styles
   All visual defaults are overridable via
   Elementor's style controls.
============================================ */

.psw-wrapper {
    width: 100%;
    background-color: #f5f1eb;
}

/* Grid */
.psw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

/* Step card */
.psw-step {
    padding: 30px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* ——— Block layout (number above title) ——— */
.psw-step--block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.psw-step--block .psw-step-number {
    display: block;
    margin-bottom: 16px;
}

/* ——— Inline layout (number beside title) ——— */
.psw-step--inline {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
}

.psw-step--inline .psw-step-number {
    flex-shrink: 0;
    margin-right: 16px;
    margin-bottom: 0;
    line-height: 1.4;
}

.psw-step--inline .psw-step-content {
    flex: 1;
}

/* Number */
.psw-step-number {
    font-size: 18px;
    font-weight: 400;
    color: #c9a96e;
    line-height: 1;
    letter-spacing: 0.02em;
}

/* Title */
.psw-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1.3;
}

/* Description */
.psw-step-desc {
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* ============================================
   Responsive — Elementor handles via selectors,
   but these are sensible base fallbacks.
============================================ */

@media (max-width: 1024px) {
    .psw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .psw-grid {
        grid-template-columns: 1fr;
    }
    .psw-step {
        padding: 20px 24px;
    }
}
