/* template-parts/insights/hero_featured.php */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ── Hero ─────────────────────────────────────────────────── */

.insights-hero {
	background: var(--color-white);
	padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 8vw, 9.25rem);
	display: flex;
	align-items: center;
	justify-content: center;
}

.insights-hero__inner {
	width: 100%;
	max-width: 1140px;
	margin-inline: auto;
	min-height: 328px;
	height: auto;
	padding-block: 18px;
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 121px;
}

.insights-hero__copy {
	flex: 0 1 auto;
	min-width: 0;
	max-width: 558px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.insights-hero__meta {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
	gap: 26px;
	width: 316px;
	max-width: 316px;
	height: 36px;
	min-height: 36px;
	padding: 6px 0;
	box-sizing: border-box;
}

.insights-hero__copy > h1 {
	margin: 0;
	margin-top: 25px;
	max-width: 558px;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: clamp(var(--fs-2xl), 2.5vw, 2.5rem);
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--color-text-dark);
}

.insights-hero__body {
	margin-top: 16px;
}

.insights-hero__body > p {
	margin: 0;
	max-width: 558px;
	font-family: var(--font-family);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--color-text-dark);
}

.insights-hero__meta > span {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 126px;
	height: 36px;
	padding: 0 16px;
	background: #1c1c1c;
	color: var(--color-white);
	font-family: var(--font-family);
	font-size: var(--fs-sm);
	font-weight: 500;
	line-height: var(--lh-sm);
	border-radius: 0;
}

.insights-hero__meta > span > img {
	flex-shrink: 0;
	display: block;
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.insights-hero__meta > time {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	align-self: center;
	width: 164px;
	min-height: 0;
	height: auto;
	max-height: calc(36px - 2 * 6px);
	padding: 0;
	margin: 0;
	font-family: var(--font-family);
	font-size: var(--fs-sm);
	font-weight: 400;
	line-height: var(--lh-sm);
	color: var(--color-text-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.insights-hero__readmore {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 115px;
	height: 42px;
	margin-top: 25px;
	padding: 0 16px;
	font-family: var(--font-family);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	color: var(--color-text-dark);
	text-decoration: none;
	border: 1px solid var(--color-border);
	border-radius: 2px;
	background: transparent;
	transition: border-color 0.15s ease, color 0.15s ease;
}

.insights-hero__readmore:hover {
	border-color: var(--color-text-dark);
	color: var(--color-text-dark);
}

.insights-hero__media {
	flex: 0 0 auto;
	margin: 0;
	width: 460px;
	height: 292px;
}

.insights-hero__image {
	display: block;
	width: 460px;
	height: 292px;
	object-fit: cover;
	border-radius: 2px;
}

/* Tablet */
@media (max-width: 1024px) {
	.insights-hero__inner {
		min-height: 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 32px;
	}

	.insights-hero__media {
		width: min(100%, 600px);
		height: auto;
		aspect-ratio: 460 / 292;
	}

	.insights-hero__image {
		width: 100%;
		height: 100%;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.insights-hero {
		padding: 48px 20px;
	}

	.insights-hero__inner {
		padding: 0;
		gap: 30px;
	}

	.insights-hero__copy {
		max-width: 100%;
	}

	.insights-hero__readmore {
		width: 100%;
	}

	.insights-hero__media {
		width: 100%;
		max-width: 100%;
		aspect-ratio: auto;
	}
}
