.single-title {
    margin-bottom: clamp(24px, 3vw, 40px);
    .title-heading {
        font-family: var(--SemiBold);
        font-size: clamp(24px, 3vw, 32px);
        line-height: 1.5;
    }
}
.single-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: clamp(12px, 2vw, 24px);
    flex-wrap: wrap;
}
.category_post {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(8px, 1vw, 12px);
    font-size: clamp(14px, 2vw, 16px);
    font-family: var(--Medium);
    i {
        flex: 0 0 20px;
        color: var(--color2);
        font-size: clamp(16px, 2vw, 20px);
    }
    a {
        color: #3C3D3E;
        font-family: var(--Medium);
        position: relative;
        font-size: 14px;
        &:after {
            content: "";
            width: 1px;
            height: 16px;
            background: #3C3D3E;
            border-radius: 50%;
            display: inline-flex;
            margin-right: clamp(6px, 1vw, 12px);
        }
        &:nth-last-child(1):after {
            content: none;
        }
        &:hover {
            color: var(--color2);
        }
    }
}
.shape-wrapper {
    display: flex;
    gap: 16px;
    align-items: center;
    position: relative;
}
.share-single {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 16px;
    font-family: var(--Medium);
    transition: 0.4s;
    gap: 6px;
    cursor: pointer;
    i {
        font-size: 20px;
        color: var(--color2);
        margin-bottom: 4px;
    }
    &:hover {
        color: var(--color2);
    }
}
.share-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 9999;
    & .popup-content {
        max-width: 400px;
        transform: scale(0.9);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
        position: fixed;
        top: 20%;
        background: #fff;
        border-radius: clamp(16px, 3vw, 24px);
        width: calc(100% - 32px);
        text-align: center;
        z-index: 9999;
        padding: 36px clamp(16px, 3vw, 32px) clamp(16px, 3vw, 32px);
        p {
            margin-bottom: 16px;
            font-size: 16px;
            font-family: var(--Medium);
        }
    }
    & .close-popup {
        position: absolute;
        top: clamp(12px, 2vw, 16px);
        left: clamp(12px, 3vw, 32px);
        cursor: pointer;
        font-size: 8px;
        font-weight: bold;
        width: 20px;
        height: 20px;
        color: var(--color1);
        border: 1px solid;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s;
        &:hover {
            background: var(--color1);
            color: white;
        }
    }
}
.single-share {
    justify-content: space-between;
    background: var(--minimal);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 18px;
    margin-bottom: 16px;
    .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%;
    }
    & .share-label {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(16px, 3vw, 20px);
        position: relative;
        width: clamp(26px, 3vw, 30px);
        height: clamp(26px, 3vw, 30px);
    }
    & .share-items {
        display: flex;
        gap: clamp(16px,2vw,24px);
        align-items: center;
        & .copy-btn,
        & a {
            width: 28px;
            height: 28px;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--black);
            transition: 0.4s;
            position: relative;
            cursor: pointer;
            &:hover {
                color: var(--color2);
            }
        }
    }
}
.share-popup.active {
    opacity: 1;
    pointer-events: auto;
}
.share-popup.active .popup-content {
    transform: scale(1);
    opacity: 1;
}
.post-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-family: var(--Medium);
    i {
        font-size: 20px;
        color: var(--color2);
        margin-bottom: 4px;
    }
}
.thumbnail-post-img {
    margin-block: clamp(16px, 2vw, 24px) clamp(16px, 4vw, 48px);
    img {
        border-radius: 24px;
        margin-inline: auto;
        display: block;
    }
}
.tag-post {
    flex-wrap: wrap;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    min-height: 56px;
    border-radius: 16px;
    padding: 10px clamp(12px, 2vw, 16px);
    gap: clamp(16px, 2vw, 24px);
    margin-block: 16px clamp(8px, 2vw, 24px);
    i {
        font-size: clamp(20px, 2vw, 24px);
        color: var(--color2);
    }
    span {
        font-size: clamp(14px, 2vw, 18px);
        font-family: var(--Medium);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    a {
        color: #707070;
        font-family: var(--Medium);
        position: relative;
        font-size: clamp(14px, 2vw, 16px);
        &:after {
            content: "";
            width: 1px;
            height: 16px;
            background: #707070;
            border-radius: 50%;
            display: inline-flex;
            margin-right: clamp(4px, 1vw, 8px);
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: calc(100% + clamp(2px, 1vw, 4px));
        }
        &:nth-last-child(1):after {
            content: none;
        }
    }
}
.help-heading {
    position: relative;
    margin-bottom: 12px;
    width: 100%;
    .title-sidebar {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        background: #F1F5F9;
        border-radius: 16px;
        position: relative;
        font-size: 18px;
        padding: 16px;
        font-family: var(--Medium);
        cursor: pointer;
        i {
            color: var(--color2);
            font-size: 24px;
        }
        &:before {
            content: "";
            position: absolute;
            left: 18px;
            border: solid;
            border-width: 1px 1px 0px 0;
            display: inline-block;
            padding: 4px;
            transform: rotate(135deg) translateY(50%);
            -webkit-transform: rotate(135deg) translateY(-50%);
            transition: 0.4s ease;
            top: calc(50% - 10px);
        }
        &.active:before {
            transform: translateY(-50%) rotate(-45deg);
            top: calc(50% + 3px);
        }
    }
    .accordion-container {
        display: flex;
        flex-direction: column;
        margin-top: 12px;
        background: #F1F5F9;
        border-radius: 16px;
        position: relative;
        padding: 16px;
        font-family: var(--Medium);
        cursor: pointer;
        li {
            position: relative;
        }
        a {
            position: relative;
            transition: 0.4s;
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid #70707033;
            font-size: 16px;
            font-family: var(--Medium);
            line-height: 26px;
            color: var(--black);
            display: block;
            &:hover {
                color: var(--color2);
            }
        }
        li:nth-last-child(1) a {
            padding: 0;
            margin: 0;
            border: 0;
        }
    }
}
.access-post {
    display: flex;
    flex-direction: column;
    a {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        background: #F1F5F9;
        border-radius: 16px;
        position: relative;
        font-size: 18px;
        padding: 16px;
        font-family: var(--Medium);
        cursor: pointer;
        margin-bottom: 12px;
        i {
            color: var(--color2);
            font-size: 24px;
        }
        .access-post-icon {
            width: 24px;
            height: 24px;
            flex: 0 0 24px;
            object-fit: contain;
        }
    }
}
.single-usage-sticky-column {
    align-self: flex-start;
    position: sticky;
    top: 120px;
}
.single-content {
    border: 1px solid #DFE6F0;
    border-radius: clamp(24px, 3vw, 40px);
    padding: clamp(32px, 3vw, 42px) clamp(16px, 3vw, 42px);
}
@media only screen and (min-width: 768px) {
    .single-share {
        justify-content: center;
    }
    .author-wrapper {
        &:before {
            content: "";
            width: 8px;
            height: 68%;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 0;
            background: var(
            --color1);
            border-radius: 12px 0 0 12px;
        }
        .author-box {
            flex-direction: row;
        }
        .single-share {
            flex-direction: row;
        }
    }
}
@media only screen and (max-width: 768px) {
    .new-post .title-box {
        margin-top: 48px;
        .s-title:before {
            content: "";
            width: 8px;
            height: 26px;
            display: inline-block;
            background: var(--color1);
            margin-left: 12px;
            border-radius: 2px;
        }
    }
    .share-single {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        background: #F1F5F9;
        border-radius: 16px;
        position: relative;
        font-size: 18px;
        padding: 16px;
        font-family: var(--Medium);
        cursor: pointer;
        margin-bottom: 16px;
    }
}
.sidebar-post {
    position: relative;
    .post-item-hr {
        .post-image {
            flex: 0 0 130px;
            border-radius: 10px;
        }
        .post-title a {
            font-size: 12px;
            margin-bottom: 7px;
            min-height: 42px;
        }
        .post-meta {
            .post-date {
                padding: 0;
                background: none;
                font-size: 12px;
            }
        }
    }
}
.single-post #news-related {
    background: linear-gradient(180deg, rgba(241, 245, 249, 0) 0%, #F1F5F9 100%);
    padding-bottom: clamp(60px, 4vw, 72px);
}
.tooltip-url {
    position: absolute;
    box-shadow: 0 1px 7px rgba(67, 43, 179, .1);
    background: var(--gray);
    padding: 4px;
    border-radius: 11px;
    bottom: 130%;
    min-width: 75px;
    right: 50%;
    transform: translateX(50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    white-space: nowrap;
    font-size: 13px;
    text-align: center;
    z-index: 1;
    color: var(--black)
}
.copy-btn .tooltip-url:hover {
    background: var(--color2);
    color: white;
}
.copy-btn .tooltip-url:hover:before {
    border-color: var(--color2);
    color: white;
}
.copy-btn:hover .tooltip-url {
    opacity: 1;
    visibility: visible;
}
.copy-btn .tooltip-url::before {
    content: "";
    display: block;
    position: absolute;
    right: 50%;
    bottom: -8px;
    width: 0;
    height: 0;
    box-sizing: border-box;
    border: 3px solid #000;
    border-top-color: rgb(0, 0, 0);
    border-right-color: rgb(0, 0, 0);
    border-bottom-color: rgb(0, 0, 0);
    border-left-color: rgb(0, 0, 0);
    border-top-color: rgb(0, 0, 0);
    border-right-color: rgb(0, 0, 0);
    border-bottom-color: rgb(0, 0, 0);
    border-left-color: rgb(0, 0, 0);
    border-top-color: rgb(0, 0, 0);
    border-right-color: rgb(0, 0, 0);
    border-bottom-color: rgb(0, 0, 0);
    border-left-color: rgb(0, 0, 0);
    border-color: #fff;
    transform-origin: 0 0;
    transform: rotate(-45deg) translateX(50%);
    box-shadow: -1px 1px 3px 0 rgb(106 137 204 / 19%);
    z-index: 0
}
