.positions {
    padding-left: 20px;
    padding-right: 20px;
    background-color: #f5f5f5;
}

.positions__container {
    padding: 25px 0 30px;
}

.positions__title {
    margin-bottom: 15px;
    font: 300 34px/1.1 'Pluto Sans DPD', sans-serif;
    color: #414042;
    text-align: center;
}

.position {
    display: flex;
    flex-direction: column;
}

.position__main {
    display: flex;
    align-items: center;
    padding-top: 3px;
    padding-bottom: 3px;
}

.positions__department {
    padding: 20px 0;
    border-top: 1px solid #D7D7D7;
}

.positions__department:last-of-type {
    border-bottom: 1px solid #D7D7D7;
}

.positions__department-name {
    font: 400 12px/1.35 'Pluto Sans DPD', sans-serif;
    color: #414042;
}

.position__name {
    padding-right: 5px;
    width: 45%;
    font: 300 13px/1.5 'Pluto Sans DPD', sans-serif;
    color: #DC0032;
}

.position__location {
    width: 35%;
    font: 400 11px/1.35 'Pluto Sans DPD', sans-serif;
    color: #808285;
}

.position__link {
    width: 20%;
    font: 400 13px/1.25 'Pluto Sans DPD', sans-serif;
    text-decoration: underline!important;
    cursor: pointer;
}

.position__description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    column-gap: 20px;
    padding-top: 20px;
    font-family: 'Pluto Sans DPD', sans-serif;
    transition: all 0.2s ease;
}

.position__description div,
.position__description p,
.position__description li,
.position__description ul {
    font-size: 14px;
    line-height: 1.5;
}

.position__description-button {
    display: inline-block;
    width: auto;
    padding: 12px 26px;
    margin-top: 15px;
    font: 400 14px/1.42 'Pluto Sans DPD', sans-serif;
    text-transform: capitalize;
    text-align: center;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.position__description-button:hover {
    opacity: 0.9;
}

@media screen and (min-width: 1024px) {
    .positions__container {
        max-width: 930px;
        margin: 0 auto;
        padding: 65px 0 70px;
    }

    .positions__title {
        margin-bottom: 30px;
        font-size: 48px;
    }

    .positions {
        padding-left: 0;
        padding-right: 0;
    }

    .position__name {
        width: 35%;
        font-size: 16px;
        line-height: 1.875;
    }

    .position__location {
        width: 50%;
        font-size: 12px;
    }

    .position__link {
        width: 15%;
    }

}