.live-blog{
    max-width:850px;
    margin:auto;
    background:#fff;
}

.live-header{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:18px;
    font-weight:bold;
    color:#e60000;
    margin-bottom:15px;
}

.live-dot{
    width:12px;
    height:12px;
    background:red;
    border-radius:50%;
    animation:blink 1s infinite;
}

@keyframes blink{
    50%{
        opacity:.3;
    }
}

.updated-time{
    color:#666;
    font-size:14px;
    margin:10px 0 30px;
}

.timeline{
    position:relative;
    padding-left:35px;
}

.timeline:before{
    content:"";
    position:absolute;
    left:9px;
    top:0;
    bottom:0;
    width:3px;
    background:#ddd;
}

.live-item{
    position:relative;
    margin-bottom:35px;
}

.live-item:before{
    content:"";
    position:absolute;
    left:-30px;
    top:10px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:red;
    border:3px solid #fff;
    box-shadow:0 0 0 2px red;
}

.time{
    font-size:13px;
    font-weight:bold;
    color:#888;
    margin-bottom:8px;
}

.content{
    background:#fafafa;
    padding:18px;
    border-radius:8px;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.content h3{
    margin:0 0 10px;
    font-size:22px;
}

.content p{
    margin:0;
    line-height:1.7;
    font-size:17px;
}

.utf_post_title-area h2{
    line-height:28px;
}

p img{
    width: 100%; height:auto;
}

.utf_sub_title{
    font-size:17px !important;
    color: #403a3a;
    font-weight: 500;
}

.utf_post_meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.meta-left{
    display: inline-block;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.meta-right{
    margin-left:auto;
}

.whatsapp-channel-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#25D366;
    color:#fff;
    padding:8px 16px;
    border-radius:5px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.whatsapp-channel-btn:hover{
    background:#1da851;
    color:#fff;
}

.whatsapp-channel-btn i{
    font-size:18px;
}

.youtube-subscribe-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#FF0000;
    color:#fff;
    padding:8px 18px;
    border-radius:5px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s ease;
    box-shadow:0 2px 6px rgba(0,0,0,.15);
}

.youtube-subscribe-btn:hover{
    background:#cc0000;
    color:#fff;
    text-decoration:none;
    transform:translateY(-1px);
}

.youtube-subscribe-btn i{
    font-size:18px;
}
@media (max-width:576px){
    .utf_post_meta{
        flex-direction:column;
        align-items:flex-start;
    }

    .meta-right{
        margin-left:0;
    }
}

.video-responsive {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-responsive iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
} 

.author-section {
    max-width: 1140px;
    margin: 0 auto;
}

.author-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 55px 25px 25px;
    background: #f3f3f3;
    border-radius: 12px;
    min-height: 220px;
    overflow: hidden;
}


/* =========================
    TITLE
========================== */

.author-label {
    position: absolute;
    top: 5px;
    left: 0;
    background: #e52b2f;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    padding: 11px 25px 11px 18px;
    border-radius: 0 5px 5px 0;
    z-index: 2;
}

/* Small triangle */
.author-label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    border-top: 10px solid #b71f23;
    border-left: 10px solid transparent;
}


/* =========================
    AUTHOR IMAGE
========================== */

.author-image {
    flex: 0 0 100px;
}

.author-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}


/* =========================
    CONTENT
========================== */

.author-content {
    flex: 1;
    padding-right: 70px;
}

.author-name {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
    color: #20242a;
    margin-bottom: 8px;
}

.author-description {
    font-size: 17px;
    line-height: 1.7;
    color: #34373c;
    overflow-y: auto;
    max-height: 150px;
}

.author-description strong {
    font-weight: 800;
    color: #20242a;
}

.read-more {
    display: inline-block;
    margin-top: 12px;
    color: #c93838;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
}

.read-more:hover {
    text-decoration: underline;
}


/* ===== SOCIAL ICONS===== */

