/**
 * Awards Badges — hq-blue hero strip, large headline, elevated badge cards.
 */
.awards-badges-section {
	--awards-bg: rgb(6, 3, 141);
	--awards-accent-orange: #fc4c02;
	--awards-accent-lime: #7ee100;
	position: relative;
	width: 100%;
	overflow: hidden;
	background-color: var(--awards-bg);
	color: #fff;
}

.awards-badges-section::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 80% 55% at 50% 0%, rgb(255 255 255 / 0.08), transparent 55%),
		radial-gradient(ellipse 60% 40% at 100% 100%, rgb(126 225 0 / 0.06), transparent 50%),
		radial-gradient(ellipse 50% 35% at 0% 100%, rgb(252 76 2 / 0.07), transparent 45%);
}

.awards-badges-section__inner {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	max-width: 90rem;
	margin-inline: auto;
	padding: 2.5rem 1.25rem 2.25rem;
}

.awards-badges-section__header {
	max-width: 70.5em;
	margin: 0 auto 0.5rem;
	text-align: center;
	font-size: clamp(1.75rem, 4.2vw, 2.75rem);
	line-height: 1.18;
	letter-spacing: -0.02em;
}

.awards-badges-section__header h2,
.awards-badges-section__title {
	margin: 0;
	font-weight: 500;
	color: #fff;
}

.awards-badges-section__header h2 {
	font-size: inherit;
	line-height: inherit;
}

.awards-badges-section__header img,
.awards-badges-section__title img {
	display: inline-block;
	vertical-align: middle;
	width: auto;
	height: 1.05em;
	margin: 0 0.15em;
}

.awards-badges-section__header span[style*="color"],
.awards-badges-section__header .awards-badges-section__accent {
	color: var(--awards-accent-orange);
}

.awards-badges-section__header .awards-badges-section__accent--lime,
.awards-badges-section__header span[style*="#7ee100"],
.awards-badges-section__header span[style*="7ee100"] {
	color: var(--awards-accent-lime);
}

.awards-badges-section__list {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 1.5rem 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.awards-badges-section__item {
	display: flex;
	flex: 0 1 auto;
}

.awards-badges-section__card {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width: 10.5rem;
	min-height: 7.5rem;
	padding: 1.35rem 1.75rem;
	border-radius: 1.125rem;
	background: rgb(255 255 255 / 0.06);
	border: 1px solid rgb(255 255 255 / 0.16);
	box-shadow:
		0 1px 0 rgb(255 255 255 / 0.08) inset,
		0 1.25rem 2.5rem rgb(0 0 0 / 0.12);
	backdrop-filter: blur(6px);
	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.35s ease,
		background 0.35s ease,
		box-shadow 0.35s ease;
}

.awards-badges-section__item:nth-child(2) .awards-badges-section__card {
	transition-delay: 0.05s;
}

.awards-badges-section__item:nth-child(3) .awards-badges-section__card {
	transition-delay: 0.1s;
}

.awards-badges-section__item:hover .awards-badges-section__card,
.awards-badges-section__card:focus-within {
	transform: translateY(-0.35rem);
	background: rgb(255 255 255 / 0.1);
	border-color: rgb(255 255 255 / 0.28);
	box-shadow:
		0 1px 0 rgb(255 255 255 / 0.12) inset,
		0 1.75rem 3rem rgb(0 0 0 / 0.18);
}

.awards-badges-section__badge {
	display: block;
	width: auto;
	height: auto;
	max-height: 5.25rem;
	max-width: 10.5rem;
	object-fit: contain;
	filter: drop-shadow(0 0.35rem 0.75rem rgb(0 0 0 / 0.2));
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.awards-badges-section__item:hover .awards-badges-section__badge {
	transform: scale(1.04);
}

.awards-badges-section__card picture {
	display: flex;
	align-items: center;
	justify-content: center;
}

.awards-badges-section__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
	border-radius: inherit;
}

.awards-badges-section__link:focus-visible {
	outline: 2px solid rgb(255 255 255 / 0.55);
	outline-offset: 3px;
}

@media (min-width: 48rem) {
	.awards-badges-section__inner {
		padding: 3rem 1.25rem 2.75rem;
	}

	.awards-badges-section__header {
		margin-bottom: 0.65rem;
		font-size: clamp(2.25rem, 4.8vw, 3.75rem);
		line-height: 1.12;
	}

	.awards-badges-section__list {
		gap: 2rem 2.75rem;
	}

	.awards-badges-section__card {
		min-width: 12.5rem;
		min-height: 9rem;
		padding: 1.65rem 2.1rem;
		border-radius: 1.35rem;
	}

	.awards-badges-section__badge {
		max-height: 7rem;
		max-width: 13.5rem;
	}
}

@media (min-width: 64rem) {
	.awards-badges-section__header {
		font-size: clamp(2.5rem, 3.8vw, 4rem);
	}

	.awards-badges-section__badge {
		max-height: 7.75rem;
		max-width: 15rem;
	}
}

@media (max-width: 39.9375rem) {
	.awards-badges-section__list {
		flex-direction: column;
		align-items: center;
	}

	.awards-badges-section__card {
		width: min(100%, 18rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	.awards-badges-section__card,
	.awards-badges-section__badge {
		transition: none;
	}

	.awards-badges-section__item:hover .awards-badges-section__card {
		transform: none;
	}
}
