/* ============================================================================
   Premium Vertical Steps Block
   
   Vertical timeline with numbered circles and connector lines.
   ============================================================================ */

.bobex-vsteps-wrapper {
    margin: 2.5rem 0;
}

.bobex-vsteps-container {
    padding: 1rem;
}

@media (min-width: 640px) {
    .bobex-vsteps-container {
        padding: 1.5rem;
    }
}

/* ─── Header ───────────────────────────────────────────────────────────────── */

.bobex-vsteps-header {
    margin-bottom: 1rem;
}

.bobex-vsteps-intro {
    margin-top: 0.375rem;
}

/* ─── Steps List ───────────────────────────────────────────────────────────── */

.bobex-vsteps-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ─── Step Item ────────────────────────────────────────────────────────────── */

.bobex-vsteps-item {
    display: flex;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .bobex-vsteps-item {
        gap: 1rem;
    }
}

/* ─── Number Rail ──────────────────────────────────────────────────────────── */

.bobex-vsteps-rail {
    width: 2.5rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}

.bobex-vsteps-line {
    width: 2px;
    flex: 1;
    border-radius: var(--bobex-radius-full);
    background: rgba(40, 120, 200, 0.3);
}

.bobex-vsteps-line-invisible {
    width: 2px;
    flex: 1;
    visibility: hidden;
}

/* ─── Step Content ─────────────────────────────────────────────────────────── */

.bobex-vsteps-content {
    flex: 1;
    min-width: 0;
}

.bobex-vsteps-content-padded {
    padding-bottom: 0.75rem;
}

.bobex-vsteps-card {
    background: var(--bobex-gradient-light);
    border-radius: var(--bobex-radius-sm);
    padding: 0.75rem;
}

@media (min-width: 640px) {
    .bobex-vsteps-card {
        padding: 1rem;
    }
}

/* ─── Step Title & Description ─────────────────────────────────────────────── */

.bobex-vsteps-step-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.3;
    color: var(--bobex-color-heading);
    margin: 0 0 0.25rem 0;
}

@media (min-width: 640px) {
    .bobex-vsteps-step-title {
        font-size: 0.9375rem;
    }
}

.bobex-vsteps-step-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--bobex-color-body);
    margin: 0;
}

/* ─── CTA ──────────────────────────────────────────────────────────────────── */

.bobex-vsteps-cta {
    margin-top: 1.25rem;
    text-align: center;
}

/* ─── Empty State ──────────────────────────────────────────────────────────── */

.bobex-vertical-steps-empty {
    padding: 2rem;
    text-align: center;
    color: var(--bobex-color-body);
    font-family: 'Roboto', sans-serif;
    background: #f9f9f9;
    border-radius: var(--bobex-radius-md);
}
