.hosio-products {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: stretch;
}

.hosio-products > .hosio-product {
	flex: 0 0 calc((100% - 32px) / 3);
	width: calc((100% - 32px) / 3);
	max-width: calc((100% - 32px) / 3);
	height: auto;
}

.hosio-product,
.hosio-product * {
	box-sizing: border-box;
}

.hosio-product-single {
	width: calc((100% - 32px) / 3);
	max-width: calc((100% - 32px) / 3);
}

.hosio-product {
	--hosio-banner-bg: #004F90;
	--hosio-banner-title: #ffffff;
	--hosio-banner-note: #ffffff;
	--hosio-card-bg: #ffffff;
	--hosio-name: #004F90;
	--hosio-rows: #004F90;
	--hosio-price-bg: #004F90;
	--hosio-price-label: #ffffff;
	--hosio-price-value: #ffffff;
	--hosio-price-note: #ffffff;
	--hosio-footer-title: #004F90;
	--hosio-footer-text: #4A5B6B;
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	max-width: none;
	margin: 0;
	background: var(--hosio-card-bg);
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid rgba(0, 34, 62, 0.14);
	box-shadow: none;
	font-family: inherit;
	color: var(--hosio-rows);
}

.hosio-product__banner {
	background: var(--hosio-banner-bg);
	color: var(--hosio-banner-title);
	text-align: center;
	padding: 9px 8px 8px;
	min-height: 52px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hosio-product p {
	margin: 0;
	padding: 0;
	padding-bottom: 0 !important;
}

.hosio-product__banner-title {
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1;
	min-height: 15px;
	color: var(--hosio-banner-title);
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
}

.hosio-product__banner-note {
	margin-top: 10px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1;
	min-height: 9px;
	color: var(--hosio-banner-note);
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
}

.hosio-product__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: stretch;
	flex: 1 1 auto;
	min-height: 0;
}

.hosio-product--has-image .hosio-product__body {
	grid-template-columns: minmax(0, 1.2fr) minmax(88px, 0.8fr);
	grid-template-rows: 1fr auto;
}

.hosio-product__copy {
	grid-column: 1;
	grid-row: 1;
	padding: 10px 10px 4px;
	display: flex;
	flex-direction: column;
}

.hosio-product__price {
	margin-top: 8px;
	background: var(--hosio-price-bg);
	color: var(--hosio-price-value);
	border-radius: 10px;
	text-align: center;
	padding: 8px;
	max-width: none;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.hosio-product__name {
	font-size: 22px;
	font-weight: 800;
	line-height: 1.05;
	min-height: 23px;
	color: var(--hosio-name);
	text-transform: uppercase;
	overflow: hidden;
}

.hosio-product__rows {
	margin-top: 4px;
	min-height: 29px;
}

.hosio-product__rows p {
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	min-height: 14px;
	color: var(--hosio-rows);
	text-transform: uppercase;
}

.hosio-product__price-label {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1;
	min-height: 9px;
	color: var(--hosio-price-label);
}

.hosio-product__price-note {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1;
	min-height: 9px;
	color: var(--hosio-price-note);
}

.hosio-product__price-value {
	margin: 9px 0;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
	min-height: 22px;
	color: var(--hosio-price-value);
}

.hosio-product__media {
	position: relative;
	grid-column: 1;
	grid-row: auto;
	padding: 8px;
	min-height: 120px;
	background: none;
	border: 0;
	overflow: hidden;
}

.hosio-product--has-image .hosio-product__media {
	grid-column: 2;
	grid-row: 1 / -1;
	min-height: 0;
}

.hosio-product__img,
.hosio-product__media img {
	position: absolute;
	top: 8px;
	right: 8px;
	bottom: 8px;
	left: 8px;
	display: block;
	width: calc(100% - 16px);
	height: calc(100% - 16px);
	max-width: none;
	max-height: none;
	object-fit: contain;
	object-position: center;
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	background: none !important;
	padding: 0 !important;
}

.hosio-product__footer {
	grid-column: 1;
	grid-row: auto;
	padding: 4px 10px 10px;
}

.hosio-product--has-image .hosio-product__footer {
	grid-row: 2;
}

.hosio-product__footer-title {
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
	min-height: 16px;
	color: var(--hosio-footer-title);
}

.hosio-product__footer-text {
	margin-top: 2px;
	font-size: 11px;
	line-height: 1.35;
	min-height: 30px;
	max-height: 30px;
	overflow: hidden;
	color: var(--hosio-footer-text);
}

.hosio-product__link {
	position: absolute;
	inset: 0;
	z-index: 1;
	text-indent: -9999px;
	overflow: hidden;
}

.hosio-product__link:focus {
	outline: 3px solid #004F90;
	outline-offset: -3px;
}

.hosio-slider {
	position: relative;
	display: block;
}

.hosio-slider__viewport {
	overflow: hidden;
	width: 100%;
	min-width: 0;
	padding: 0 2px;
}

.hosio-slider__track {
	display: flex;
	align-items: stretch;
	gap: 16px;
	will-change: transform;
}

.hosio-slider__slide {
	display: flex;
	box-sizing: border-box;
}

.hosio-slider__slide .hosio-product {
	flex: 1 1 auto;
	height: auto;
	min-height: 100%;
}

.hosio-slider__btn {
	position: absolute;
	top: 50%;
	z-index: 4;
	width: 36px;
	height: 36px;
	margin: 0;
	transform: translateY(-50%);
	border: 0;
	border-radius: 50%;
	background: #004F90;
	color: #fff;
	cursor: pointer;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	box-shadow: 0 2px 8px rgba(0, 34, 62, 0.28);
}

.hosio-slider__prev {
	left: 8px;
}

.hosio-slider__next {
	right: 8px;
}

.hosio-slider__btn:disabled {
	opacity: 0.3;
	cursor: default;
}

.hosio-slider__btn svg {
	display: block;
	width: 16px;
	height: 16px;
}

.hosio-slider.is-single .hosio-slider__btn {
	visibility: hidden;
}

.hosio-products > .hosio-product {
	height: 100%;
}

@media (max-width: 980px) {
	.hosio-products > .hosio-product {
		flex-basis: calc((100% - 16px) / 2);
		width: calc((100% - 16px) / 2);
		max-width: calc((100% - 16px) / 2);
	}

	.hosio-product-single {
		width: calc((100% - 16px) / 2);
		max-width: calc((100% - 16px) / 2);
	}
}

@media (max-width: 767px) {
	.hosio-products > .hosio-product {
		flex-basis: 100%;
		width: 100%;
		max-width: 420px;
		margin: 0 auto;
	}

	.hosio-product-single {
		width: 100%;
		max-width: 420px;
	}

	.hosio-product__banner-title {
		font-size: 14px;
	}

	.hosio-product__name {
		font-size: 20px;
	}

	.hosio-slider__btn {
		width: 32px;
		height: 32px;
	}

	.hosio-slider__prev {
		left: 6px;
	}

	.hosio-slider__next {
		right: 6px;
	}
}
