h1 {
	position: relative;

	margin: 10px 0 42px;
	padding: 0 0 18px;

	max-width: 900px;

	color: var(--accent);
	font-family: var(--fire-display);
	font-size: clamp(34px, 4vw, 58px);
	font-weight: 400;
	letter-spacing: -0.015em;
	line-height: 0.95;
	text-align: left;

	border: 0;

	-webkit-text-fill-color: currentColor;
	-webkit-text-stroke: 0;
}

h1::after {
	content: "";

	position: absolute;
	left: 0;
	bottom: 0;

	width: 110px;
	height: 1px;

	background:
		linear-gradient(
			to right,
			var(--accent),
			var(--fire-accent),
			transparent
		);

	opacity: 0.8;
}

h2 {
	position: relative;

	margin: 38px 0 18px;
	padding: 0 0 12px;

	color: var(--fire-accent);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.28em;
	line-height: 1.5;
	text-transform: uppercase;

	border: 0;
}

h2::after {
	content: "";

	position: absolute;
	left: 0;
	bottom: 0;

	width: 90px;
	height: 1px;

	background:
		linear-gradient(
			to right,
			var(--fire-accent),
			var(--accent),
			transparent
		);
}

h3 {
	position: relative;

	margin: 30px 0 18px;
	padding: 0 0 11px;

	color: var(--accent);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1.45;
	text-transform: none;

	border: 0;
}

h3::after {
	content: "";

	position: absolute;
	left: 0;
	bottom: 0;

	width: 100%;
	height: 1px;

	background:
		linear-gradient(
			to right,
			var(--accent),
			var(--stecki-line) 42%,
			transparent
		);
}


@media (max-width: 760px), (max-device-width: 760px) {

	h1 {
		margin-bottom: 34px;
		padding-bottom: 16px;

		font-size: clamp(42px, 11vw, 58px);
		line-height: 1;
	}

	h1::after {
		width: 95px;
	}

	h2 {
		margin-top: 32px;

		font-size: 14px;
		letter-spacing: 0.2em;
	}

	h3 {
		margin-top: 28px;

		font-size: 18px;
		line-height: 1.5;
	}

}


@media (max-width: 480px), (max-device-width: 480px) {

	h1 {
		font-size: clamp(40px, 13vw, 54px);
	}

	h2 {
		font-size: 14px;
		letter-spacing: 0.17em;
	}

	h3 {
		font-size: 19px;
	}

}