.hc-steps-timeline {
    position: relative;
    padding-left: 24px;
}

.hc-steps-timeline-line {
    position: absolute;
    left: 7px;
    top: 12px;
    bottom: 12px;
    width: 0;
    border-left: 2px dashed var(--hc-color-gray-300);
}

.hc-steps-timeline-item {
    position: relative;
    padding-bottom: 32px;
}

.hc-steps-timeline-item:last-child {
    padding-bottom: 0;
}

.hc-steps-timeline-marker {
    position: absolute;
    left: -16px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--hc-color-brand-1);
    transform: translateX(-50%);
}

.hc-steps-timeline-content {
    margin-left: 8px;
}

.hc-steps-timeline-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--hc-color-brand-1);
    margin-bottom: 4px;
}

.hc-steps-timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--hc-color-neutral-800);
    margin: 0 0 12px 0;
    line-height: 1.3;
    font-family: var(--hc-font-family-1);
}

.hc-steps-timeline-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--hc-color-gray-600);
    margin: 0 0 16px 0;
}

.hc-steps-timeline-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hc-steps-timeline-images figure {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
}

.hc-steps-timeline-images .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}