/* Best Sellers banner calibration. */
.best-sellers-banner {
	width: min(1200px, calc(100% - 48px));
	min-height: 240px;
	margin: 200px auto 80px;
	grid-template-columns: 1fr 1.45fr 1fr;
	gap: 0;
	background: #fff;
}
.best-sellers-banner__image {
	min-height: 240px;
	background-position: center;
	background-size: cover;
}
.best-sellers-banner__content {
	padding: 30px 24px;
	background: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.best-sellers-banner__content h2 {
	order: 1;
	font-size: 30px;
	line-height: 1.05;
	font-weight: 700;
	color: #3d4760;
	margin: 0 0 16px;
	letter-spacing: 0;
}
.best-sellers-banner__content p:first-child {
	order: 2;
	max-width: 310px;
	font-size: 12px;
	line-height: 1.5;
	font-weight: 400;
	color: #4b4f58;
	margin: 0 0 26px;
	text-transform: none;
	letter-spacing: 0;
}
.best-sellers-banner__content::after {
	content: "First Class Quality";
	order: 3;
	display: block;
	font-size: 12px;
	line-height: 1.4;
	font-weight: 400;
	color: #4b4f58;
	margin: 0 0 24px;
}
.best-sellers-banner__content .button {
	order: 4;
	background: #fff;
	border: 1px solid #b5c2d0;
	color: #4b4f58;
	min-height: 38px;
	padding: 8px 28px;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0;
}
.best-sellers-banner__content .button:hover {
	background: #3d4760;
	border-color: #3d4760;
	color: #fff;
}
.best-sellers-banner__photos {
	display: block;
	min-height: 240px;
	background: transparent;
}
.best-sellers-banner__photos .best-sellers-banner__photo {
	height: 240px;
	background-position: center;
	background-size: cover;
}
.best-sellers-banner__photos .best-sellers-banner__photo + .best-sellers-banner__photo {
	display: none;
}

@media (max-width: 1050px) {
	.best-sellers-banner {
		width: min(760px, calc(100% - 48px));
		min-height: 240px;
		margin: 80px auto;
	}
	.best-sellers-banner__image,
	.best-sellers-banner__photos,
	.best-sellers-banner__photos .best-sellers-banner__photo {
		min-height: 240px;
		height: 240px;
	}
	.best-sellers-banner__content {
		padding: 45px 30px;
	}
	.best-sellers-banner__content h2 {
		font-size: 27px;
	}
}

@media (max-width: 767px) {
	.best-sellers-banner {
		width: min(100% - 32px, 560px);
		min-height: 0;
		margin: 48px auto;
		grid-template-columns: 1fr;
	}
	.best-sellers-banner__image,
	.best-sellers-banner__photos,
	.best-sellers-banner__photos .best-sellers-banner__photo {
		min-height: 180px;
		height: 180px;
	}
	.best-sellers-banner__content {
		padding: 30px 22px 34px;
	}
	.best-sellers-banner__content h2 {
		font-size: 27px;
	}
	.best-sellers-banner__content p:first-child {
		margin-bottom: 20px;
	}
}

@media (max-width: 480px) {
	.best-sellers-banner {
		width: calc(100% - 24px);
		margin: 48px auto;
	}
	.best-sellers-banner__photos {
		min-height: 180px;
		height: 180px;
	}
	.best-sellers-banner__photos .best-sellers-banner__photo {
		min-height: 180px;
		height: 180px;
	}
	.best-sellers-banner__photos .best-sellers-banner__photo:last-child {
		display: none;
	}
}
