/* 1. Убираем все отступы и границы по умолчанию */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 2. Наследуем шрифт для форм */
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* 3. Убираем маркеры списков */
ul,
ol {
    list-style: none;
}

/* 4. Обнуляем ссылки */
a {
    text-decoration: none;
    color: inherit;
}

/* 5. Снимаем оформление у заголовков */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

/* 6. Устанавливаем базовый стиль для body */
body {
    line-height: 1.5;
    font-family: 'Roboto Condensed', sans-serif;
    color: #000;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

/* 7. Сброс для изображений */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 8. Убираем фокус-стили (если нужны — добавим отдельно) */
:focus {
    outline: none;
}


/*конец блока normalize reset*/

* {
    font-family: 'Roboto Condensed', sans-serif;
}



* {
    font-family: 'Roboto Condensed', sans-serif;
}


.container {
    max-width: 1160px;
    margin: 0 auto;
}

.breadcrumbs {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    margin-top: 12px;
}

.breadcrumbs a {
    text-decoration: none;
    color: #888;
}

.vacancy-region {
    margin: 20px 0;
    font-size: 20px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.vacancy-card {
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 6px;
    background: #fff;
    max-width: 100%;
}

.vacancy-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.vacancy-info {
    flex: 1 1 180px;
}

.label {
    font-size: 14px;
    color: #999;
    margin-bottom: 4px;
}

.value {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.vacancy-button {
    align-self: center;
}

.vacancy-button button {
    background-color: #d34747;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

.vacancy-button button:hover {
    background-color: #b03030;
}

.vacancy-description {
    font-size: 16px;
    margin-top: 10px;
    color: #333;
}

.offer-accordion {
    border-top: 1px solid #ccc;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-header {
    cursor: pointer;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-body {
    display: none;
    padding: 0 0 16px 0;
}

.accordion-item.open .accordion-body {
    display: block;
}

.chevron-icon {
    transition: transform 0.3s ease;
}

.accordion-item.open .chevron-icon {
    transform: rotate(180deg);
}

.sublist {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.sublist > li {
    margin-bottom: 24px;
}

.sublist > li > strong {
    display: block;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 8px;
    color: #222;
}

.sublist > li ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.sublist > li ul li {
    margin-bottom: 6px;
}


/*попап*/

.resume-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.resume-popup {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.resume-popup h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.resume-popup label {
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
}

.resume-popup input[type="text"],
.resume-popup input[type="tel"],
.resume-popup input[type="email"],
.resume-popup input[type="file"],
.resume-popup textarea {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 4px;
}

.resume-popup textarea {
    resize: vertical;
}

.checkboxes {
    margin: 16px 0;
    font-size: 13px;
}

.checkboxes label {
    display: block;
    margin-bottom: 8px;
}

.checkboxes input {
    margin-right: 6px;
}

.resume-popup .submit-btn {
    background-color: #d34747;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

.resume-popup .submit-btn:hover {
    background-color: #b63030;
}

.note {
    font-size: 12px;
    color: #777;
    margin-bottom: 12px;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}




@media (max-width: 1279px) {
    .container {
        max-width: 944px;
        margin: 0 auto;
    }
}

@media (max-width: 1023px) {
    .container {
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 440px;
        margin: 0 auto;

        font-size: 14px;
    }
}

@media (max-width: 479px) {
    .container {
        max-width: 340px;
        margin: 0 auto;

        font-size: 14px;
    }
}
