.vacancy-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vacancy-item {
    padding: 20px 40px;
    border: 1px solid var(--obvodka);
    border-radius: 20px;
    background: var(--podlozhka-kartochek);
    font-weight: 500;
    font-size: 20px;
    color: var(--siniy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 84px;
}

.vacancy-item:after {
    content: '';
    display: block;
    width: 14px;
    height: 26px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='26' viewBox='0 0 14 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.12109 23.8333L12.7272 13L2.12109 2.16666' stroke='%232C3E50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
}

.vacancy-item__salary {
    width: 232px;
    margin-left: auto;
    font-weight: 700;
}

.vacancy-detail__title {
    font-weight: 800;
    font-size: 36px;
    text-transform: uppercase;
    color: var(--siniy);
    margin: 0 0 20px;
}

.vacancy-detail__salary {
    font-weight: 800;
    font-size: 28px;
    text-transform: uppercase;
    color: var(--oranzh);
}

.vacancy-detail__description {
    margin-top: 40px;
}

.vacancy-detail__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .airws-form__actions {
        flex-direction: column;
        align-items: center;
    }

    .vacancy-list {
        gap: 15px;
    }

    .vacancy-item {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        padding-right: 40px;
        font-weight: 500;
        font-size: 16px;
        gap: 12px;
    }

    .vacancy-item:after {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .vacancy-item__salary {
        margin-left: 0;
        width: 100%;
    }

    .vacancy-detail__title {
        font-weight: 800;
        font-size: 22px;
    }

    .vacancy-detail__salary {
        font-weight: 800;
        font-size: 22px;
        margin-bottom: 30px;
    }

    .vacancy-detail__actions {
        margin-top: 30px;
    }
}
