.blog-post-section .top-part .featured-image{
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 25px;
}

.blog-post-section .top-part .featured-image:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: rgba(0,0,0,0.5);
}

.blog-post-section .featured-image img{
    width: 100%;
    max-height: 500px;
    border-radius: 10px;
    object-fit: cover;
}

.author-profile{
    border-radius: 50px;
    border: 2px solid #000;
    background: #FFF;
    padding: 6px 15px 6px 6px;
    gap: 15px;
    max-width: 220px;
    width: 100%;
    max-width: max-content;
}

.author-profile .author-image{
    width: 46px;
    height: 46px;
}

.blog-post-section .post-info li{
    text-transform: capitalize;
}

.blog-post-section .post-info i{
    margin-right: 10px;
    color: var(--ult-accent-color);
}

.blog-post-section .post-info a{
    text-decoration: none;
    color: var(--ult-body-color);
    transition: all 0.3s ease-in-out;
}

.blog-post-section .post-info a:hover{
    color: var(--ult-accent-color);
}

.blog-post-section .post-info .author-profile a {
    text-decoration: none;
    color: var(--ult-body-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 16.8px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.blog-post-section .post-info .author-profile a:hover {
    color: var(--ult-accent-color);
}

.author-profile .author-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-section .blog-desc{
    padding-top: 40px;
}

.blog-post-section .right-part {
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-radius: 10px;
    padding: 40px;
}

.blog-post-section .blog-desc > *:not(.wp-block-heading) {
    margin-bottom: 30px;
    max-width: 100%;
}

.blog-post-section .blog-desc ~ *{
    clear: both;
}

.share-area{
    display: flex;
    gap: 7px;
}

.share-area a {
    border: 1px solid var(--ult-accent-color);
    border-radius: 50px;
    width: 38.5px;
    height: 38.5px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.share-area svg {
    fill: var(--ult-accent-color);
    transform: scale(1.1);
    width: 15px;
    height: 13px;
}

.share-area a:hover {
    background-color: var(--ult-accent-color);
    border-color: var(--ult-accent-color);
}

.share-area a:hover svg{
    fill: #fff;
}

/* Comments area */
.comments-area{
    margin-top: 50px;
    margin-bottom: 20px;
}
.comments-area a{
    color: var(--bs-body-color);
}

.comments-area .comment-list{
    margin-top: 30px;
}

.comments-area .form-submit{
    margin-bottom: 0;
}

.comments-area .comment-meta{
    display: flex;
    gap: 20px;
}

.comments-area .comment-author{
    width: 100px;
}

.comments-area .comment-metadata{
    width: calc(100% - 120px);
    max-width: 100%;
}

.comments-area .comment-metadata .url,
    .comments-area .comment-metadata .date a{
    text-decoration: none;
}

.comments-area .comment-body{
    margin-bottom: 30px;
}

.comments-area .comment-respond {
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    margin-bottom: 50px;
}

.comments-area .comment-reply-link {
    display: flex;
    gap: 5px;
    background-color: var(--ult-accent-color);
    color: #fff;
    border-radius: 5px;
    padding: 3px 7px;
    text-decoration: none;
}

.comments-area #cancel-comment-reply-link{
    font-size: 1rem;
    margin-left: 15px;
}

.comments-area .comment-list .children{
    list-style: none;
    padding-left: 120px;
}

.comments-area .comment-error {
    color: red;
}

.related-item-area{
    padding: 80px 0px;
}

#status {
    display: none;
    position: fixed;
    top: calc( var(--wp-admin--admin-bar--height, 0px) + 115px );
    right: 40px;
    color: #52c96b;
    font-size: 14px;
    background: #fff;
    padding: 16px;
    z-index: 111;
    border: 1px solid #52c96b;
    border-radius: .375rem;
    box-shadow: rgba(0,0,0,.1)0 10px 50px;
    transition: .3s
}

@media screen and (max-width: 767px) {
    .comments-area .comment-list .children {
        padding-left: 50px;
    }
}

@media screen and (max-width: 575px) {
    .blog-post-section .left-part {
        padding: 15px;
        margin-bottom: 0px;
    }

    .blog-post-section .right-part {
        margin-bottom: 0px;
		padding: 30px 20px;
    }
	
	.comments-area .comment-respond {
		padding: 30px 20px;
	}

    .related-item-area {
        padding: 50px 0px;
    }
}