.dr1017insight {
	padding: 60px 20px;
	background: linear-gradient(to bottom, #fffaf5, #fff3e0);
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
	text-align: center;
}

.insight-title {
	font-size: 2.2rem;
	color: #e65100;
	margin-bottom: 10px;
	font-weight: 700;
}

.insight-subtitle {
	font-size: 18px;
	color: #6d4c41;
	margin-bottom: 40px;
}

.insight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	max-width: 1100px;
	margin: 0 auto;
}

.insight-card {
	background: #ffffff;
	padding: 25px 20px;
	border-radius: 18px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.insight-card i {
	font-size: 36px;
	color: #ff9800;
	margin-bottom: 15px;
}

.insight-card h3 {
	font-size: 18px;
	font-weight: 600;
	color: #bf360c;
	margin-bottom: 10px;
}

.insight-card p {
	font-size: 15px;
	color: #5d4037;
}

/* Mobile responsive */
@media ( max-width : 480px) {
	.insight-title {
		font-size: 1.6rem;
	}
	.insight-subtitle {
		font-size: 16px;
	}
	.insight-card {
		padding: 20px 15px;
	}
	.insight-card i {
		font-size: 30px;
	}
}