.arow-wrapper {
	color: var( --arow-text-color, #0C0909 );
	padding: 40px 20px;
	box-sizing: border-box;
}

.arow-wrapper * {
	box-sizing: border-box;
}

.arow-container {
	max-width: 80%;
	margin: 0 auto;
	text-align: center;
}

.arow-eyebrow {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 1.5px;
	margin-bottom: 10px;
	color: var( --arow-text-color, #0C0909 );
}

.arow-title {
	font-size: 32px;
	line-height: 1.2;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 10px;
	color: var( --arow-text-color, #0C0909 );
}

.arow-subtitle {
	font-size: 16px;
	margin: 0;
	color: var( --arow-text-color, #0C0909 );
}

.arow-divider {
	width: 44px;
	height: 2px;
	background-color: currentColor;
	margin: 22px auto 44px;
}

.arow-grid {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	row-gap: 48px;
	column-gap: var( --arow-gap, 60px );
}

/* Tablet: 2 x 2 */
@media ( min-width: 600px ) {
	.arow-grid {
		grid-template-columns: repeat( 2, 1fr );
	}
}

/* Desktop: 4 in a row */
@media ( min-width: 1024px ) {
	.arow-grid {
		grid-template-columns: repeat( 4, 1fr );
	}
}

.arow-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: var( --arow-text-color, #0C0909 );
}

/* Fixed, centered icon box so icons with different proportions
   (drop, clock, ruler, gear, ...) all line up on the same baseline. */
.arow-icon {
	width: var( --arow-icon-size, 48px );
	height: var( --arow-icon-size, 48px );
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
}

.arow-icon img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

/* Reserve space for up to 2 lines so labels stay aligned across
   columns even when one value is longer than the others. */
.arow-value {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 4px;
	min-height: 2.4em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.arow-label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}

.arow-text {
	font-size: 14px;
	line-height: 1.5;
	opacity: 0.85;
}
