.job-overview {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 40px;
    /* Общие стили без фиксированных размеров */
}

.job-overview__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 80px;
    line-height: 97px;
    color: #252525;
}

.job-overview__description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 150%; /* 36px */
    color: #252525;
}
@media (max-width: 1200px) {
    .job-overview {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        gap: 25px;
    }

    .job-overview__title {
        font-family: 'Inter', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 50px;
        line-height: 61px;
        color: #252525;

    }

    .job-overview__description,.offer-section__list,.requirements-section__list,.nice-to-have-section__list, {
        font-family: 'Inter', sans-serif;
        font-style: normal;
        font-weight: 300;
        font-size: 15px;
        line-height: 150%; /* 22px */
        color: #252525;

    }
}
/* Адаптивные стили для экрана до 960px */
@media (max-width: 960px) {
    .job-overview__title {
        font-size: 40px;
        line-height: 48px;
    }

    .job-overview__description {
        font-size: 12px;
        line-height: 150%; /* 18px */
    }
}
/* Адаптивные стили для экрана до 640px */
@media (max-width: 640px) {
    .job-overview__title {
        font-size: 24px;
        line-height: 29px;
    }

    .job-overview__description {
        font-size: 12px;
        line-height: 150%; /* 18px */
    }
}

/* Основные стили для секции */
.offer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 40px;

    /* Внутренние стили для auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* Заголовок секции */
.offer-section__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 80px;
    line-height: 97px;
    color: #252525;

    /* Внутренние стили для auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Список предложений */
.offer-section__list {
    /* Внутренние стили для auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* Элементы списка предложений */
.offer-section__item {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 150%; /* 36px */
    color: #252525;
}

/* Адаптивные стили для экрана до 640px */
@media (max-width: 640px) {
    .offer-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0px;
        gap: 16px;
    }

    .offer-section__title {
        font-size: 24px;
        line-height: 29px;
    }

    .offer-section__item {
        font-size: 12px;
        line-height: 150%; /* 18px */
    }
}

/* Адаптивные стили для экрана до 375px */
@media (max-width: 375px) {
    .offer-section__title {
        font-size: 24px;
        line-height: 29px;
    }

    .offer-section__item {
        font-size: 12px;
        line-height: 150%; /* 18px */
    }
}

/* Основные стили для секции требований */
.requirements-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 40px;

    /* Внутренние стили для auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* Заголовок секции требований */
.requirements-section__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 80px;
    line-height: 97px;
    color: #252525;

    /* Внутренние стили для auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Список требований */
.requirements-section__list {
    /* Внутренние стили для auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* Элементы списка требований */
.requirements-section__item {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 150%; /* 36px */
    color: #252525;
}

/* Основные стили для секции "Nice to have" */
.nice-to-have-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 40px;

    /* Внутренние стили для auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* Заголовок секции "Nice to have" */
.nice-to-have-section__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 80px;
    line-height: 97px;
    color: #252525;

    /* Внутренние стили для auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Список "Nice to have" */
.nice-to-have-section__list {
    /* Внутренние стили для auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* Элементы списка "Nice to have" */
.nice-to-have-section__list li {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 150%; /* 36px */
    color: #252525;
}

/* Адаптивные стили для экрана до 640px */
@media (max-width: 640px) {
    .requirements-section,
    .nice-to-have-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0px;
        gap: 16px;
    }

    .requirements-section__title,
    .nice-to-have-section__title {
        font-size: 24px;
        line-height: 29px;
    }

    .requirements-section__item,
    .nice-to-have-section__list li {
        font-size: 12px;
        line-height: 150%; /* 18px */
    }
}


/* Блок с зарплатой */
.job-overview__salary {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 32px;
}

/* Кнопка "Apply" */
.apply-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 32px;
    gap: 8px;
    background: #3B5EEF;
    border-radius: 70px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
}

/* Стрелка на кнопке */
.apply-button .arrow_outward {
    width: 18px;
    height: 18px;
    fill: #FFFFFF; /* Белый цвет стрелки */
    margin-left: 8px; /* Отступ между текстом и стрелкой */
    display: block;
}


/* Зарплата */
.job-overview__salary .salary-details {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 8px;
}

.job-overview__salary .rate {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 58px;
    color: #A39F9F;
}

.job-overview__salary .currency {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 150%;
    color: #A39F9F;
}

/* Адаптивные стили для экрана до 1200px */
@media (max-width: 1200px) {
    /* Общий контейнер */
    .job-overview__salary {
        gap: 32px;
    }

    /* Кнопка */
    .apply-button {
        padding: 8px 32px;
        font-size: 24px;
        line-height: 29px;
    }

    /* Стрелка на кнопке */
    .apply-button .arrow_outward {
        width: 32px;
        height: 32px;
    }

    /* Ставка */
    .salary-details .rate {
        font-size: 48px;
        line-height: 58px;
    }

    /* Валюта */
    .salary-details .currency {
        font-size: 24px;
    }
}
/* Адаптивные стили для экрана до 960px */
@media (max-width: 960px) {
    /* Общий контейнер */
    .job-overview__salary {
        gap: 16px;
    }

    /* Кнопка */
    .apply-button {
        padding: 4px 24px;
        font-size: 16px;
        line-height: 19px;
        border-radius: 35px;
    }

    /* Стрелка на кнопке */
    .apply-button .arrow_outward {
        width: 24px;
        height: 24px;
    }

    /* Ставка */
    .salary-details .rate {
        font-size: 24px;
        line-height: 29px;
    }

    /* Валюта */
    .salary-details .currency {
        font-size: 16px;
    }
}
/* Адаптивные стили для экрана до 640px */
@media (max-width: 640px) {
    /* Общий контейнер */
    .job-overview__salary {
        gap: 16px;
    }

    /* Кнопка */
    .apply-button {
        padding: 4px 24px;
        font-size: 16px;
        line-height: 19px;
        border-radius: 35px;
    }

    /* Стрелка на кнопке */
    .apply-button .arrow_outward {
        width: 24px;
        height: 24px;
    }

    /* Ставка */
    .salary-details .rate {
        font-size: 16px;
        line-height: 19px;
    }

    /* Валюта */
    .salary-details .currency {
        font-size: 12px;
        line-height: 18px;
    }
}

/* Адаптивные стили для экрана до 375px */
@media (max-width: 375px) {
    /* Общий контейнер */
    .job-overview__salary {
        flex-direction: column;
        gap: 16px;
        width: 327px;
        height: 141px;
        left: 24px;
        top: 122px;
    }

    /* Кнопка */
    .apply-button {
        padding: 4px 24px;
        font-size: 16px;
        line-height: 19px;
        border-radius: 35px;
        width: 327px;
        height: 40px;
    }

    /* Стрелка на кнопке */
    .apply-button .arrow_outward {
        width: 24px;
        height: 24px;
    }

    /* Название позиции */
    .job-overview__title {
        font-size: 24px;
        line-height: 29px;
        color: #252525;
        margin: 0 auto;
    }

    /* Удаленная работа */
    .job-overview__remote {
        padding: 4px 8px;
        border: 1px solid #A39F9F;
        border-radius: 10px;
        font-size: 12px;
        line-height: 18px;
        color: #A39F9F;
        margin: 0 auto;
    }

    /* Ставка */
    .salary-details .rate {
        font-size: 16px;
        line-height: 19px;
        text-transform: uppercase;
        color: #A39F9F;
    }

    /* Валюта */
    .salary-details .currency {
        font-size: 12px;
        line-height: 18px;
        color: #A39F9F;
    }
}
