.article-hero {
	position: relative;
	background: var(--site-color-surface);
	--article-hero-title-size: clamp(2.25rem, 1.55rem + 1.65vw, 3rem);
	--article-hero-description-size: clamp(1rem, 0.9rem + 0.42vw, 1.25rem);
}

.article-hero__background {
	position: relative;
	overflow: hidden;
	min-height: clamp(34rem, 36.7vw, 44.075rem);
	padding-bottom: clamp(4.8rem, 5.6vw, 5.5rem);
	background-color: #3a2b1a;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.article-hero__background::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(162deg, rgba(58, 43, 26, 0.82) 0%, rgba(74, 58, 26, 0.78) 100%);
	pointer-events: none;
}

.article-hero__gradient {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(ellipse 49vw 27vw at 20.8% 33%, rgba(13, 31, 13, 0.9) 0%, rgba(13, 31, 13, 0.75) 50%, rgba(13, 31, 13, 0.15) 100%),
		linear-gradient(90deg, rgba(13, 31, 13, 0.42) 0%, rgba(13, 31, 13, 0.12) 58%, rgba(13, 31, 13, 0) 100%);
	pointer-events: none;
}

.article-hero__glow {
	position: absolute;
	right: 2.5rem;
	bottom: 0;
	z-index: 1;
	width: 18rem;
	height: 21.6rem;
	border-radius: 999px;
	background: var(--site-color-accent-10);
	filter: blur(32px);
	pointer-events: none;
}

.article-hero__wave {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	z-index: 2;
	height: clamp(3.5rem, 5.6vw, 6.7rem);
	background: url("../img/home-hero/wave.svg") center bottom / 100% 100% no-repeat;
	pointer-events: none;
}

.article-hero .container {
	position: relative;
	z-index: 3;
	width: min(100% - clamp(2rem, 3vw, 2.5rem), 1272px);
}

.article-hero__breadcrumbs {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
	padding-top: 2rem;
	font-size: var(--site-font-size-16);
	line-height: 1.48;
}

.article-hero__breadcrumbs-link,
.article-hero__breadcrumbs-separator {
	flex: 0 0 auto;
	color: var(--site-color-accent);
}

.article-hero__breadcrumbs-link {
	transition: color 0.2s ease;
}

.article-hero__breadcrumbs-link:hover {
	color: var(--site-color-accent-soft);
}

.article-hero__breadcrumbs-current {
	min-width: 0;
	max-width: min(40rem, 55vw);
	overflow: hidden;
	color: var(--site-color-text-90);
	text-overflow: ellipsis;
	white-space: nowrap;
}

.article-hero__content {
	width: min(100%, 79.5rem);
	padding-top: clamp(2rem, 2.35vw, 2.5rem);
	padding-bottom: clamp(3rem, 4.6vw, 5.5rem);
}

.article-hero__title {
	max-width: 79.5rem;
	margin: 0;
	font-family: var(--site-font-heading);
	font-size: var(--article-hero-title-size);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.021em;
	color: var(--site-color-text);
}

.article-hero__description {
	max-width: 79.5rem;
	margin: 1.5rem 0 0;
	font-size: var(--article-hero-description-size);
	line-height: 1.5;
	color: var(--site-color-text-80);
}

.article-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
	color: var(--site-color-muted);
	font-family: var(--site-font-heading);
	font-size: var(--site-font-size-14);
	font-weight: 500;
	line-height: 1.43;
}

.article-hero__category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
	color: #008236;
	background: #f0fdf4;
}

.article-hero__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	white-space: nowrap;
}

.article-hero__meta-item::before {
	content: "";
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	flex: 0 0 auto;
	background-color: currentColor;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
}

.article-hero__meta-item--date::before {
	width: 1.0625rem;
	height: 1.0625rem;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 17'%3E%3Cpath d='M11.875 2.292V.625M4.375 2.292V.625M.833 4.792h14.584M.625 6.495c0-1.762 0-2.644.363-3.318.329-.6.839-1.082 1.457-1.375.713-.344 1.647-.344 3.513-.344h4.334c1.866 0 2.8 0 3.513.344.628.301 1.137.783 1.457 1.375.363.675.363 1.557.363 3.319v4.093c0 1.763 0 2.644-.363 3.318-.329.6-.839 1.082-1.457 1.375-.713.343-1.647.343-3.513.343H5.958c-1.866 0-2.8 0-3.513-.343-.618-.294-1.128-.775-1.457-1.376-.363-.675-.363-1.556-.363-3.319V6.495Z' fill='none' stroke='black' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.article-hero__meta-item--time::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 17.5a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15Zm0-11.667V10l2.5 1.667' fill='none' stroke='black' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.article-hero__meta-item--views::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M2.5 10s2.727-5 7.5-5 7.5 5 7.5 5-2.727 5-7.5 5-7.5-5-7.5-5Zm7.5 2.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z' fill='none' stroke='black' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.article-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.5rem;
	padding-top: 1rem;
}

.article-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	min-height: 3.625rem;
	padding: 1rem 2rem;
	border-radius: var(--site-radius-button);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.48;
	letter-spacing: var(--site-letter-spacing-button);
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.article-hero__button:hover {
	transform: translateY(-0.0625rem);
}

.article-hero__button--primary {
	color: var(--site-color-text);
	background: var(--site-color-accent);
}

.article-hero__button--primary:hover {
	color: var(--site-color-text);
	background: #a96d14;
}

.article-hero__button--secondary {
	border: 1px solid var(--site-color-line-strong);
	color: var(--site-color-text);
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(4px);
}

.article-hero__button--secondary:hover {
	border-color: rgba(255, 255, 255, 0.54);
	color: var(--site-color-text);
}

.article-hero__button-icon {
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.article-hero__button-icon--phone {
	width: 1.125rem;
	height: 1.125rem;
}

@media (max-width: 991.98px) {
	.article-hero__background {
		min-height: auto;
		padding-bottom: 6.5rem;
		background-position: 58% center;
	}

	.article-hero__gradient {
		background:
			linear-gradient(180deg, rgba(13, 31, 13, 0.72) 0%, rgba(13, 31, 13, 0.38) 38%, rgba(13, 31, 13, 0.72) 100%),
			radial-gradient(circle at 24% 22%, rgba(13, 31, 13, 0.88) 0%, rgba(13, 31, 13, 0.66) 34%, rgba(13, 31, 13, 0.12) 66%);
	}
}

@media (max-width: 767.98px) {
	.article-hero__background {
		padding-bottom: 5.5rem;
		background-position: 65% center;
	}

	.article-hero__glow {
		display: none;
	}

	.article-hero__breadcrumbs {
		flex-wrap: wrap;
		gap: 0.45rem;
	}

	.article-hero__breadcrumbs-current {
		max-width: 100%;
		white-space: normal;
	}

	.article-hero__content {
		padding-top: 2rem;
	}

	.article-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.article-hero__button {
		width: 100%;
	}
}
