/* ─────────────────────────────────────────────
   ICW About / Impact Hero Widget
   ───────────────────────────────────────────── */

.icw-about-hero,
.icw-about-hero * {
	box-sizing: border-box;
}
.icw-about-hero {
	position: relative;
	width: 100%;
	background: #ffffff;
	padding: 60px 0;
	overflow: visible;
}
.icw-ah-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

/* Left Content */
.icw-ah-content {
	flex: 1 1 50%;
	max-width: 580px;
}
.icw-ah-heading {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.15;
	color: #1d426d;
	margin: 0 0 20px 0;
}
.icw-ah-desc {
	font-size: 15px;
	line-height: 1.6;
	color: #444444;
	margin: 0 0 32px 0;
}

/* Dual Buttons */
.icw-ah-buttons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}
.icw-ah-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	background-color: #2b7fb9;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.25s ease;
	border: 1px solid transparent;
}
.icw-ah-btn-primary:hover {
	background-color: #1d608e;
	color: #ffffff;
}
.icw-ah-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	background-color: #ffffff;
	color: #2b7fb9;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-decoration: none;
	border-radius: 8px;
	border: 1px solid #99c6e5;
	transition: all 0.25s ease;
}
.icw-ah-btn-secondary:hover {
	background-color: #f0f7fc;
	border-color: #2b7fb9;
	color: #2b7fb9;
}

/* Right Media / Hero Image */
.icw-ah-media {
	flex: 1 1 50%;
	position: relative;
	display: flex;
	justify-content: flex-end;
}
.icw-ah-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

/* Floating Review Card */
.icw-ah-card {
	position: absolute;
	left: -40px;
	bottom: 20px;
	z-index: 5;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	padding: 18px 20px;
	max-width: 460px;
	border: 1px solid #f0f0f0;
}
.icw-ah-card-quote {
	font-size: 12px;
	line-height: 1.5;
	color: #555555;
	margin: 0 0 14px 0;
}
.icw-ah-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

/* Card User */
.icw-ah-card-user {
	display: flex;
	align-items: center;
	gap: 10px;
}
.icw-ah-card-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
}
.icw-ah-avatar-ph {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #4285f4;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
}
.icw-ah-card-name {
	font-size: 13px;
	font-weight: 600;
	color: #1d426d;
}

/* Card Badge (Google Rating) */
.icw-ah-card-badge {
	display: flex;
	align-items: center;
	gap: 8px;
}
.icw-ah-card-glogo {
	width: 24px;
	height: 24px;
	display: block;
	flex-shrink: 0;
}
.icw-ah-card-glogo svg,
.icw-ah-card-glogo img {
	width: 100%;
	height: 100%;
	display: block;
}
.icw-ah-card-rating-meta {
	display: flex;
	flex-direction: column;
}
.icw-ah-card-lbl {
	font-size: 9px;
	color: #888888;
	line-height: 1;
	margin-bottom: 2px;
}
.icw-ah-card-stars-row {
	display: flex;
	align-items: center;
	gap: 4px;
}
.icw-ah-card-stars {
	color: #f9ab00;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 1px;
}
.icw-ah-card-revcount {
	font-size: 10px;
	color: #666666;
	line-height: 1;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
	.icw-ah-container {
		flex-direction: column;
		align-items: flex-start;
	}
	.icw-ah-content,
	.icw-ah-media {
		max-width: 100%;
		width: 100%;
	}
	.icw-ah-card {
		position: relative;
		left: 0;
		bottom: 0;
		margin-top: 20px;
		max-width: 100%;
	}
}
