

/* Start:/local/templates/prom/components/bitrix/news.list/vacancies_accordion/style.css?17764376227724*/
/* Секция вакансий - обновлено по Figma */
.vacancies-section {
    padding: 20px 0 64px 0;
    /* Без фона */
}

.page-title.vakancy {text-align:center;}

.vacancies-container {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 0px;
}

.vacancies-title {
    font-family: 'Bebas Neue Cyrillic', 'Bebas Neue', sans-serif;
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    color: #303030;
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.2;
}

/* Контейнер аккордеона */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
}

.accordion-wrapper {
    width: 100%;
}

.accordion-item {
    width: 100%;
    padding: 16px 16px 16px 32px;
    background: white;
    box-shadow: 0px 2.8px 2.27px rgba(0, 0, 0, 0.02), 0px 14px 14px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    box-sizing: border-box;
}

/* Заголовок аккордеона */
.accordion-header {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
}

.accordion-header:hover {
    opacity: 0.9;
}

.accordion-title {
    color: #333333;
    text-align: left;
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

/* Кнопка аккордеона - контейнер для иконки */
.accordion-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F2F2F3;
    border-radius: 6px;
    /* Без курсора - он на заголовке */
    cursor: default;
    /* Без hover фона */
}

/* Иконка внутри кнопки - поворачивается */
.accordion-icon {
    width: 13px;
    height: 13px;
    position: relative;
    /* Плавный поворот иконки */
    transition: transform 0.3s ease;
}

/* Плюсик - две линии */
.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: #989795;
    border-radius: 1px;
    /* Плавная смена цвета */
    transition: background 0.3s ease;
}

/* Горизонтальная линия плюсика */
.accordion-icon::before {
    width: 13px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Вертикальная линия плюсика */
.accordion-icon::after {
    width: 2px;
    height: 13px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* При наведении на заголовок - поворот иконки + оранжевый цвет */
.accordion-header:hover .accordion-icon {
    transform: rotate(45deg);
}

.accordion-header:hover .accordion-icon::before,
.accordion-header:hover .accordion-icon::after {
    background: linear-gradient(225deg, #E74F01 0%, #C71201 100%);
}

/* При активном состоянии (раскрыто) - крестик оранжевый */
.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-header.active .accordion-icon::before,
.accordion-header.active .accordion-icon::after {
    background: linear-gradient(225deg, #E74F01 0%, #C71201 100%);
}

/* Контент аккордеона */
.accordion-content {
    padding: 16px 0 0 0;
    display: none;
}

.accordion-text {
    color: #989795;
    text-align: left;
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 32px;
}

/* === СТИЛИ ДЛЯ HTML-ТЕГОВ ВНУТРИ .accordion-text === */

/* Заголовки h3, h4 */
.accordion-text h3,
.accordion-text h4 {
    color: #989795;
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.accordion-text h3:first-child,
.accordion-text h4:first-child {
    margin-top: 0;
}

/* Абзацы */
.accordion-text p {
    margin: 0 0 8px 0;
}

.accordion-text p:last-child {
    margin-bottom: 0;
}

/* Списки */
.accordion-text ul,
.accordion-text ol {
    margin: 0 0 16px 20px;
    padding: 0;
    list-style-position: outside;
}

.accordion-text ul {
    list-style-type: disc;
}

.accordion-text ol {
    list-style-type: decimal;
}

.accordion-text li {
    margin-bottom: 6px;
    padding-left: 4px;
    line-height: 1.5;
}

.accordion-text li:last-child {
    margin-bottom: 0;
}

/* Жирный и курсив */
.accordion-text strong,
.accordion-text b {
    color: #333333;
    font-weight: 600;
}

.accordion-text em,
.accordion-text i {
    font-style: italic;
}

/* Ссылки внутри текста */
.accordion-text a {
    color: #E74F01;
    text-decoration: none;
    transition: color 0.3s ease;
}

.accordion-text a:hover {
    color: #C71201;
    text-decoration: underline;
}

/* === КОНЕЦ СТИЛЕЙ ДЛЯ ТЕГОВ === */

/* Кнопка "Оставить заявку" - обновлено по Figma */
.apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    background: linear-gradient(225deg, #E74F01 0%, #C71201 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.apply-btn:hover {
    opacity: 0.9;
}

.apply-btn:active {
    transform: translateY(0);
}

/* Разделитель больше не нужен - каждая карточка отдельная */
.accordion-divider {
    display: none;
}

/* Медиа-запросы */
@media (max-width: 1024px) {
    .accordion-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .vacancies-title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    
    .accordion-item {
        padding: 12px 12px 12px 16px;
    }
    
    .accordion-title {
        font-size: 16px;
    }
    
    .accordion-btn {
        width: 36px;
        height: 36px;
    }
    
    .accordion-icon::before {
        width: 11px;
    }
    
    .accordion-icon::after {
        height: 11px;
    }
    
    .accordion-content {
        padding: 12px 0 0 0;
    }
    
    .accordion-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .apply-btn {
        height: 36px;
        padding: 0 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .vacancies-section {
        padding: 40px 0;
    }
    
    .vacancies-title {
        font-size: 28px;
    }
    
    .accordion-item {
        padding: 12px;
    }
    
    .accordion-title {
        font-size: 14px;
    }
    
    .accordion-btn {
        width: 32px;
        height: 32px;
    }
    
    .accordion-icon::before {
        width: 10px;
    }
    
    .accordion-icon::after {
        height: 10px;
    }
    
    .accordion-text {
        font-size: 13px;
    }
}

/* End */
/* /local/templates/prom/components/bitrix/news.list/vacancies_accordion/style.css?17764376227724 */
