.single-jobs {
    position: relative;
    margin-bottom: clamp(64px, 6vw, 104px);
    .intro-jobs {
        background: var(--minimal);
        border-radius: clamp(24px, 2vw, 32px);
        padding: clamp(24px, 2vw, 32px) clamp(16px, 2vw, 32px);
    }
    .thumbnail-job-img {
        position: relative;
        img {
            width: 100%;
            border-radius: 40px;
        }
    }
    .single-title {
        margin-bottom: clamp(18px, 2vw, 24px);
    }
    .short-desc {
        font-size: 16px;
        color: #707070;
        line-height: 32px;
    }
    .share-border {
        border: 1px solid #70707033;
        padding: 12px;
        margin-block: 16px;
        border-radius: 18px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        .icon-share {
            width: 32px;
            height: 32px;
            color: var(--color2);
            background: white;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
    }
    .shape-wrapper {
        display: flex;
        gap: clamp(16px,2vw,24px);
        align-items: center;
        & .copy-btn,
        & a {
            width: clamp(24px, 3vw, 32px);
            height: clamp(24px, 3vw, 32px);
            font-size: clamp(24px, 2vw, 28px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--black);
            transition: 0.4s;
            position: relative;
            cursor: pointer;
            &:hover {
                color: var(--color2);
            }
        }
    }
    .grid-job {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
        margin-top: 24px;
        li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #70707033;
            padding: 18px;
            border-radius: 18px;
            span {
                font-size: 14px;
                font-family: var(--SemiBold);
                color: #707070;
            }
            p {
                font-size: 16px;
                font-family: var(--Medium);
                color: var(--black);
                text-align: left;
            }
        }
    }
    .mobile-title {
        display: flex;
        flex-direction: column;
        margin-bottom: 16px;
        align-items: center;
        text-align: center;
    }
}
@media only screen and (min-width: 992px) {
    .single-jobs {
        .shape-wrapper {
            gap: 12px;
        }
        .short-desc {
            padding-top: 18px;
            margin-top: 18px;
            border-top: 1px solid #70707066;
        }
        .grid-job {
            grid-template-columns: repeat(2, 1fr);
        }
        .c-btn {
            justify-content: flex-start;
        }
    }
}