.fire-quote,
.fire-quote * {
	box-sizing: border-box;
}


.fire-quote {
	position: relative;
	width: 100%;
	margin: 0;
	padding:
		clamp(52px, 6vw, 78px)
		clamp(42px, 6vw, 82px)
		clamp(58px, 7vw, 88px);

	overflow: hidden;

	color: var(--stecki-text);
	background: transparent;
	border-top: 1px solid var(--stecki-line);
}

.fire-quote::before {
	content: "“";

	position: absolute;
	top: 22px;
	right: clamp(42px, 7vw, 100px);

	color: var(--stecki-line-strong);
	font-family: Georgia, serif;
	font-size: clamp(120px, 12vw, 190px);
	font-weight: 400;
	line-height: 1;

	opacity: 0.2;
	pointer-events: none;
}

.fire-quote__header {
	position: relative;
	z-index: 2;

	display: grid;
	grid-template-columns: minmax(300px, 0.75fr) minmax(360px, 1.25fr);
	align-items: end;
	gap: clamp(45px, 7vw, 100px);

	padding-bottom: 26px;

	border-bottom: 1px solid var(--stecki-line);
}

.fire-quote__heading {
	min-width: 0;
}

.fire-quote__eyebrow {
	display: block;
	margin: 0 0 9px;

	color: var(--fire-accent);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.3em;
	line-height: 1.5;
	text-transform: uppercase;
}

.fire-quote__title {
	position: relative;

	margin: 0;
	padding: 0 0 15px;

	color: var(--accent);
	font-family: var(--fire-display);
	font-size: clamp(34px, 3.4vw, 50px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.98;
	text-align: left;
	text-transform: none;

	border: 0;
}

.fire-quote__title::before {
	content: "";

	position: absolute;
	bottom: 0;
	left: 0;

	width: 64px;
	height: 1px;

	background: var(--accent);
	opacity: 0.75;
}

.fire-quote__title::after {
	content: none;
}

.fire-quote__meta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 6px 9px;

	min-width: 0;
	padding-bottom: 14px;

	color: var(--stecki-muted);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.6;
	text-align: right;
}

.fire-quote__meta strong {
	color: var(--stecki-strong-text);
	font-size: 13px;
	font-weight: 700;
}

.fire-quote__meta a {
	color: var(--accent);
	font-weight: 600;
	text-decoration: none;

	transition: color 0.2s ease;
}

.fire-quote__meta a:hover {
	color: var(--fire-accent-dark);
}

.fire-quote__meta time {
	color: var(--stecki-muted);
}

.fire-quote__text {
	position: relative;
	z-index: 2;

	max-width: 980px;
	margin: 34px 0 0;
	padding:
		3px
		0
		3px
		clamp(24px, 3vw, 38px);

	color: var(--stecki-quote-text);
	font-size: clamp(17px, 1.25vw, 19px);
	font-weight: 400;
	line-height: 1.85;

	background: transparent;
	border: 0;
	border-left: 2px solid var(--stecki-line-strong);
}

.fire-quote__text::before {
	content: "“";

	position: absolute;
	top: -14px;
	left: 13px;

	color: var(--accent);
	font-family: Georgia, serif;
	font-size: 42px;
	line-height: 1;

	opacity: 0.35;
	transform: translateX(-50%);
}

.fire-quote__text p {
	margin: 0;
}

.fire-quote__footer {
	position: relative;
	z-index: 2;

	display: flex;
	justify-content: flex-start;

	margin-top: 30px;
	padding-left: clamp(24px, 3vw, 38px);

	border: 0;
}

.fire-quote__all {
	display: inline-flex;
	align-items: center;
	gap: 12px;

	padding: 0 0 7px;

	color: var(--accent);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1.5;
	text-decoration: none;
	text-transform: uppercase;

	border-bottom: 1px solid var(--stecki-link-line);

	transition:
		color 0.2s ease,
		gap 0.2s ease,
		border-color 0.2s ease;
}

.fire-quote__all i {
	color: var(--fire-accent);
	font-size: 9px;

	transition: transform 0.2s ease;
}

.fire-quote__all:hover {
	gap: 17px;

	color: var(--fire-accent-dark);
	border-bottom-color: var(--fire-accent);
}

.fire-quote__all:hover i {
	transform: translateX(3px);
}


@media (max-width: 900px) {

	.fire-quote {
		padding:
			52px
			36px
			64px;
	}

	.fire-quote__header {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.fire-quote__meta {
		justify-content: flex-start;
		padding-bottom: 4px;

		text-align: left;
	}

}


@media (max-width: 760px), (max-device-width: 760px) {

	.fire-quote {
		padding:
			44px
			22px
			54px;
	}

	.fire-quote::before {
		top: 14px;
		right: 16px;

		font-size: 130px;
	}

	.fire-quote__header {
		gap: 20px;
		padding-bottom: 24px;
	}

	.fire-quote__eyebrow {
		margin-bottom: 9px;

		font-size: 13px;
		letter-spacing: 0.2em;
	}

	.fire-quote__title {
		padding-bottom: 17px;

		font-size: clamp(40px, 10vw, 54px);
		line-height: 1;
	}

	.fire-quote__title::before {
		width: 74px;
	}

	.fire-quote__meta {
		display: block;

		font-size: 16px;
		line-height: 1.65;
	}

	.fire-quote__meta strong {
		display: block;
		margin-bottom: 2px;

		color: var(--accent);
		font-size: 18px;
	}

	.fire-quote__meta span,
	.fire-quote__meta time {
		display: inline;
	}

	.fire-quote__text {
		max-width: none;
		margin-top: 28px;
		padding:
			4px
			0
			4px
			24px;

		font-size: clamp(18px, 4.8vw, 21px);
		line-height: 1.72;
	}

	.fire-quote__text::before {
		left: 10px;

		font-size: 38px;
	}

	.fire-quote__footer {
		margin-top: 26px;
		padding-left: 24px;
	}

	.fire-quote__all {
		font-size: 14px;
		letter-spacing: 0.12em;
	}

	.fire-quote__all i {
		font-size: 11px;
	}

}


@media (max-width: 480px), (max-device-width: 480px) {

	.fire-quote {
		padding:
			38px
			18px
			48px;
	}

	.fire-quote::before {
		right: 8px;

		font-size: 105px;
		opacity: 0.14;
	}

	.fire-quote__eyebrow {
		font-size: 12px;
	}

	.fire-quote__title {
		font-size: clamp(38px, 11vw, 50px);
	}

	.fire-quote__meta {
		font-size: 16px;
	}

	.fire-quote__meta strong {
		font-size: 19px;
	}

	.fire-quote__text {
		margin-top: 25px;
		padding-left: 20px;

		font-size: 19px;
		line-height: 1.7;
	}

	.fire-quote__footer {
		padding-left: 20px;
	}

	.fire-quote__all {
		font-size: 14px;
	}

}