.vacancies-categories {
    margin-top: 16px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.vacancy-border {
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background-color: var(--content-bg);
    box-sizing: border-box;
    flex: 1 1 calc(50% - 10px);
    padding: 9px;
    position: relative;
}

.vacancy-category {
    position: relative;
    border-radius: 3px;
    background: var(--banner-bg);
    border: 1px solid var(--light-border-enabled);
    display: flex;
    align-items: center;
    height: 60px;
    z-index: 1;
}

.vacancy-category .link {
    display: flex;
    align-items: center;
}

.vacancy-category .icon {
    margin: 24px;
    max-width: 32px;
    max-height: 32px;
}

.vacancy-category .name {
    color: var(--text-color);
    font-size: 16px;
}

.vacancy-category .name .description {
    color: #737276;
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
}

.vacancy-category .right {
    margin-right: 21px;
    margin-left: auto;
    display: flex;
    gap: 25px;
    align-items: center;
}

.vacancy-category .count {
    color: #737276;
    line-height: normal;
}

.vacancy-category .number {
    color: var(--text-color);
    text-align: right;
}

.vacancy-overlay {
    position: absolute;
    inset: 0; /* растянуть на всю карточку */
    z-index: 0; /* ниже рекламы */
}

.vacancy-category .ads {
    display: block;
    position: relative;
    z-index: 2; /* реклама перекрывает оверлей */
}

.vacancy-category .ads img {
    max-height: 35px;
    max-width: 100px;
    border-radius: 2px;
}

.vacancy-category .linear {
    height: 60px;
}

.linear {
    position: absolute;
    right: 0;
    pointer-events: none;
}

.vacancy-item {
    display: flex;
    flex-direction: column;
}

.vacancy-item .header {
    height: 80px;
    position: relative;
    border-radius: 3px;
    border: 1px solid #545258;
    background: #202025;
    display: flex;
}

.vacancy-item .pin {
    display: flex;
}

.vacancy-seller-avatar {
    max-width: 70px;
    max-height: 70px;
    margin: 5px;
    border-radius: 5px;
}

.seller-info {
    text-align: left;
    margin-left: 10px;
}

.seller-info .name {
    color: #fff;
    font-size: 14px;
    margin-top: 11px;
}

.seller-info-row {
    display: flex;
    margin-top: 13px;
    gap: 15px;
}

.seller-info-row .count, .seller-info-row .reviews {
    font-size: 12px;
    color: #808084;
    display: flex;
    gap: 4px;
}

.seller-info-row .count .number, .seller-info-row .reviews .number {
    color: #fff;
}

.vacancy-item .text {
    margin-top: 5px;
}

.vacancy-item .text .name {
    color: #fff;
    font-size: 16px;
}

.vacancy-item .text .description {
    color: #808084;
    font-size: 14px;
    margin-top: 7px;
}

.vacancy-item .text .bottom {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.vacancy-item .text .views, .vacancy-item .text .created {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #BABABA;
}

.vacancy-item .about-btn {
    width: 100%;
    border-radius: 3px;
    background: #222228;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-top: 13px;
    font-weight: 400;
}

.vacancy-item .about-btn:hover {
    background: #2a2a31;
}

.vacancies-navigation-border {
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background-color: var(--content-bg);
    padding: 9px;
}

.vacancies-navigation {
    position: relative;
    border-radius: 3px;
    border: 1px solid #545258;
    display: flex;
    align-items: center;
    height: 50px;
}

.vacancies-navigation .linear {
    height: 50px;
}

.vacancies-navigation .name {
    font-size: 14px;
    color: var(--text-color);
    margin-left: 5px;
    display: flex;
    gap: 14px;
    align-items: center;
}

.vacancies-navigation .name a {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.vacancies-navigation .name .slash {
    color: #808084;
}

.vacancies-navigation .name .vacancy-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vacancies-navigation img {
    width: 20px;
}

.vacancies-navigation .count {
    font-size: 14px;
    color: #808084;
    display: flex;
    gap: 6px;
    margin-right: 28px;
    margin-left: auto;
}

.vacancies-navigation .count .number {
    color: #fff;
}

.vacancies-navigation .back {
    background: var(--button-background);
    border-radius: var(--button-radius);
    padding: 10px 10px;
    margin-left: 10px;
    margin-right: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--light-box-shadow);
}

.vacancies-navigation .add-vacancy {
    background: var(--button-background);
    border-radius: var(--button-radius);
    border: 1px solid #097600;
    padding: 7px 7px;
    margin-right: 11px;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--light-box-shadow);
}

.vacancies-navigation .back img {
    width: 15px;
}

.seller-rightside {
    width: 100%;
}

.vacancy-content {
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background: var(--content-bg);
    box-shadow: var(--light-box-shadow);
}

@media (max-width: 910px) {
    .vacancy-content {
        flex-direction: column;
    }
}

.seller-rightside {
    border-right: 1px solid var(--border-color);
}

.vacancy-info {
    margin: 11px;
    border-radius: 5px;
    border: 1px solid #323233;
    padding: 9px;
}

.vacancy-info .header {
    position: relative;
    border-radius: 3px;
    border: 1px solid #545258;
    background: var(--banner-bg);
    display: flex;
    align-items: center;
    height: 75px;
    width: 265px;
}

.vacancy-info .header .seller-name {
    color: var(--text-color);
    font-size: 16px;
}

.vacancy-info .header .linear {
    width: 265px;
}

.vacancy-info .main {
    color: #7ABE74;
    font-size: 12px;
    margin-top: 10px;
}

.vacancy-info .main .required {
    margin-top: 18px;
}

.vacancy-info .main .data {
    color: var(--text-color);
    font-size: 20px;
    margin-top: 3px;
}

.vacancy-info .bottom {
    margin-top: 40px;
    color: #808084;
    font-size: 12px;
}

.vacancy-info .bottom .data {
    color: var(--text-color);
    font-size: 20px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vacancy-info .bottom .data .today {
    color: #808084;
}

.vacancy-info .bottom .created {
    margin-top: 10px;
}

.vacancies-ads {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.vacancy-ads {
    width: 100%;
    max-width: 416px;
}

.vacancy-ads .header {
    border-radius: 5px 5px 0 0;
    border: 1px solid #323233;
    background: var(--vacancy-ads-background);
    backdrop-filter: blur(28px);
    max-width: 416px;
    padding: 10px;
}

.vacancy-ads .header .top {
    display: flex;
    gap: 12px;
}

.vacancy-ads .header .image {
    max-width: 90px;
    max-height: 90px;
}

.vacancy-ads .header .name {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

.vacancy-ads .header .description {
    color: #737276;
    font-size: 14px;
    font-weight: 400;
    margin-top: 2px;
}

.vacancy-ads .header .bottom {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
}

.vacancy-ads .header .bottom .right {
    display: flex;
    gap: 18px;
}

.vacancy-ads .header .bottom .right .data {
    display: flex;
    gap: 9px;
    color: #808084;
    font-size: 12px;
    align-items: center;
}

.vacancy-ads .header .bottom .right .data .today {
    color: #737276;
}

.vacancy-ads .header .bottom .name {
    color: var(--text-color);
    font-size: 12px;
    display: flex;
    align-items: center;
}

.vacancy-ads .bottom-block {
    position: relative;
    border-radius: 0 0 3px 3px;
    border: 1px solid #4A714A;
    background: #2A3D2A;
    max-width: 416px;
    height: 34px;
    gap: 5px;
    color: #DFFFDA;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
}

.vacancy-ads .bottom-block .icon {
    width: 16px;
    margin-left: 18px;
}

.vacancy-ads .bottom-block .background-icon {
    position: absolute;
    right: 0;
    top: -2px;
}


.button-create-vacancy {
    border: 1px solid #097600;
    background: #202025;
    width: 100%;
    border-radius: 3px;
}

.button-create-vacancy.moderation {
    border-color: #429f17;
    display: flex;
    justify-content: center;
    padding: 12px 10px;
}

.form-create-vacancy .form-input-title {
    padding: 15px 5px 15px 5px;
}

.vacancy-content {
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background: var(--content-bg);
    box-shadow: var(--light-box-shadow);
}

@media (max-width: 910px) {
    .vacancy-content {
        flex-direction: column;
    }
}

textarea.short_description {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background: #202025;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.16px;
    font-family: Roboto, sans-serif;
    padding: 5px;
}

.related-vacancies {
    font-size: 22px;
}