/**
 * How to Proceed Component Styles
 *
 * @package RIKAI_Marketing
 * @since 1.0.0
 */

/* Columns Layout */
.how-to-proceed-columns {
    margin-top: 32px;
    display: flex;
}

.how-to-proceed-column {
    margin-bottom: 32px;
    padding: 60px 40px;
}

.how-to-proceed-column.column-left {
    background-color: var(--dark-color-light);
}

.how-to-proceed-column.column-right {
    background-color: var(--secondary-color-lightest);
}

.how-to-proceed-column-title {
    font-size: 30px;
    font-weight: 900;
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.how-to-proceed-column.column-left .how-to-proceed-column-title {
    color: var(---primary-text-color);
}

.how-to-proceed-column.column-right .how-to-proceed-column-title {
    color: var(--primary-color);
}

/* Items */
.how-to-proceed-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.how-to-proceed-item {
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.column-right .how-to-proceed-item {
    border-color: var(--primary-color);
}

.how-to-proceed-items .how-to-proceed-item:last-child {
    margin-bottom: 0px;
}

/* Right column items - different background */
.how-to-proceed-column:last-child .how-to-proceed-item {
    background: #e8f4fd;
}

.how-to-proceed-item-title,
.how-to-proceed-item-subtitle {
    font-size: 18px;
    font-weight: 700;
    width: auto;
}

.how-to-proceed-item-title {
    max-width: 40%;
}
.how-to-proceed-item-subtitle {
    max-width: 60%;
}

.how-to-proceed-item-description {
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .how-to-proceed-item-title,
    .how-to-proceed-item-subtitle {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .how-to-proceed-columns {
        flex-direction: column;
    }

    .how-to-proceed-column {
        width: 100%;
        margin-bottom: 0px;
    }

    .how-to-proceed-description {
        font-size: 16px;
    }

    .how-to-proceed-column-title {
        font-size: 20px;
    }

    .how-to-proceed-item-title {
        font-size: 16px;
    }

    .how-to-proceed-item {
        padding: 16px;
    }

    .how-to-proceed-arrow {
        transform: rotate(90deg);
    }
}
