

.news-card{
	font-family:Arial, Helvetica, sans-serif;
	max-width:760px;
	margin:40px auto;
	background:#fff;
	border-radius:10px;
	overflow:hidden;
	box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.news-body{
	padding:25px;
}

.news-title{
	font-size:32px;
	font-weight:700;
	line-height:1.35;
	color:#222;
	margin-bottom:15px;
}

.news-meta{
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	gap:8px;
	font-size:14px;
	color:#777;
	margin-bottom:20px;
}

.news-meta .author{
	font-weight:600;
	color:#444;
}

.dot{
	width:4px;
	height:4px;
	background:#999;
	border-radius:50%;
	display:inline-block;
}

.reading-time{
	color:#28a745;
	font-weight:600;
}

.news-image{
	width:100%;
	border-radius:8px;
	margin-bottom:8px;
}

.caption{
	font-size:13px;
	color:#888;
	margin-bottom:25px;
}

.news-content p{
	font-size:17px;
	line-height:1.9;
	color:#333;
	text-align:justify;
	margin-bottom:22px;
}

@media(max-width:768px){

	.news-body{
		padding:18px;
	}

	.news-title{
		font-size:25px;
	}

	.news-content p{
		font-size:16px;
	}

}