/* Section wrapper */
.vacancies-section {
    padding: 80px 58px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    font-family: 'lyon-regular';
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
    background-color: #000;
    color: #fff;

}

.vacancies-title {
    font-family: 'lyon-regular';
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    color: #fff;
}

/* Vacancy Card */
.vacancy-card {
    width: 100%;
    max-width: 1200px;
    background-color: #151515;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vacancy-header {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Details row + button wrapper */
.vacancy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.vacancy-detail {
    display: flex;
    flex-direction: column;
    gap: 0px;
    min-width: 150px;
}

.detail-label {
    font-size: 14px;
    color: #aaa;
}

.detail-value {
    font-size: 16px;
    font-weight: 500;
}

/* Button */
.vcny-btn {
    background-color: #eeff75;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    padding: 0px 28px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.vcny-btn:hover {
    background-color: #EEFF75;
    color: #000;
}

.see-more-btn {
    align-self: center;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .vacancy-header {
        font-size: 24px;
    }

    .vacancies-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .vacancy-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* Button goes left below grid */
    .vacancy-row .vcny-btn {
        grid-column: 1 / -1;
        /* full width row */
        justify-self: start;
    }

    .vacancies-section {
        padding: 50px 52px;
        gap: 40px;
        line-height: 35px;
    }
    .vacancy-detail {
        line-height: 26px;
        min-width: 130px;
    }

    .vacancies-title {
        font-size: 32px;
    }

    .vacancy-card {
        padding-left: 15px;
    }

    .vcny-btn {
        display: flex;
        height: 32px;
        padding: 8px 12px;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
}