.dr1015insight {
	/* Container wrapper, no specific styles needed */
	
}

.dr1015insight .gold-insights-section {
	background: #fff8e7;
	padding: 4rem 1rem;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #5a4a1a;
	text-align: center;
}

.dr1015insight .gold-insights-section .container {
	max-width: 1100px;
	margin: 0 auto;
}

.dr1015insight .gold-insights-section .section-title {
	font-size: 2.8rem;
	font-weight: 700;
	color: #bfa046;
	margin-bottom: 0.5rem;
}

.dr1015insight .gold-insights-section .section-subtitle {
	font-size: 1.25rem;
	margin-bottom: 3rem;
	color: #7d6f36;
}

.dr1015insight .gold-insights-section .insights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.dr1015insight .gold-insights-section .insight-card {
	background: #fff;
	border-radius: 1.5rem;
	box-shadow: 0 6px 18px rgba(191, 160, 70, 0.25);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: left;
	padding: 1.5rem 1.75rem 2rem;
}

.dr1015insight .gold-insights-section .insight-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(191, 160, 70, 0.45);
}

.dr1015insight .gold-insights-section .insight-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.dr1015insight .gold-insights-section .insight-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: #6f5a00;
}

.dr1015insight .gold-insights-section .insight-summary {
	font-size: 1rem;
	color: #4e4e4e;
	margin-bottom: 1.25rem;
	flex-grow: 1;
}

/* Icon card styles */
.dr1015insight .gold-insights-section .icon-card {
	display: flex;
	flex-direction: column; /* stack icon on top, text below */
	align-items: center; /* center horizontally */
	text-align: center; /* center text */
	gap: 1rem; /* space between icon and text */
	padding: 2rem 1.75rem 2rem;
}

.dr1015insight .gold-insights-section .icon-wrapper {
	width: 64px; /* bigger for better look */
	height: 64px;
	background-color: #fff5cc;
	border-radius: 50%;
	box-shadow: 0 0 12px rgba(191, 160, 70, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: box-shadow 0.3s ease;
	margin: 0 auto; /* center horizontally */
}

.dr1015insight .gold-insights-section .icon-card:hover .icon-wrapper {
	box-shadow: 0 0 24px rgba(191, 160, 70, 0.6);
}

/* CSS icon shapes inside icon-wrapper */
.icon-wrapper .icon-circle {
	width: 16px;
	height: 16px;
	background-color: #bfa046;
	border-radius: 50%;
	position: absolute;
	top: 14px;
	left: 16px;
}

.icon-wrapper .icon-line {
	position: absolute;
	height: 12px;
	width: 3px;
	background-color: #bfa046;
	top: 18px;
	left: 24px;
	transform-origin: bottom;
}

.icon-wrapper .icon-line.short {
	height: 7px;
	left: 19px;
	top: 20px;
	transform: rotate(45deg);
}

/* Responsive adjustments */
@media ( max-width : 600px) {
	.dr1015insight .gold-insights-section .section-title {
		font-size: 2rem;
	}
	.dr1015insight .gold-insights-section .section-subtitle {
		font-size: 1rem;
	}
	.dr1015insight .gold-insights-section .insights-grid {
		grid-template-columns: 1fr;
	}
	.dr1015insight .gold-insights-section .icon-wrapper {
		width: 48px;
		height: 48px;
		margin-bottom: 1rem;
	}
}