body {
    background-color: #fafbfc;
    font-family: Figtree, sans-serif;
}

.son-job-single {
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 62px;
    padding-bottom: 96px;

    background: #fafbfc;
}

.son-job-single .son-job {
    background: #fafbfc;
}

.son-job-single .son-btn {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    font-family: Figtree, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 500;
    border-radius: 8px;
    padding: 6px 20px;
}

.son-job-apply svg {
    fill: #A32245;
}

.son-job-single .son-btn .son-btn-icon {
    display: inline-flex;
    align-items: center;
}

.son-job-single .son-btn-secondary {
    background: #FFF;
    border: 1px solid #A32245;
    color: #A32245;
    transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease, fill 0.3s ease;
}


.son-job-single .son-btn-secondary:hover {
    background: #521022;
    border: 1px solid #491623;
    color: #ffffff;
}

.son-job-single .son-btn-secondary:hover svg {
    fill: #ffffff;
}


/* Global Styles */
ul.son-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.son-job-single .son-job-header {
    display: flex;
    padding-top: 18px;
    padding-bottom: 48px;
    align-items: flex-start;
    justify-content: space-between;
}

.son-job-single .son-job-header .son-job-header__left {
    display: flex;
    column-gap: 20px;
}

.son-job-single .son-job-header .son-job-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: 0;
    margin-top: 8px;
    margin-bottom: 12px;
}

.son-job-single .son-job-header .son-job-company a {
    font-weight: 400;
    color: #A32245;
    font-size: 16px;
    line-height: 1.6875;
    letter-spacing: 0;
    text-decoration: underline;
}

.son-job-single .son-job-header .header-logo-wrapper {
    height: 96px;
    width: 96px;
    aspect-ratio: 1/1;
    border: 1px solid #C1C7D0;
    border-radius: 999px;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

.son-job-single .son-job-header .header-logo-wrapper img {
    width: 68%;
    height: 68%;
    object-fit: contain;
}

.son-job-single .son-job-container {
    display: grid;
    grid-template-columns: minmax(387px, 1fr) minmax(0, 3fr);
    column-gap: 40px;
}

/* ##### SIDEBAR STYLES ##### */
aside.son-job-info-wrapper {
    padding-left: 29px;
    padding-right: 55px;
    padding-top: 32px;
    padding-bottom: 60px;

    border-radius: 20px;
    border: 1px solid #B3BAC5;
    background-color: #fff;
    max-height: fit-content;
}

.son-meta-heading {
    color: #344563;
    font-family: Figtree;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.35;
    /* 135% */
    margin-bottom: 33px;
}

.son-info-list {
    display: flex;
    flex-direction: column;
    row-gap: 35px;
}

.son-list-item {
    display: flex;
    margin-bottom: 0;
    column-gap: 20px;
}

.son-list-item p {
    margin: 0;
}

.son-list-item .meta-info-label {
    color: #6B778C;
    font-family: Figtree;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
}

.son-list-item .meta-info-value {
    color: #253858;
    font-family: Figtree;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .son-job-single .son-job-container {
        display: grid;
        grid-template-columns: minmax(330px, 1fr) minmax(0, 3fr);
        column-gap: 28px;
    }

    .son-job-single .son-job-info-wrapper {
        padding-left: 24px;
        padding-right: 38px;
        padding-top: 32px;
        padding-bottom: 48px;
    }

    .son-job-single .son-list-item {
        margin-left: 0;
    }
}


@media (max-width: 767px) {
    .son-job-single .son-job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .son-job-single .son-job-header .son-job-title {
        font-weight: 600;
        font-size: 22px;
        line-height: 1.6;
        letter-spacing: 0;
    }

    .son-job-single .son-job-container {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 28px;
    }

    .son-job-single .son-job-info-wrapper {
        padding-left: 24px;
        padding-right: 38px;
        padding-top: 32px;
        padding-bottom: 48px;

        margin-bottom: 24px;
    }

    .son-job-single .son-list-item {
        margin-left: 0;
    }

    .son-job-single .son-job-header__left {
        flex-direction: column;
        width: 100%;
    }

    .son-job-single .son-job-header .header-logo-wrapper {
        width: 170px;
        height: 170px;
        border-radius: 8px;
        margin-bottom: 16px;
    }

    .son-job-single .son-job-header .son-header-wrapper {
        margin-bottom: 32px;
    }
}