.vacancy-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
    padding: 30px;
    
    justify-content: space-between;
} 

.vacancy-box {
    width: calc(50% - 15px);
    background: #e6e6e6;
   
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    box-sizing: border-box;
	border-radius: 15px 15px 15px 15px;
 padding:10px;
}

.vacancy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.vacancy-title {
    margin: 0;
    color: #2A4D9F;
    font-size: 16px;
	font-weight:600;
}

.job-type {
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.job-type.full-time {
    background: #2a4d9f;
    color: #ffffff;
}

.job-type.part-time {
    background: #ce2229;
    color: #ffffff;
}

.vacancy-location {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
	font-size:14px;
}

.vacancy-location .dashicons {
    margin-right: 5px;
    color: #2A4D9F;
}

.vacancy-description {
    margin-bottom: 20px;
    color: #444;
    line-height: 1.6;
}

/*.apply-button {*/
/*    display: inline-block;*/
/*    padding: 8px 20px;*/
/*    background: #2A4D9F;*/
/*    color: white;*/
/*    text-decoration: none;*/
/*    border-radius: 4px;*/
/*}*/

/*.apply-button:hover {*/
/*    background: #1d3a7a;*/
/*}*/

@media (max-width: 768px) {
    .vacancy-container {
        display: block;
        padding: 15px;
    }
    
    .vacancy-box {
        width: 100%;
        margin-bottom: 20px;
    }
}
a.apply-button {
    display: none;
}