.bigtv-csr{

	display:grid;

	grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

	gap:30px;

	max-width:1200px;

	margin:0 auto;

	padding:40px 20px;

	align-items:center;

}

.bigtv-csr-item{

	text-align:center;

	padding:20px;

}

.bigtv-csr-icon img{

	width:70px;

	height:70px;

	object-fit:contain;

	margin-bottom:18px;

}

.bigtv-csr-count{

	font-size:42px;

	font-weight:700;

	color:#d31f26;

	line-height:1.2;

	margin-bottom:8px;

}

.bigtv-csr-title{

	font-size:18px;

	font-weight:600;

	color:#333;

	margin-bottom:10px;

}

.bigtv-csr-description{

	font-size:15px;

	line-height:1.6;

	color:#777;

}

@media(max-width:768px){

	.bigtv-csr{

		grid-template-columns:repeat(2,1fr);

		gap:20px;

	}

	.bigtv-csr-count{

		font-size:32px;

	}

}

@media(max-width:480px){

	.bigtv-csr{

		grid-template-columns:1fr;

	}

}