/**
 * Steps Block - Frontend Styles
 * Matches VIPBC theme styling
 */

.steps-block-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    overflow: hidden;
}

.steps-block-container {
    display: flex;
    flex-direction: row;
    min-height: 500px;
    width: 100%;
    --left-side-percentage: 50%;
}

.steps-block-left {
    flex: 0 0 var(--left-side-percentage);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.steps-block-top-title {
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.steps-block-main-heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
    color: #172541;
    font-family: 'Roboto', sans-serif;
}

.steps-block-description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 3rem 0;
    color: #172541;
    font-family: 'Roboto', sans-serif;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.steps-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.steps-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    color: #CCA43B;
}

.steps-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #172541;
    flex: 1;
}

.steps-button-wrapper {
    margin-top: auto;
}

.steps-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: opacity 0.3s ease;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.steps-button:hover {
    opacity: 0.9;
    text-decoration: none;
}

.steps-block-right {
    flex: 0 0 calc(100% - var(--left-side-percentage));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.steps-block-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.steps-right-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .steps-block-container {
        flex-direction: column;
        min-height: auto;
    }

    .steps-block-left {
        flex: 1;
        min-height: 400px;
    }

    .steps-block-right {
        flex: 1;
        min-height: 400px;
    }

    .steps-number {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .steps-block-left {
        padding: 2rem 1.5rem !important;
    }

    .steps-block-main-heading {
        font-size: 1.75rem;
    }

    .steps-number {
        font-size: 2.5rem;
    }

    .steps-block-image {
        padding: 1rem;
    }
}

/* Wide and Full Width Support */
.steps-block-wrapper.alignwide,
.steps-block-wrapper.alignfull {
    max-width: 100%;
}

