.recruitee-offers {
    background: white;
    padding-top: 64px;
}

.recruitee-offers--list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-around;
    align-items: stretch;
    max-width: 1280px;
    margin: 0 auto;
}

.recruitee-offers--list li {
    flex-basis: calc(33.333333% - 32px);
    text-align: center;
    padding: 25px;
    background: #101826;
    color: white;
    display: block;
    margin: 0 0 32px;
}

.recruitee-offers--list li h3 {
    font-size: 20px;
    font-weight: bold;
    min-height: 60px;
}

.recruitee-offers--list li .desc {
    margin: 32px 0;
}

.recruitee-offers--list li .link {
    padding-top: 16px;
    position: relative;
}

.recruitee-offers--list li .link::before {
    content: '';
    background-color: white;
    height: 2px;
    width: 33.333333%;
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
}

.recruitee-offers--list li a {
    color: white;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
    display: block;
    padding: 16px;
}

.recruitee-offers--list li a:hover {
    color: #ED1C24;
}

.recruitee-offers--list li img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    display: inline-block;
}

@media screen and (max-width: 1024px) {
    .recruitee-offers--list li {
        flex-basis: calc(50% - 32px);
    }
}


@media screen and (max-width: 632px) {
    .recruitee-offers--list li {
        flex-basis: calc(100% - 32px);
    }

    .recruitee-offers--list li h3 {
        min-height: 0;
    }
}
