@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	font-family: arial, sans-serif;
	background: linear-gradient(147deg,#f6b323 0%, #f23b26 74%);
}

.blog-card{
	position: absolute;
	height: 570px;
	width: 95%;
	max-width:1250px;
	margin: auto;
	background: white;
	border-radius: 25px;
	box-shadow: 0 10px 50px rgba(252, 56, 56,.3);
}
.blog-card .inner-part{
	display: flex;	
	align-items: center;
	justify-content: center;
	padding: 0 25px;
	height: 560px;
}
.inner-part .img{
	height: 260px;
	width: 260px;
	overflow: hidden;
	flex-shrink: 0;
	border-radius: 20px;
	box-shadow: 2px 3px 15px #ccc;
}

.img img{
	height: 80%;
	width: 80%;
	/*object-fit: cover;*/
	margin-top: 25px;
	margin-left: 25px;
}

.content{
	padding: 0 20px 0 35px;
	width: 530px;
	margin-left: 50px;
}
.content span{
	display: block;
	color: #7b7992;
	margin-bottom: 15px;
	font-size: 22px;
	font-weight: bold;
}
.content .title{
	font-size: 30px;
	font-weight: 700;
	color: #0d0925;
	margin-bottom: 20px;
}

.content .text{
	font-size: 19px;
	color: #4e4a67;
	margin-bottom: 30px;
	line-height: 1.5em;
	text-align: justify;
}