section {
    margin: 0;
    padding: 2rem 0;
}
.job__meta{
    margin-top: 1.5rem;
}
.job__meta-list{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.job__meta-list-item > span{
    display: block;
    text-align: center;
}
.job__meta-list-item-label{
    width: 100%;
    display: block;
    color: #4A5C76;
    font-size: 1em;
    font-weight: 300;
    margin-bottom: 0.5em;
}

.job__meta-list-item-value{
    width: auto;
    display: block;
    color: #4A5C76;
    font-weight: 500;
    font-size: 0.875em;
    border-radius: 0.75rem;
    background-color: #D5DDE8;
    padding: 0.25em 0.875em;
}

.job__description-section {
    margin-bottom: 1.5rem;
    padding-right: 1.5em;
    padding-left: 1.5em;
    font-size: 0.9em;
}
.job__description-section * {
    margin: initial;
    margin: revert;
    padding: initial;
    padding: revert;
    list-style: initial;
    text-decoration: initial;
    text-decoration: revert;
    font-style: inherit;
    font-style: revert;
    font-size: 1em;
    font-weight: 300;
    line-height: 1.4;
    text-align: right;
}

.job__description-section h1,
.job__description-section h2,
.job__description-section h3 {
    font-weight: 600;
    color: #393939;
    font-size: 1.4em;
    margin-top: 3em;
}

.job__description-section h1:first-of-type,
.job__description-section h2:first-of-type,
.job__description-section h3:first-of-type {
    margin-top: 0;
}
    
.job__description-section ul {
    list-style: none;
    padding-right: 0.75rem;
}

.job__description-section ul li {
    position: relative;
    font-size: 0.875rem;
    line-height: 140%;
    text-align: justify;
    margin-bottom: 0.75rem;
}

.job__description-section ul li:before{
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 0.25rem;
    background-color: #268DFB;
    position: absolute;
    right: -1rem;
    top: 0.25rem;
}
.job__description-section p {
    margin: 0 0.5em;
    font-size: 1em;
}

.job__description-section li:before {
    content: "";
    border-radius: 50%;
    height: 0.5em;
    width: 0.5em;
    position: absolute;
    right: 0;
    top: 0.25em;
    border: 1px solid var( --primary-color);
}

.job__description-section strong {
    font-weight: 600;
}

.job__description-section u {
    text-decoration: underline;
}

.job__description-section em {
    font-style: italic;
}


.job__description-section:last-child{
    margin-bottom: 0;
}

.job__description-section p{
    text-align: justify;
}
.job__description-section .primary-button{
    width: 100%;
    text-align: center;
    margin: 1rem auto;
}
.page-title__description{
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
}
@media (min-width:567px){}

@media (min-width:768px){
    .job__description-section .primary-button{
        max-width: max-content;
    }
}

@media (min-width:960px){
    .job__description-section{
        margin-bottom: 3rem;
    }
    
    .job__meta-list{
        gap: 2rem;
    }
}

@media (min-width:1200px){
    section {
        padding: 4rem 0;
    }
}

@media (min-width:1440px){}