.afd-wrapper {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 60px;
	width: 100%;
}

.afd-content-col {
	flex: 1;
	max-width: 45%;
}

.afd-image-col {
	flex: 1.2;
	width: 100%;
}

.afd-heading {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 42px;
	line-height: 1.2;
	color: #1a1a1a;
	margin: 0 0 30px 0;
}

.afd-description {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.6;
	color: #4a4a4a;
}

.afd-description p {
	margin-bottom: 24px;
}

.afd-description p:last-child {
	margin-bottom: 0;
}

.afd-image-container {
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	background-color: #f5f6f8;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.afd-image-container img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* Fallback Dashboard Placeholder Styles */
.afd-dashboard-placeholder {
	padding: 20px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-family: sans-serif;
	min-height: 350px;
	display: flex;
	flex-direction: column;
}

.afd-dash-header {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.afd-dash-pill {
	background: #f0f2f5;
	padding: 6px 12px;
	border-radius: 15px;
	font-size: 11px;
	color: #555;
	font-weight: 600;
}

.afd-dash-pill:first-child {
	background: #3b82f6;
	color: white;
}

.afd-dash-body {
	display: flex;
	gap: 20px;
	flex: 1;
}

.afd-dash-chart-area {
	flex: 2;
	position: relative;
	background: #fafafa;
	border-radius: 6px;
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.afd-chart-bars {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	height: 150px;
	width: 100%;
}

.afd-bar {
	width: 10%;
	background: linear-gradient(to top, #4f46e5, #818cf8);
	border-radius: 3px 3px 0 0;
	opacity: 0.8;
}

.afd-chart-line {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.afd-chart-line svg {
	width: 100%;
	height: 100%;
}

.afd-dash-sidebar {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.afd-stat-row {
	background: #f8fafc;
	padding: 10px;
	border-radius: 6px;
	border-left: 3px solid #e2e8f0;
}

.afd-stat-row:nth-child(1) { border-left-color: #ef4444; }
.afd-stat-row:nth-child(2) { border-left-color: #10b981; }
.afd-stat-row:nth-child(3) { border-left-color: #f59e0b; }

.afd-stat-label {
	display: block;
	font-size: 10px;
	text-transform: uppercase;
	color: #64748b;
	margin-bottom: 4px;
}

.afd-stat-value {
	display: block;
	font-size: 16px;
	font-weight: bold;
	color: #334155;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 1024px) {
	.afd-wrapper {
		flex-direction: column;
		gap: 40px;
	}
	
	.afd-content-col {
		max-width: 100%;
		flex: unset;
	}
	
	.afd-image-col {
		flex: unset;
	}
	
	.afd-heading {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.afd-heading {
		font-size: 28px;
		margin-bottom: 20px;
	}
	
	.afd-description {
		font-size: 16px;
	}
}