.paragraph {
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.625rem;
	font-family: 'Montserrat', sans-serif;
}

.h2-desktop {
	font-family: 'Montserrat', sans-serif;
	font-size: 2rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-top: 3rem;
}

.h3-desktop {
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.section-container {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.flex-row {
	display: flex;
	align-items: stretch;
	gap: 2rem;
	margin-top: 2rem;
}

.text-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.image-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.tire-image {
	height: 100%;
	width: auto;
	object-fit: contain;
	display: block;
	max-width: 100%;
}

.custom-list {
	list-style: disc;
	padding-left: 1rem;
}

.comparison-table {
	width: 100%;
	/* make bigger gap beetween table cells */
	border-collapse: separate;
	border-spacing: 0 1rem;
}
@media only screen and (max-width: 768px) {
	.flex-row {
		display: block;
	}

	.tire-image {
		width: 70%;
		height: auto;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}

	.comparison-table {
		font-size: 10px;
	}

	.comparison-table td,
	.comparison-table th {
		padding: 0.25rem;
		font-size: 12px;
	}

	.comparison-table th {
		text-align: start;
	}
}
