.av-expert-hero {
	--heh-accent: #f5b64c;
	position: relative;
	overflow: hidden;
	color: #fff;
}

.av-expert-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 470px);
	gap: clamp(36px, 6vw, 92px);
	align-items: center;
	width: min(1200px, calc(100% - 40px));
	margin: 0 auto;
}

.av-expert-hero__content {
	max-width: 690px;
}

.av-expert-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.09);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: uppercase;
}

.av-expert-hero__badge i {
	color: var(--heh-accent);
	font-size: 15px;
}

.av-expert-hero__title {
	max-width: 760px;
	margin: 27px 0 22px;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(44px, 5.2vw, 68px);
	font-weight: 800;
	line-height: 0.94;
	letter-spacing: 0;
}

.av-expert-hero__description {
	max-width: 710px;
	margin: 0;
	font-size: 18px;
	line-height: 1.65;
}

.av-expert-hero__credential {
	max-width: 680px;
	margin-top: 32px;
	padding-left: 17px;
	border-left: 2px solid var(--heh-accent);
	font-size: 14px;
	line-height: 1.55;
}

.av-expert-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 40px;
}

.av-expert-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 14px 27px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.av-expert-hero__button:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
	color: inherit;
}

.av-expert-hero__button--primary {
	background: var(--heh-accent);
	color: #06181c;
}

.av-expert-hero__button--secondary {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.38);
}

.av-expert-hero__button i {
	font-size: 17px;
	line-height: 1;
}

.av-expert-hero__media {
	position: relative;
	width: min(100%, 470px);
	justify-self: end;
}

.av-expert-hero__image-card {
	position: relative;
	overflow: hidden;
	aspect-ratio: 0.8;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 20px;
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.2);
	background: rgba(255, 255, 255, 0.11);
}

.av-expert-hero__image-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.av-expert-hero__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 470px;
	padding: 28px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 10px, transparent 10px 20px);
	color: rgba(255, 255, 255, 0.86);
	font-size: 15px;
	font-weight: 700;
	text-align: center;
}

.av-expert-hero__mini-card {
	position: absolute;
	left: -22px;
	bottom: -20px;
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 205px;
	padding: 15px 20px;
	border-radius: 16px;
	background: #fff;
	color: #274653;
	box-shadow: 0 20px 54px rgba(5, 44, 47, 0.2);
}

.av-expert-hero__mini-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 41px;
	width: 41px;
	height: 41px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--heh-accent) 20%, #fff);
	color: #082b31;
}

.av-expert-hero__mini-card strong,
.av-expert-hero__mini-card small {
	display: block;
	line-height: 1.25;
}

.av-expert-hero__mini-card strong {
	font-size: 12px;
	font-weight: 800;
}

.av-expert-hero__mini-card small {
	margin-top: 2px;
	font-size: 11px;
}

@supports not (background: color-mix(in srgb, #000 50%, #fff)) {
	.av-expert-hero__mini-icon {
		background: #fff1d9;
	}
}

@media (max-width: 1024px) {
	.av-expert-hero__inner {
		grid-template-columns: 1fr;
	}

	.av-expert-hero__content,
	.av-expert-hero__media {
		max-width: 760px;
		justify-self: start;
	}

	.av-expert-hero__media {
		width: min(100%, 470px);
	}
}

@media (max-width: 767px) {
	.av-expert-hero__inner {
		width: min(100% - 28px, 560px);
		gap: 32px;
	}

	.av-expert-hero__badge {
		border-radius: 18px;
		font-size: 11px;
		line-height: 1.35;
		white-space: normal;
	}

	.av-expert-hero__title {
		margin-top: 22px;
		font-size: 39px;
		line-height: 1;
	}

	.av-expert-hero__description {
		font-size: 16px;
		line-height: 1.65;
	}

	.av-expert-hero__credential {
		margin-top: 24px;
	}

	.av-expert-hero__buttons {
		margin-top: 30px;
	}

	.av-expert-hero__button {
		width: 100%;
		min-height: 52px;
		padding-right: 18px;
		padding-left: 18px;
	}

	.av-expert-hero__image-card {
		aspect-ratio: 0.86;
	}

	.av-expert-hero__placeholder {
		min-height: 390px;
	}

	.av-expert-hero__mini-card {
		position: relative;
		left: auto;
		bottom: auto;
		width: calc(100% - 28px);
		margin: -48px auto 0;
	}
}
