/*--------------------------------------------------------------
# Post a Job Template
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Page Layout
--------------------------------------------------------------*/
.post-job-page {
    padding: 4rem 0 5rem;
    background: #f8fafc;
    min-height: 100vh;
}

.post-job-page .fixquo-container {
    max-width: 1200px;
}

/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/
.fx-job-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.fx-job-logo__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fx-job-logo__link .custom-logo {
    display: block;
    width: auto;
    max-height: 60px;
}

.fx-job-logo__link .custom-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width:767px) {
    .fx-job-logo {
        margin-bottom: 2rem;
    }

    .fx-job-logo__link .custom-logo {
        max-height: 48px;
    }
}

/*--------------------------------------------------------------
# Service Selection
--------------------------------------------------------------*/
.fx-job-service {
    max-width: 920px;
    margin: 0 auto;
}

.fx-job-service__header {
    margin-bottom: 2.5rem;
}

.fx-job-service__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--fx-navy);
}

.fx-job-service__description {
    max-width: 700px;
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--fx-text);
}

.fx-job-service__search {
    margin-bottom: 2rem;
}

.fx-job-service__content {
    margin-top: 2rem;
}

.fx-job-service__heading {
    margin: 0 0 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--fx-navy);
}

/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/
.fx-job-search {
    width: 100%;
    height: 58px;
    padding: 0 1.25rem;
    border: 1px solid var(--fx-border);
    border-radius: 14px;
    background: #fff;
    font-size: 1rem;
    transition: border-color .2s ease,
        box-shadow .2s ease;
}

.fx-job-search:focus {
    outline: none;
    border-color: var(--fx-gold);
    box-shadow: 0 0 0 4px rgba(245, 180, 0, .12);
}

/*--------------------------------------------------------------
# Service Grid
--------------------------------------------------------------*/
.fx-job-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

/*--------------------------------------------------------------
# Service Card
--------------------------------------------------------------*/
.fx-job-service-card {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 170px;
    width: 100%;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #d9e2ec;
    border-radius: 16px;
    cursor: pointer;
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        background-color .25s ease;
    text-align: center;
}

.fx-job-service-card:hover {
    transform: translateY(-4px);
    border-color: var(--fx-gold);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
}

.fx-job-service-card:focus-visible {
    outline: none;
    border-color: var(--fx-gold);
    box-shadow: 0 0 0 4px rgba(245, 180, 0, .18);
}

.fx-job-service-card.is-selected,
.fx-job-service-card[aria-pressed="true"] {
    border-color: var(--fx-gold);
    background: #fff9ed;
    box-shadow: 0 18px 45px rgba(245, 180, 0, .18);
}

/*--------------------------------------------------------------
# Icon
--------------------------------------------------------------*/
.fx-job-service-card__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    color: #2d3436;
}

.fx-job-service-card__icon svg {
    width: 52px;
    height: 52px;
}

.fx-job-service-card__icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

/*--------------------------------------------------------------
# Title
--------------------------------------------------------------*/
.fx-job-service-card__title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--fx-navy);
    text-align: center;
}

/*--------------------------------------------------------------
# Other Card
--------------------------------------------------------------*/
.fx-job-service-card--other {
    border-style: dashed;
}

.fx-job-service-card--other .fx-job-service-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff4df;
    color: var(--fx-gold);
    font-size: 2rem;
    font-weight: 700;
}

/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/
.fx-job-search {
    width: 100%;
    height: 60px;
    padding: 0 1.25rem;
    border: 1px solid #d9e2ec;
    border-radius: 14px;
    background: #fff;
    font-size: 1rem;
    transition: border-color .2s ease,
        box-shadow .2s ease;
}

.fx-job-search:focus {
    outline: none;
    border-color: var(--fx-gold);
    box-shadow: 0 0 0 4px rgba(245, 180, 0, .12);
}

/*--------------------------------------------------------------
# Section Spacing
--------------------------------------------------------------*/
.fx-job-service__header {
    margin-bottom: 2rem;
}

.fx-job-service__description {
    max-width: 720px;
}

.fx-job-service__search {
    margin: 2rem 0;
}

.fx-job-service__heading {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--fx-navy);
}

.service-picker__item.is-selected,
.service-picker__item[aria-pressed="true"] {
    border-color: var(--fx-gold);
    background: #fff9ed;
    box-shadow: 0 14px 35px rgba(245, 180, 0, .18);
    transform: translateY(-4px);
}

.service-picker__item:hover {
    border-color: var(--fx-gold);
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.fx-job-hero {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0 4rem;
    margin-bottom: 3rem;
    background:
        radial-gradient(circle at top right,
            rgba(255, 180, 0, .08),
            transparent 35%),
        linear-gradient(135deg,
            #081b30 0%,
            #0d2743 100%);
}

.fx-job-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .05),
            transparent 40%);
    pointer-events: none;
}

.fx-job-hero .fixquo-container {
    position: relative;
    z-index: 2;
}

/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/
.fx-job-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.fx-job-logo img {
    max-height: 58px;
    width: auto;
}

/*--------------------------------------------------------------
# Heading
--------------------------------------------------------------*/
.fx-job-service__header {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.fx-job-service__title {
    margin: 0 0 1rem;
    color: #fff;
    font-size: clamp(0.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
}

.fx-job-service__description {
    margin: 0 auto;
    max-width: 720px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.25rem;
    line-height: 1.8;
}

/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/
@media (max-width:991px) {
    .fx-job-services {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .85rem;
    }

    .fx-job-service-card {
        min-height: 155px;
        padding: 1.25rem;
    }

    .fx-job-service-card__icon svg {
        width: 46px;
        height: 46px;
    }
}

/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/
@media (max-width:767px) {
    .fx-job-services {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .75rem;
    }

    .fx-job-service-card {
        min-height: 140px;
        padding: 1rem .75rem;
        border-radius: 14px;
    }

    .fx-job-service-card__icon {
        width: 54px;
        height: 54px;
        margin-bottom: .85rem;
    }

    .fx-job-service-card__icon svg {
        width: 40px;
        height: 40px;
    }

    .fx-job-service-card__title {
        font-size: .9rem;
    }
}

/*--------------------------------------------------------------
# Small Mobile
--------------------------------------------------------------*/
@media (max-width:480px) {
    .fx-job-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fx-job-service-card {
        min-height: 145px;
    }
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width:991px) {
    .post-job-page {
        padding: 3rem 0 4rem;
    }

    .fx-job-service__title {
        font-size: 2.25rem;
    }
}

@media (max-width:767px) {
    .fx-job-header__inner {
        min-height: 72px;
    }

    .fx-job-header__logo img {
        max-height: 44px;
    }

    .post-job-page {
        padding: 2rem 0 3rem;
    }

    .fx-job-service__title {
        font-size: 2rem;
    }

    .fx-job-service__heading {
        font-size: 1.5rem;
    }

    .fx-job-service__description {
        font-size: 1rem;
    }
}

@media (max-width:480px) {
    .fx-job-header__inner {
        min-height: 64px;
    }

    .fx-job-search {
        height: 52px;
    }
}