.recruitment-list {
    margin-top: 50px;
    margin-bottom: 100px;
}

.recruitment-list .text {
    text-align: center;
}

.recruitment-list .title {
    font-weight: 500;
    font-size: 27px;
    margin: 0px;
}

.recruitment-list .text p{
    margin-top: 5px;
    font-size: 15px;
}

.postulations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.postulations .recruitment img {
    width: 150px;
    margin: auto;
}

.postulations .recruitment {
    min-height: 270px;
    border: solid 1px rgba(214, 214, 214, 0.600);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.postulations .recruitment:hover {
    box-shadow: 0px 0px 5px 0px rgba(224, 224, 224, 0.233);
}

.postulations .recruitment h4 {
    font-weight: 500;
    font-size: 18px;
}

.postulations .recruitment .buttons p {
    font-size: 14px;
    color: #6B7CA5;
}

.postulations .recruitment .buttons {
    display: grid;
    padding: 25px;
    grid-template-columns: 1fr;
    gap: 10px;
    background-color: #FAFAFA;
}

.postulations .button-link {
    min-width: auto;
    font-size: 15px;
}

.postulations .recruitment .buttons .button-link:first-child {
    color: black;
    border: none;
}

.postulations .recruitment .buttons .button-link:first-child:hover {
    background-color: transparent;
}

.postulations .recruitment .buttons .button-link:last-child {
    color: white;
    background-color: var(--primary-color, #1967D2);
}

.rejectApply{
    border: solid 1px #EA2027;
    color: white !important;
    background-color: #EA2027 !important;
}

.rejectApply:hover{
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1250px) {
    .postulations {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1100px) {
    .postulations {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 800px) {
    .recruitment-list .title {
        font-size: 27px;
    }
}

@media screen and (max-width: 800px) {
    .postulations {
        grid-template-columns: 1fr;
    }
}
