

/* Start:/local/templates/main/components/bitrix/news.list/vacancies/style.css?17392687612963*/
/* Баннер */
.vacancies-banner {
    width: 100%;
    height: calc(100vh - 100px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 60px;
}

.vacancies-banner-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

/* Контейнер */
.vacancies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Заголовок */
.vacancies-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

/* Список вакансий */
.vacancy-item {
    margin-bottom: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.vacancy-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s;
}

.vacancy-header:hover {
    background-color: #f5f5f5;
}

.vacancy-title {
    font-size: 20px;
    font-weight: 500;
}

/* Иконка аккордеона */
.vacancy-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.vacancy-icon:before,
.vacancy-icon:after {
    content: '';
    position: absolute;
    background-color: #000;
    transition: transform 0.3s ease;
}

.vacancy-icon:before {
    top: 11px;
    left: 0;
    width: 24px;
    height: 2px;
}

.vacancy-icon:after {
    top: 0;
    left: 11px;
    width: 2px;
    height: 24px;
}

.vacancy-header.active .vacancy-icon:after {
    transform: rotate(90deg);
}

/* Контент вакансии */
.vacancy-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.vacancy-description {
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* Кнопка */
.vacancy-button {
    display: inline-block;
    margin: 0 20px 20px;
    padding: 12px 24px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.vacancy-button:hover {
    background-color: #0056b3;
}

/* Адаптивность */
@media (max-width: 768px) {
    .vacancies-banner {
        height: 300px;
    }

    .vacancies-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .vacancy-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .vacancies-banner {
        height: 200px;
    }

    .vacancies-container {
        padding: 0 15px 40px;
    }

    .vacancy-header {
        padding: 15px;
    }

    .vacancy-description {
        padding: 0 15px 15px;
    }

    .vacancy-button {
        margin: 0 15px 15px;
        width: calc(100% - 30px);
        text-align: center;
    }
}
/* End */
/* /local/templates/main/components/bitrix/news.list/vacancies/style.css?17392687612963 */
