/* =========================
   GLOBAL
========================= */

body{
	font-family:'Poppins',sans-serif;
	background:#f5f7fb;
	color:#111;
}

/* =========================
   NEWS SECTION
========================= */

.news-section{
	padding:60px 0;
}

/* =========================
   HEADING
========================= */

.news-heading{
	font-size:48px;
	font-weight:800;
	color:#111;
	position:relative;
	display:inline-block;
	margin-bottom:20px;
}
.txt_center{
	text-align:center;
}

.news-heading::after{
	content:"";
	position:absolute;
	left:0;
	bottom:-12px;
	width:100px;
	height:5px;
	background:linear-gradient(90deg,#ff4d4d,#c40000);
	border-radius:100px;
}

/* =========================
   NEWS CARD
========================= */

.news-card{
	display:flex;
	align-items:center;
	gap:28px;
	background:#fff;
	padding:22px;
	margin-bottom:28px;

	border:1px solid #e7e7e7;
	border-radius:22px;

	box-shadow:
		0 4px 15px rgba(0,0,0,0.04);

	transition:0.35s ease;
	position:relative;
	overflow:hidden;
}

/* TOP BORDER EFFECT */

.news-card::before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:5px;
	background:linear-gradient(90deg,#0d6efd,#00c6ff);
}

/* HOVER */

.news-card:hover{
	transform:translateY(-6px);

	box-shadow:
		0 12px 35px rgba(0,0,0,0.10);

	border-color:#d7e7ff;
}

/* =========================
   IMAGE
========================= */

.news-thumb{
	width:320px;
	flex-shrink:0;
	border-radius:18px;
	overflow:hidden;
	position:relative;
}

.news-thumb img{
	width:100%;
	height:220px;
	/*object-fit:cover;*/
	transition:0.5s;
	border-radius:18px;
}

.news-card:hover .news-thumb img{
	transform:scale(1.08);
}

/* =========================
   CONTENT
========================= */

.news-content{
	flex:1;
}

.news-content h3{
	margin-bottom:14px;
	line-height:1.4;
}

.news-content h3 a{
	text-decoration:none;
	font-size:34px;
	font-weight:800;
	color:#111;
	line-height:1.4;
	transition:0.3s;
}

.news-content h3 a:hover{
	color:#0d6efd;
}

/* DATE */

.news-date{
	display:inline-block;
	background:#eef4ff;
	color:#0d6efd;

	padding:8px 16px;
	border-radius:50px;

	font-size:13px;
	font-weight:600;

	margin-bottom:18px;
}

/* DESCRIPTION */

.news-content p{
	font-size:17px;
	line-height:1.9;
	color:#555;
	margin:0;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

	.news-card{
		flex-direction:column;
		padding:18px;
	}

	.news-thumb{
		width:100%;
	}

	.news-thumb img{
		height:250px;
	}

	.news-content h3 a{
		font-size:28px;
	}

	.news-heading{
		font-size:38px;
	}
}

@media(max-width:576px){

	.news-section{
		padding:35px 0;
	}

	.news-card{
		padding:15px;
		border-radius:18px;
	}

	.news-thumb img{
		height:200px;
	}

	.news-content h3 a{
		font-size:22px;
	}

	.news-content p{
		font-size:15px;
		line-height:1.8;
	}

	.news-heading{
		font-size:32px;
	}
}
/* READ MORE BUTTON */

.read-more-wrap{
	margin-top:20px;
	text-align:right;
}

.read-more-btn{
	display:inline-flex;
	align-items:center;
	gap:8px;

	background:linear-gradient(135deg,#0d6efd,#0056d6);
	color:#fff !important;

	padding:12px 22px;
	border-radius:50px;

	font-size:14px;
	font-weight:600;

	text-decoration:none;
	transition:0.35s;
}

.read-more-btn:hover{
	transform:translateY(-3px);
	box-shadow:0 10px 20px rgba(13,110,253,0.25);
	background:linear-gradient(135deg,#0056d6,#0d6efd);
}

.read-more-btn i{
	font-size:13px;
}

/* DATE */

.news-date{
	display:inline-flex;
	align-items:center;
	gap:8px;

	background:#eef4ff;
	color:#0d6efd;

	padding:8px 16px;
	border-radius:50px;

	font-size:13px;
	font-weight:600;

	margin-bottom:18px;
}