.job-post-header {
    background-color: #717171;
}

.job-post-heading {
    color: white;
    text-align: center;
}

.job-details-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 40px 20px 20px;
}

.job-details-title {
    color: #000000;
    text-align: center;
}

.job-details_subtitle {
    font-size: 18px;
    margin: 12px 0;
}

.application-link,
.application-link:hover,
.application-link:focus {
    background-color: #ED1C24;
    border-radius: 10px;
    color: white;
    margin-top: 12px;
    padding: 10px 80px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.job-details-summary {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 20px;
    width: 100%;

    li {
        list-style-type: disc;
        margin-left: 40px;
    }
}

.job-detail-subheading {
    font-size: 22px;
    line-height: 26px;
    margin: 20px 0;
}

.secondary-link,
.secondary-link:hover,
.secondary-link:focus {
    background-color: #717171;
    border-radius: 10px;
    color: white;
    margin-top: 20px;
    padding: 12px 40px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 80px;
}

.mobile-full-width {
    width: 100%;
}

.error-loading-job {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    margin: 20px auto;
}

@media (min-width:992px){   
    .job-details-summary {
        margin: 40px auto;
        width: 60%;

        li {
            list-style-type: disc;
            margin-left: 60px;
        }
    }

    .job-details-heading {
        margin: 40px;
    }

    .job-detail-subheading {
        font-size: 22px;
        line-height: 26px;
        margin: 20px 0;
    }

    .mobile-full-width {
        width: unset;
    }
}