.single-wrap {
    margin-top: 1rem;
}

.single-content .single-title {
    font-variation-settings: "wght" 700, "wdth" 100;
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.67;
    color: #242424;
}

.single-content .single-times {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.75rem;
}

.single-content .single-times .single-time-read {
    font-variation-settings: "wght" 400, "wdth" 100;
    color: #5B5C5F;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.67;
    position: relative;
}

.single-content .single-times .single-time-read::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -0.75rem;
    transform: translateY(-50%);
    width: 1px;
    height: 1rem;
    background-color: #E9EBEE;
}

.single-content .single-times .single-publish-date {
    font-variation-settings: "wght" 400, "wdth" 100;
    color: #5B5C5F;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.67;
}

.single-content .single-image {
    margin-top: 1.25rem;
}

.single-content .single-image img {
    width: 100%;
    border-radius: 1rem;
}


.copy-btn .tooltip-url {
    position: absolute;
    box-shadow: 0 1px 7px rgba(67, 43, 179, 0.1);
    background: #fff;
    padding: 6px;
    border-radius: 4px;
    bottom: 115%;
    min-width: 75px;
    right: 50%;
    transform: translateX(50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    white-space: nowrap;
    font-size: 12px;
    direction: ltr;
    color: var(--color1);
    text-align: center;
    z-index: 1;
}

.copy-btn:hover .tooltip-url {
    opacity: 1;
    visibility: visible;
}

.li-cm-sh {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #E9EBEE;
}

.li-cm-sh .like-comment {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.li-cm-sh .video-comment-count,
.li-cm-sh .post-like-btn {
    display: flex;
    align-items: center;
    color: #5B5C5F;
    gap: 0.5rem;
}

.li-cm-sh .post-like-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    line-height: inherit;
    cursor: pointer;
    transition: color 0.3s;
}

.li-cm-sh .post-like-btn:hover:not(.is-liked):not(.is-loading) {
    color: #232323;
}

.li-cm-sh .post-like-btn.is-liked {
    cursor: default;
}

.li-cm-sh .post-like-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.li-cm-sh .post-like-btn.is-liked .post-like-icon {
    color: #F20202;
}

.li-cm-sh .post-like-btn.is-loading {
    pointer-events: none;
    cursor: wait;
}

.li-cm-sh .post-like-btn.is-loading .post-like-icon {
    display: none;
}

.li-cm-sh .post-like-spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid #E9EBEE;
    border-top-color: #5B5C5F;
    border-radius: 50%;
    animation: post-like-spin 0.7s linear infinite;
}

.li-cm-sh .post-like-btn.is-loading .post-like-spinner {
    display: block;
}

@keyframes post-like-spin {
    to {
        transform: rotate(360deg);
    }
}

.li-cm-sh .single-shares {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.li-cm-sh .single-shares a,
.li-cm-sh .single-shares div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #5B5C5F;
    font-size: 16px;
    transition: 0.3s;
    position: relative;
    cursor: pointer;
}

.single-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #E9EBEE;
}

.single-tags .tag-link {
    font-variation-settings: "wght" 500, "wdth" 100;
    color: #5B5C5F;
    font-size: clamp(12px, 1.5vw, 14px);
    line-height: 1.67;
    padding: 0.5rem 0.75rem;
    border-radius: 2rem;
    border: 1px solid #DADCDE;
    transition: 0.3s;
}

.single-tags .tag-link:hover {
    color: var(--hover);
    border-color: var(--hover);
}

.single-section-blog .section-title .main-title-heading {
    font-variation-settings: "wght" 700, "wdth" 100;
    font-size: 1.25rem;
    line-height: 2;
    color: #242424;
}

.single-sidebar .help-heading {
    border: 1px solid #DADCDE;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}

.single-sidebar .help-heading .help-heading-title {
    position: relative;
    font-variation-settings: "wght" 700, "wdth" 100;
    color: #242424;
    width: 100%;
    display: block;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.67;
}

.single-sidebar .help-heading .caticon {
    top: 0;
    color: #242424;
}

.single-sidebar .help-heading .help-heading-list {
    margin-top: 0.5rem;
}

.single-sidebar .help-heading .help-heading-list li a {
    font-variation-settings: "wght" 400, "wdth" 100;
    color: var(--text);
    font-size: clamp(12px, 1.5vw, 14px);
    line-height: 1.67;
    transition: 0.3s;
    padding-bottom: 0.75rem;
    padding-top: 0.75rem;
    position: relative;
    padding-right: 1.25rem;
    border-bottom: 1px solid #DADCDE;
}

.single-sidebar .help-heading .help-heading-list li:last-child a {
    border-bottom: none;
}

.single-sidebar .help-heading .help-heading-list li a:hover {
    color: var(--color1);
}

.single-sidebar .help-heading .help-heading-list li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--color1);
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.single-sidebar {
    position: sticky;
    top: 16px;
}

.single-sidebar-banners {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}