.page-template-template-job .col-12.col-sm-10.col-lg-8 .sec-title {
    gap: 70px;
}
.sw--job {
    padding-top: 24px !important;
    .swiper-slide {
        cursor: pointer;
        transition: 0.4s;
        & .job-item {
            cursor: pointer;
            background: #F6F6F6;
            border-radius: clamp(12px, 2vw, 24px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding-inline: clamp(12px, 2vw, 24px);
            min-height: 180px;
            color: var(--color1);
            text-align: center;
            font-size: clamp(14px, 2vw, 18px);
            transition: 0.4s;
            & .post-image {
                position: absolute;
                top: -24px;
                & img {
                    border-radius: 8px;
                }
            }
            & .post-title {
                margin-top: 24px;
            }
        }
    }
    & .job-item:hover,
    & .job-item.active {
        background: var(--color1);
        color: var(--gray1);
    }
}
.tab-job {
    margin-top: 3rem;
    background: white;
    padding: 20px;
    border-radius: clamp(16px, 2vw, 24px);
    transition: all 0.3s ease;
    border: 1px solid #CBCED7;
    & h4 {
        color: #444859;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #CBCED7;
        font-size: clamp(16px, 2vw, 20px);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    & .job-head {
        display: flex;
        gap: 8px;
        align-items: center;
        & img {
            width: clamp(64px, 6vw, 80px);
            height: clamp(64px, 6vw, 80px);
            border-radius: 8px;
        }
    }
    & .job-body {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-block: 24px;
        & p {
            display: flex;
            align-items: center;
            gap: 8px;
        }
    }
    & #job-tasks {
        list-style: disc;
        padding-right: 16px;
        & li {
            margin-bottom: 8px;
        }
    }
    & .job-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        & .tag {
            background: #F3F5F6;
            color: black;
            border-radius: 8px;
            padding: 4px 10px;
            font-size: 12px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: fit-content;
            padding-inline: 8px;
            font-family: var(--Medium);
        }
    }
}
.tab-job h2 {
    margin-bottom: .75rem;
    color: #000;
}
.tab-job ul {
    list-style: disc;
    padding-right: 1.5rem;
}
.tab-job li {
    margin-bottom: 0.5rem;
}
.tag-empty {
    color: #777;
    font-style: italic;
}
.job-form {
    & .title-form {
        width: 100%;
        margin-bottom: 24px;
    }
    & .form-row {
        gap: 32px 16px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin-block: clamp(32px, 4vw, 64px);
        & .form-group {
            width: -webkit-fill-available;
        }
    }
    & textarea,
    & input {
        border: 1px solid #aeaeae;
        width: -webkit-fill-available;
        min-height: 100%;
    }
}
@media only screen and (min-width: 768px) {
    .job-form .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .job-form .form-group:nth-child(7) {
        grid-column: span 2;
    }
}
@media only screen and (min-width: 992px) {
    .job-form .form-row {
        grid-template-columns: repeat(3, 1fr);
    }
    .job-form .form-group:nth-child(7) {
        grid-column: span 3;
    }
}