.author-social {
    position: absolute;
    top: 28px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-social a {
    color: #222;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease;
}

.author-social a:hover {
    color: #e52b2f;
    transform: translateY(-2px);
}


/* =========================
    TABLET
========================== */

@media (max-width: 768px) {

    body {
        padding: 12px;
    }

    .author-box {
        gap: 18px;
        padding: 70px 20px 25px;
    }

    .author-content {
        padding-right: 0;
    }

    .author-description {
        font-size: 15px;
    }

    .author-social {
        top: 22px;
        right: 20px;
    }

}


/* =========MOBILE======== */

@media (max-width: 576px) {

    .author-box {
        display: block;
        padding: 85px 18px 20px;
        text-align: center;
    }

    .author-label {
        top: 15px;
        font-size: 15px;
        padding: 10px 18px;
    }

    .author-social {
        top: 20px;
        right: 18px;
        gap: 15px;
    }

    .author-social a {
        font-size: 18px;
    }

    .author-image {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

    .author-image img {
        width: 90px;
        height: 90px;
    }

    .author-name {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .author-description {
        font-size: 14px;
        line-height: 1.7;
        -webkit-line-clamp: 3;
    }

    .read-more {
        margin-top: 10px;
        font-size: 15px;
    }

}


/* =======SMALL MOBILE===== */

@media (max-width: 380px) {

    .author-label {
        font-size: 13px;
    }

    .author-social {
        gap: 10px;
    }

    .author-name {
        font-size: 17px;
    }

}

.author-image {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
}

.author-image img,
.author-initials {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.author-image img {
    object-fit: cover;
    display: block;
}

.author-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e52b2f;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

/* News Single
================================================== */
.single-post .utf_post_title {
	line-height: 38px;
	padding: 15px 0 8px 0;
	margin: 0;
}
.single-post p {
	font-size: 17px;
    line-height: 1.8;
    font-family: "Noto Sans Devanagari", Arial, sans-serif;
    font-weight: 400;
    color: #333;
    margin: 0 0 22px;
    letter-spacing: 0.1px;
}
.utf_post_content-area {
	margin: 20px 0;
}
.post-featured-image, .post-media.post-video, .post-media.post-audio {
	margin-bottom: 30px;
}
.entry-content h3 {
	margin: 0;
	padding: 10px 0;
	font-size: 22px;
	line-height: 30px;
}
.tags-area {
	margin: 20px 0;
}
.post-tags>span {
	background: #1c1c1c;
	color: #fff;
	font-size: 12px;
	padding: 3px 6px;
	font-weight: 600;
	border-radius:4px;
	text-transform: uppercase;
	margin-right: 5px;
}
.post-tags a {
	color:#626262;
	border: 1px solid #eeeeee;
	font-weight: 600;
	padding: 3px 8px;
	display: inline;
	list-style: none;
	margin-right: 5px;
	border-radius:4px;
	text-transform:uppercase;
	text-align: center;
	font-size: 12px;
}
.post-tags a:hover {
	background: #ec0000;
	color: #fff;
	border: 1px solid transparent;
}
.share-items {
	border: 1px solid #dedede;
	border-radius: 0;
	background: none;
	padding: 10px;
	width: 100%;
	margin: 2px 0px 20px;
	border-radius:4px;
	display: inline-block;
}
.post-social-icons>li {
	display: inline-block;
	padding: 10px 12px;
	color: #fff;
	background: #1c1c1c;
	font-size: 12px;
	font-weight:600;
	text-transform:uppercase;
	margin-right: 8px;
	border-radius:4px;
}

.post-social-icons>li:hover{
    background-color: rgba(0, 0, 0, 0.15);
}

.post-social-icons a {
	color: #fff;
	text-align: center;
}
.post-social-icons a i {
	border-right: 1px solid rgba(255, 255, 255, 0.5);
	margin-right: 5px;
	padding-right: 8px;
	font-size: 14px;
	line-height: 12px;
}

.post-social-icons a:hover{
    text-decoration: none;
    color: #fff;
}

.post-social-icons>li.facebook {
	background: #1877F2;
}
.post-social-icons>li.twitter {
	background: #000000;
}
.post-social-icons>li.gplus {
	background: #c53942;
}
.post-social-icons>li.pinterest {
	background: #ce222b;
}
.post-social-icons>li.whatsapp {
	background: #22ce98;
}
.post-social-icons>li.telegram {
	background: #24A1DE;
}
.post-navigation {
	display: inline-block;
	margin: 0 0 40px;
	width:100%;
}
.single-post .post-featured-image img{
	width:100%;
}
.post-navigation span:hover, .post-navigation h3:hover {
	color: #EC0001;
}
.post-navigation .post-previous, .post-navigation .post-next {
	padding: 0 40px;
	width: 50%;
	border-left: 1px solid #e7e7e7;
	border-right: 1px solid #e7e7e7;
	display: table-cell;
	position: relative;
	vertical-align: middle;
}
.post-navigation i {
	margin: 0 5px;
}
.post-navigation span {
	font-size: 14px;
	color: #8a8a8a;
	margin-bottom: 10px;
}
.post-navigation .post-previous {
	text-align: left;
	float: left;
	border-left: 0 none;
	border-right: 0 none;
	padding: 0 40px 0 0;
}
.post-navigation .post-next {
	text-align: right;
	float: left;
	border-right: 0 none;
	padding: 0 0 0 40px;
}
.post-navigation h3 {
	font-size: 16px;
	margin: 8px 0 0;
}
.author-box {
	background:#f7f7f7;
	border:1px solid #f2f2f2;
	padding: 20px;
	margin: 0 0 40px;
	display: inline-block;
	border-radius:4px;
}
.author-img img {
	margin-right: 25px;
	width: 100px;
	height: 100px;
	border-radius: 80px;
	overflow-x: hidden;
	border: 5px solid rgba(0, 0, 0, 0.1);
}
.author-url a {
	color: #1c1c1c;
	font-size: 13px;
}
.author-info h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 18px;
	display: inline-block;
}
.author-info p{
	font-size: 15px;
	line-height: 26px;
	font-weight: 500;
	color: #6c6c6c;
	margin-bottom:0;
}
.authors-social a {
	color: #999;
	margin-left: 10px;
}
.authors-social span{
	font-weight:600;
}
.author-counter span {
	background: #1c1c1c;
	color: #fff;
	font-size: 12px;
	padding: 2px 8px;
}
.related-posts #utf_latest_news_slide .owl-stage-outer {
	height: 240px;
	margin-bottom: 20px;
}
.comments-area {
	margin: 40px 0;
}
.comments-list .comment-content {
	margin:10px 0 15px 0;
}
.comments-list .comment-content p{
	font-size: 15px;
	line-height: 26px;
	font-weight: 500;
	color: #6c6c6c;
}
.comments-list .comment-reply {
	font-weight: 700;
	background:#ec0000;
	border: 1px solid #ec0000;
	color: #ffffff;	
	padding:3px 10px;
	text-transform:uppercase;
	border-radius:4px;
	font-size:12px;
}
.comments-list .comment-reply:hover {
	background:#272d33;
	border: 1px solid #272d33;
	color: #ffffff;
}
.comments-counter {
	font-size: 18px;
}
.comments-counter a {
	color: #323232;
}
.comments-list {
	list-style: none;
	margin: 0;
	padding: 20px 0;
}
.comments-list .comment {
	background:#f7f7f7;
	border:1px solid #f2f2f2;
	padding:20px;
	border-radius:6px;
	margin-bottom: 30px;
}
.comments-list .comment.last {
	margin-bottom: 0;
}
.comments-list img.comment-avatar {
	width: 84px;
	height: 84px;
	margin-right: 30px;
	border-radius:50px;
	border: 3px solid rgba(0, 0, 0, 0.1);
}
.comments-list .comment-body {
	margin-left: 115px;
}
.comments-list .comment-author {
	margin-bottom: 0;
	margin-top: 0;
	font-weight: 700;
	font-size: 16px;
	color: #303030;
}
.comments-list .comment-date {
	color: #959595;
	margin-bottom: 5px;
	font-size: 13px;
	font-weight:600;
}
.comments-reply {
	list-style: none;
	margin: 0 0 0 70px;
}
.comments-form {
	margin-bottom: 0;
}
.comments-form .title-normal {
	margin-bottom: 40px;
	position:relative;
}
.comments-form h3.title-normal:before {
    background:#ec0000;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
	border-radius:30px;
    margin: 8px 0 10px;
    position: absolute;
    bottom: -20px;
    width: 40px;
}
.comments-form .comments-btn {
	margin-top: 10px;
	font-size: 14px;
	width:100%;
	border-radius: 4px;
}

@media screen and (max-width: 500px) {
	.ctn-preloader .animation-preloader .spinner {
		height: 5em;
		width: 5em;
	}
	.ctn-preloader .animation-preloader .txt-loading {
		font-size: 2em;
	}
	.single-post p {
		font-size: 20px;
		line-height:1.5;
		font-weight: 400;
	}

	.entry-content iframe{
		width: 100%;
		height: 300px;
	}
}