.vqt-process-timeline-wrap,
.vqt-process-timeline-wrap * {
    box-sizing: border-box;
}

.vqt-process-timeline-wrap {
    background: #071b3d;
    padding: 20px;
    width: 100%;
}

.vqt-process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vqt-process-timeline:before {
    content: "";
    position: absolute;
    top: 50px;
    bottom: 22px;
    left: 27px;
    width: 2px;
    background: #f9a51a;
    z-index: 0;
}

.vqt-pt-item {
    position: relative;
    display: grid;
    grid-template-columns: 75px 1fr;
    align-items: start;
    gap: 0;
    z-index: 1;
}

.vqt-pt-marker {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.vqt-pt-icon-box {
    width: 56px;
    height: 56px;
    background: #f9a51a;
    color: #051b3d;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
    z-index: 2;
}

.vqt-pt-icon-box i {
    font-size: 20px;
    line-height: 1;
}

.vqt-pt-icon-box svg {
    width: 20px;
    height: 20px;
    display: block;
}

.vqt-pt-number {
    position: absolute;
    right: -8px;
    top: -7px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    color: #051b3d;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #071b3d;
}

.vqt-pt-card {
    background: #f4f0e8;
    border-radius: 8px;
    padding: 20px 24px;
    min-height: 56px;
}

.vqt-pt-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.vqt-pt-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.vqt-pt-title {
    margin: 0;
    padding: 0;
    color: #061b3c;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
}

.vqt-pt-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff4df;
    color: #b36b00;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 20px;
    white-space: nowrap;
}

.vqt-pt-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #061b3c;
    color: #fff;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.vqt-pt-description {
    color: #101820;
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

.vqt-pt-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.vqt-pt-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #071b3d;
    border: 1px solid rgba(7, 27, 61, .20);
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
}

.vqt-pt-tag i {
    font-size: .9em;
}

.vqt-pt-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    margin-top: 13px;
    overflow: hidden;
}

.vqt-pt-stat {
    padding: 0 12px;
}

.vqt-pt-stat:first-child {
    padding-left: 0;
}

.vqt-pt-stat + .vqt-pt-stat {
    border-left: 1px solid #f0c36f;
}

.vqt-pt-stat-value {
    color: #08245a;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 800;
}

.vqt-pt-stat-label {
    color: #333;
    font-size: 10px;
    line-height: 1.25;
    margin-top: 2px;
}

@media (max-width: 767px) {
    .vqt-process-timeline-wrap {
        padding: 15px;
    }

    .vqt-pt-item {
        grid-template-columns: 60px 1fr;
    }

    .vqt-process-timeline:before {
        left: 27px;
    }

    .vqt-pt-icon-box {
        width: 52px;
        height: 52px;
    }

    .vqt-pt-card {
        padding: 16px;
    }

    .vqt-pt-card-top {
        flex-direction: column;
        gap: 8px;
    }

    .vqt-pt-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .vqt-pt-stat {
        padding: 0;
    }

    .vqt-pt-stat + .vqt-pt-stat {
        border-left: 0;
        border-top: 1px solid #f0c36f;
        padding-top: 10px;
    }
}
