

.fire-boardstats,
.fire-boardstats * {
	box-sizing: border-box;
}

.fire-boardstats {
	position: relative;

	width: 100%;
	margin: 76px 0 88px;
	padding:
		0
		clamp(34px, 5vw, 72px);

	color: var(--fire-text);

	background: transparent;
}




.fire-boardstats__header {
	display: grid;
	grid-template-columns:
		minmax(260px, 0.8fr)
		minmax(420px, 1.2fr);
	align-items: end;
	gap: clamp(48px, 7vw, 100px);

	padding-bottom: 30px;

	border-bottom: 1px solid var(--stecki-image-inner-line);
}

.fire-boardstats__heading {
	min-width: 0;
}

.fire-boardstats__eyebrow {
	display: block;
	margin-bottom: 9px;

	color: var(--fire-accent-light);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.31em;
	line-height: 1.5;
	text-transform: uppercase;
}

.fire-boardstats__title {
	margin: 0;
	padding: 0;

	color: var(--accent);
	font-family: var(--fire-display);
	font-size: clamp(42px, 4vw, 62px);
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 0.95;
	text-align: left;
	text-transform: none;

	border: 0;
}

.fire-boardstats__title::before,
.fire-boardstats__title::after {
	content: none;
}




.fire-boardstats__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));

	min-width: 0;
}

.fire-boardstats__stat {
	position: relative;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;

	min-width: 0;
	min-height: 72px;
	padding: 5px 18px;

	text-align: center;
}

.fire-boardstats__stat + .fire-boardstats__stat::before {
	content: "";

	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 0;

	width: 1px;

	background:
		linear-gradient(
			to bottom,
			transparent,
			var(--stecki-line),
			transparent
		);
}

.fire-boardstats__stat-value {
	color: var(--stecki-strong-text);
	font-family: var(--fire-display);
	font-size: clamp(29px, 2.7vw, 39px);
	font-weight: 400;
	line-height: 0.9;
}

.fire-boardstats__stat-label {
	color: var(--stecki-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.21em;
	line-height: 1.4;
	text-transform: uppercase;
}




.fire-boardstats__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: stretch;

	min-width: 0;
}




.fire-boardstats__online {
	display: grid;
	grid-template-columns:
		minmax(210px, 0.34fr)
		minmax(0, 1fr);
	gap: clamp(34px, 5vw, 76px);

	min-width: 0;
	padding:
		34px
		clamp(34px, 5vw, 64px)
		36px
		0;
}

.fire-boardstats__online-heading {
	display: flex;
	align-items: center;
	gap: 18px;

	min-width: 0;
}

.fire-boardstats__online-icon {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 38px;

	width: 38px;
	height: 38px;

	color: var(--accent);

	transform: rotate(45deg);
}

.fire-boardstats__online-icon::before {
	content: "";

	position: absolute;
	inset: 5px;

	border: 1px solid currentColor;
	opacity: 0.45;
}

.fire-boardstats__online-icon i {
	position: relative;
	z-index: 2;

	font-size: 11px;

	transform: rotate(-45deg);
}

.fire-boardstats__label {
	display: block;
	margin-bottom: 6px;

	color: var(--fire-accent-light);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.24em;
	line-height: 1.4;
	text-transform: uppercase;
}

.fire-boardstats__online-heading h3 {
	margin: 0;
	padding: 0;

	font-family: var(--fire-display);
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
	text-transform: none;

	border: 0;
}

.fire-boardstats__online-heading h3::before,
.fire-boardstats__online-heading h3::after {
	content: none;
}

.fire-boardstats__online-heading h3 a {
	color: var(--accent);
	text-decoration: none;

	transition: color 0.18s ease;
}

.fire-boardstats__online-heading h3 a:hover {
	color: var(--fire-accent-dark);
}

.fire-boardstats__online-content {
	font-weight: 400;
	line-height: 1.8;
}

.fire-boardstats__online-content a {
	font-weight: 600;
	text-decoration: none;
}




.fire-boardstats__newest {
	display: flex;
	flex-direction: column;
	justify-content: center;

	width: clamp(220px, 22vw, 310px);
	padding:
		32px
		0
		34px
		clamp(30px, 4vw, 52px);

	border-left: 1px solid var(--stecki-image-inner-line);
}

.fire-boardstats__newest-label {
	display: block;
	margin-bottom: 11px;

	color: var(--fire-accent-light);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.25em;
	line-height: 1.5;
	text-transform: uppercase;
}

.fire-boardstats__newest-copy {
	display: flex;
	flex-direction: column;
	gap: 6px;

	min-width: 0;
}

.fire-boardstats__newest-copy strong {
	color: var(--accent);
	font-family: var(--fire-display);
	font-size: 25px;
	font-weight: 400;
	line-height: 1.05;
}

