
.vacancies-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.vacancy {
    background: #f8f3ec;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.vacancy img {
    width: 50px;
    margin-bottom: 10px;
}

.vacancy h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.job-details {
    text-align: left;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.job-details h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.job-details ul {
    list-style: none;
    padding-left: 0;
}

.job-details ul li {
    margin-bottom: 8px;
    font-size: 16px;
    padding-left: 20px;
    position: relative;
}

.job-details ul li::before {
    content: "•";
    color: #c09967;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 3px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #c09967;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

.btn:hover {
    background: #a87d4b;
}

/* Адаптация под мобильные */
@media (max-width: 768px) {
    .vacancies-grid {
        grid-template-columns: 1fr;
    }

    .job-details {
        width: 100%;
        text-align: justify;
        padding: 20px;
    }
}

/* Анимация появления */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Общий стиль */
.vacancy, .job-details, .section-title {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

/* Задержка для плавного появления карточек */
.vacancy:nth-child(1) { animation-delay: 0.2s; }
.vacancy:nth-child(2) { animation-delay: 0.4s; }
.vacancy:nth-child(3) { animation-delay: 0.6s; }
.vacancy:nth-child(4) { animation-delay: 0.8s; }

/* Анимация для блока "Требования" и "Условия" */
.job-details {
    animation-delay: 1s;
}
