.v2-vacancy-detail,
.v2-vacancy-detail * {
    box-sizing: border-box;
}

.v2-vacancy-detail {
    width: 100%;
    min-width: 0;
    overflow: clip;
    background: #202124;
    color: #202124;
    font-family: "Inter", Arial, sans-serif;
}

.v2-contact .v2-contact__submit {
    --v2-button-background: #2a568e;
    --v2-button-background-hover: #214675;
    --v2-button-background-focus: #214675;
    --v2-button-background-active: #193a63;
    --v2-button-color: #ffffff;
}

:where(.v2-app:has(.v2-vacancy-detail)) .v2-contact__input {
    border-color: #404247;
}

:where(.v2-app:has(.v2-vacancy-detail)) .v2-contact__input::placeholder {
    color: #999ead;
}

.v2-vacancy-detail > .v2-breadcrumbs {
    background: #ffffff;
}

.v2-vacancy-detail__content {
    width: 100%;
    padding: 48px 120px;
    background: #ffffff;
}

.v2-vacancy-detail__inner {
    display: flex;
    width: 100%;
    max-width: var(--v2-content-max, 1200px);
    min-width: 0;
    margin: 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.v2-vacancy-detail__title,
.v2-vacancy-detail__requirements-title,
.v2-vacancy-detail__requirements-list,
.v2-vacancy-detail__closing,
.v2-vacancy-detail__schedule,
.v2-vacancy-detail__schedule dd {
    margin: 0;
}

.v2-vacancy-detail__title {
    width: min(100%, 480px);
    color: #202124;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.v2-vacancy-detail__body,
.v2-vacancy-detail__description,
.v2-vacancy-detail__requirements {
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
}

.v2-vacancy-detail__body {
    gap: 14px;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.v2-vacancy-detail__description {
    gap: 28.8px;
}

.v2-vacancy-detail__schedule dt,
.v2-vacancy-detail__schedule dd {
    font: inherit;
}

.v2-vacancy-detail__requirements {
    gap: 0;
}

.v2-vacancy-detail__requirements-title {
    color: #000000;
    font: inherit;
}

.v2-vacancy-detail__requirements-list {
    width: 100%;
    padding: 0;
    list-style: none;
}

.v2-vacancy-detail__requirements-list li {
    position: relative;
    padding-left: 12px;
    overflow-wrap: anywhere;
}

.v2-vacancy-detail__requirements-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "-";
}

.v2-vacancy-detail__closing {
    width: 100%;
    color: #202124;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.v2-vacancy-detail__contact-link {
    border-radius: 2px;
    color: inherit;
    text-decoration: none;
}

.v2-vacancy-detail__contact-link:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.v2-vacancy-detail__contact-link:focus-visible {
    outline: 3px solid var(--v2-color-focus, #68a8ff);
    outline-offset: 3px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.v2-vacancy-detail__curve {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 20px;
    overflow: hidden;
    background: #202124;
}

.v2-vacancy-detail__curve::before {
    position: absolute;
    top: -20px;
    right: 0;
    left: 0;
    height: 40px;
    border-radius: 32px;
    background: #ffffff;
    content: "";
}

@media (max-width: 1023px) {
    .v2-vacancy-detail__content {
        padding-right: var(--v2-page-padding-tablet, 32px);
        padding-left: var(--v2-page-padding-tablet, 32px);
    }
}

@media (max-width: 767px) {
    .v2-vacancy-detail__content {
        padding: 104px var(--v2-page-padding-mobile, 16px) 48px;
    }

    .v2-vacancy-detail__inner {
        gap: 40px;
    }

    .v2-vacancy-detail__body {
        gap: 24px;
    }

    .v2-contact__title {
        font-size: 32px;
        font-weight: 900;
        line-height: 32px;
        letter-spacing: 0;
    }

    .v2-contact__description {
        letter-spacing: 0;
    }
}

@media (max-width: 374px) {
    .v2-vacancy-detail__title {
        font-size: 36px;
    }
}