.fire-boardstats__newest-copy strong a {
	color: inherit;
	text-decoration: none;
}

.fire-boardstats__newest-copy strong a:hover {
	color: var(--stecki-hover-text);
}

.fire-boardstats__newest-copy > span {
	color: var(--stecki-empty);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.6;
}



@media (max-width: 1050px) {
	.fire-boardstats__header {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.fire-boardstats__stats {
		max-width: 700px;
	}

	.fire-boardstats__body {
		grid-template-columns: 1fr;
	}

	.fire-boardstats__newest {
		width: 100%;
		padding: 24px 0 0;

		border-top: 1px solid var(--stecki-line);
		border-left: 0;
	}
}

@media (max-width: 760px), (max-device-width: 760px) {
	.fire-boardstats {
		margin: 48px 0 60px;
		padding: 0 18px;
	}

	.fire-boardstats__header {
		display: block;
		padding-bottom: 24px;
	}

	.fire-boardstats__eyebrow {
		font-size: 12px;
		letter-spacing: 0.24em;
	}

	.fire-boardstats__title {
		font-size: clamp(48px, 12vw, 64px);
		line-height: 0.98;
	}

	.fire-boardstats__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));

		margin-top: 26px;
	}

	.fire-boardstats__stat {
		min-height: 90px;
		padding: 12px 10px;
	}

	.fire-boardstats__stat:nth-child(3)::before {
		display: none;
	}

	.fire-boardstats__stat:nth-child(n+3) {
		border-top: 1px solid var(--stecki-line);
	}

	.fire-boardstats__stat-value {
		font-size: clamp(38px, 10vw, 50px);
	}

	.fire-boardstats__stat-label {
		font-size: 11px;
		letter-spacing: 0.14em;
	}

	.fire-boardstats__body {
		display: block;
	}

	.fire-boardstats__online {
		display: block;

		padding: 30px 0 28px;
	}

	.fire-boardstats__online-heading {
		margin-bottom: 20px;
	}

	.fire-boardstats__online-icon {
		flex-basis: 44px;

		width: 44px;
		height: 44px;
	}

	.fire-boardstats__label {
		font-size: 12px;
		letter-spacing: 0.18em;
	}

	.fire-boardstats__online-heading h3 {
		font-size: 34px;
	}

	.fire-boardstats__online-content {
		font-size: 17px;
		line-height: 1.7;
	}

	.fire-boardstats__newest {
		padding-top: 24px;
	}

	.fire-boardstats__newest-label {
		font-size: 12px;
		letter-spacing: 0.18em;
	}

	.fire-boardstats__newest-copy strong {
		font-size: 34px;
	}

	.fire-boardstats__newest-copy > span {
		font-size: 14px;
	}

	.fire-quote {
		padding: 28px 18px 32px;
	}

	.fire-quote__header {
		display: block;
		padding-bottom: 18px;
	}

	.fire-quote__eyebrow {
		font-size: 12px;
		letter-spacing: 0.22em;
	}

	.fire-quote__title {
		font-size: clamp(36px, 9vw, 48px);
	}

	.fire-quote__meta {
		justify-content: flex-start;

		margin-top: 14px;
		padding-bottom: 0;

		font-size: 13px;
		line-height: 1.6;
		text-align: left;
	}

	.fire-quote__text {
		max-width: none;
		margin-top: 20px;
		padding-left: 18px;

		font-size: 18px;
		line-height: 1.72;
	}

	.fire-quote__all {
		font-size: 13px;
		letter-spacing: 0.14em;
	}
}

@media (max-width: 520px), (max-device-width: 520px) {
	.fire-boardstats {
		padding: 0 16px;
	}

	.fire-boardstats__title {
		font-size: clamp(46px, 14vw, 60px);
	}

	.fire-boardstats__stats {
		grid-template-columns: 1fr 1fr;
	}

	.fire-boardstats__stat {
		min-height: 96px;
	}

	.fire-boardstats__stat-value {
		font-size: 44px;
	}

	.fire-boardstats__online-heading {
		align-items: flex-start;
	}

	.fire-boardstats__online-heading h3 {
		font-size: 32px;
	}

	.fire-boardstats__online-content {
		font-size: 18px;
		line-height: 1.72;
	}

	.fire-boardstats__newest-copy strong {
		font-size: 32px;
	}

	.fire-boardstats__newest-copy > span {
		font-size: 15px;
	}

	.fire-quote {
		padding-right: 16px;
		padding-left: 16px;
	}

	.fire-quote__title {
		font-size: clamp(36px, 11vw, 46px);
	}

	.fire-quote__meta {
		font-size: 14px;
	}

	.fire-quote__text {
		font-size: clamp(18px, 5vw, 21px);
		line-height: 1.72;
	}

	.fire-quote__all {
		font-size: 14px;
	}
}
