 .vpb {
    background: #ffd400;
    width: 100%;
    padding: 48px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}

.vpb__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
}

/* Accent item — bold, left of the separator */
.vpb__accent {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}

.vpb__separator {
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

/* Regular items */
.vpb__items {
    display: flex;
    align-items: center;
    gap: 24px;
}

.vpb__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
}

.vpb__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .vpb {
    padding: 16px 24px;
    }

    .vpb__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    }

    .vpb__accent {
    white-space: normal;
    }

    .vpb__separator {
    width: 100%;
    height: 1px;
    }

    .vpb__items {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    }

    .vpb__item {
    white-space: normal;
    }
}