.single-title.main-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E2E2E2;
}

.single-title.main-title .title-heading {
    font-family: var(--main_bold);
    font-size: 1.99rem;
    line-height: 1.58;
}

.post-item-date {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.category_post {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.category_post span {
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.34;
    font-size: 15px;
    font-family: var(--main_bold);
    margin-right: 1rem;
}

.category_post a {
    color: var(--color1);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.category_post a:hover {
    color: var(--color2);
}

.category_post a:not(:last-child)::after {
    content: '';
    background-color: var(--color1);
    width: 6px;
    height: 6px;
    margin-left: 6px;
}

.socials-share {
    display: flex;
    align-items: center;
    gap: 9px;
}

.socials-share a {
    width: 26px;
    height: 26px;
    font-size: 1.125rem;
    background-color: #EFE6C2;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color3);
}

.copy-btn {
    cursor: pointer;
    position: relative;
    width: 26px;
    height: 26px;
    font-size: 1.125rem;
    background-color: #EFE6C2;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color3);
}

.copy-btn:hover,
.socials-share a:hover {
    background-color: var(--color2);
    color: #fff;
}

.copy-btn .tooltip-url {
    position: absolute;
    box-shadow: 0 1px 7px rgba(67, 43, 179, 0.1);
    background: var(--color2);
    padding: 4px 5px;
    bottom: 115%;
    min-width: 65px;
    right: 50%;
    transform: translateX(50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    white-space: nowrap;
    font-size: 14px;
    direction: ltr;
    color: #fff;
    text-align: center;
    z-index: 1;
}

.copy-btn:hover .tooltip-url {
    opacity: 1;
    visibility: visible;
}

.help-heading {
    border: 1px solid #E2E2E2;
    padding: 10px;
    margin-bottom: 1.5rem;
}

.help-heading-title {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    background-color: var(--color2);
    color: #fff;
    padding: 1rem;
}

.help-heading ul {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.5rem 0.875rem;
    gap: 1rem;
}

.help-heading ul li a {
    font-size: 15px;
}

.tag_post {
    margin: 1.5rem 0 64px;
    padding-top: 1rem;
    border-top: 1px solid #E2E2E2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag_post a {
    background-color: #F5F5F5;
    font-size: 14.5px;
    line-height: 1;
    padding: 7px 12px;
    color: var(--color3);
    transition: 0.3s;
}

.tag_post a:hover {
    color: #fff;
    background-color: var(--color2);
}

@media screen and (max-width:767.99px) {
    .single-title.main-title {
        flex-direction: column;
        padding-bottom: 0.75rem;
    }

    .single-shtim {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .category_post {
        margin: 0.75rem 0;
    }

    .thumbnail-post-img {
        margin-bottom: 1.5rem;
    }

    .widget-side-mobile.widget_media_image {
        padding-bottom: 64px;
    }

    .help-heading {
        margin-top: 1.5rem;
    }

    .tag_post {
        justify-content: center;
    }
}

@media screen and (max-width:992px) {
    .single-wrap .help-heading .caticon {
        color: #fff;
        font-size: 0.75rem;
        width: 1.5rem;
        height: 1.5rem;
        top: 30px;
        right: 1.5rem;
        left: auto;
    }

    .single-wrap .help-heading .caticon::before {
        content: "\e919";
        font-family: icomoon;
    }

    .widget-side-mobile.widget_media_image {
        display: table;
        margin: auto;
    }
}

@media screen and (min-width:768px) {
    .help-heading-title {
        font-size: 1rem;
        justify-content: center;
    }

    .help-heading ul {
        gap: 1.5rem;
    }

    .help-heading {
        margin-bottom: 0.75rem;
    }

    ul.access_item {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    ul.access_item li {
        border: 1px solid #E2E2E2;
        padding: 0.75rem;
        width: 100%;
    }

    ul.access_item li a {
        padding: 1.25rem;
        background-color: var(--color2);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        transition: 0.3s;
    }

    ul.access_item li a:hover {
        background-color: var(--color1);
    }

    .thumbnail-post-img {
        margin-bottom: 3rem;
    }

    .thumbnail-post-img img.wp-post-image {
        width: 100% !important;
    }
}

@media (min-width: 768px) {

    .section-blog {
        padding: 48px 0 0;
    }
}

@media screen and (min-width: 992px) {
    .widget_media_image img {
        width: 100%;
    }
}