.custom-vc-rp-editor-placeholder {
    padding: 24px;
    border: 2px dashed #55bac4 ;
    background: #f7fbff;
    border-radius: 10px;
    font-family: Arial, sans-serif;
}

.custom-vc-rp-editor-placeholder strong {
    display: block;
    margin-bottom: 10px;
    color: #55bac4 ;
    font-size: 20px;
}

.custom-vc-rp-editor-placeholder p {
    margin: 0 0 12px;
    color: #333;
    font-size: 14px;
}

.custom-vc-rp-editor-placeholder ol {
    margin: 12px 0 0 20px;
    padding: 0;
    color: #222;
    font-size: 14px;
    line-height: 1.6;
}

.custom-vc-recruiting-process {
    width: 100%;
    background: var(--custom-vc-bg);
    padding: 24px 12px 38px;
    box-sizing: border-box;
    overflow: hidden;
}

.custom-vc-recruiting-process.has-bottom-line {
    border-bottom: 5px solid var(--custom-vc-accent);
}

.custom-vc-recruiting-process * {
    box-sizing: border-box;
}

.custom-vc-recruiting-process__inner {
    max-width: var(--custom-vc-max-width);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.custom-vc-recruiting-process__step {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
}

.custom-vc-recruiting-process__icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: var(--custom-vc-icon-bg);
    border: 1px solid rgba(0, 91, 234, 0.10);
    box-shadow: 0 12px 28px rgba(7, 73, 160, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.custom-vc-recruiting-process__icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: var(--custom-vc-accent);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.custom-vc-recruiting-process__image {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.custom-vc-recruiting-process__headline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 9px;
    color: var(--custom-vc-title);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
}

.custom-vc-recruiting-process__headline span {
    width: 21px;
    height: 21px;
    border-radius: 4px;
    background: var(--custom-vc-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex: 0 0 auto;
    box-shadow: 0 4px 12px rgba(0, 91, 234, 0.28);
}

.custom-vc-recruiting-process__headline strong {
    font-weight: 800;
}

.custom-vc-recruiting-process__step p {
    max-width: 255px;
    margin: 0 auto;
    color: var(--custom-vc-text);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 400;
}

.custom-vc-recruiting-process__arrow {
    width: 76px;
    flex: 0 0 76px;
    height: 86px;
    position: relative;
}

.custom-vc-recruiting-process__arrow::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 3px;
    right: 16px;
    border-top: 3px dotted rgba(0, 91, 234, 0.42);
}

.custom-vc-recruiting-process__arrow::after {
    content: "";
    position: absolute;
    top: 36px;
    right: 6px;
    width: 0;
    height: 0;
    border-left: 9px solid var(--custom-vc-accent);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    opacity: 0.78;
}

@media (max-width: 1100px) {
    .custom-vc-recruiting-process__inner {
        gap: 12px;
    }

    .custom-vc-recruiting-process__arrow {
        width: 38px;
        flex-basis: 38px;
    }

    .custom-vc-recruiting-process__headline,
    .custom-vc-recruiting-process__step p {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .custom-vc-recruiting-process {
        padding: 30px 18px 36px;
    }

    .custom-vc-recruiting-process__inner {
        display: block;
    }

    .custom-vc-recruiting-process__step {
        margin-bottom: 26px;
    }

    .custom-vc-recruiting-process__step:last-child {
        margin-bottom: 0;
    }

    .custom-vc-recruiting-process__arrow {
        width: 100%;
        height: 32px;
        margin: -12px 0 14px;
    }

    .custom-vc-recruiting-process__arrow::before {
        top: 0;
        left: 50%;
        right: auto;
        height: 24px;
        border-top: 0;
        border-left: 3px dotted rgba(0, 91, 234, 0.42);
    }

    .custom-vc-recruiting-process__arrow::after {
        top: 21px;
        left: calc(50% - 6px);
        right: auto;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 9px solid var(--custom-vc-accent);
        border-bottom: 0;
    }

    .custom-vc-recruiting-process__step p {
        max-width: 340px;
    }
}

