:root {
	--brown: #885C45;
	--bage: #F6F1E3;
	--green: #757D5E;
	--gray: #7C8D9B;
	--white: #DCD9CE;

	--bg-color: var(--bage);
	--font-color: var(--brown);
}

* {box-sizing: border-box;}
html, body {scroll-behavior: smooth; cursor: default; overflow-x: clip;}
body {margin: 0; background-color: var(--bg-color);}
body, body a, body button, body input, body select {color: var(--font-color); font-family: var(--font-polly); font-weight: normal; font-size: 16px;}

body a {text-decoration: none;}

h1 {font-size: 32px; font-weight: bold; letter-spacing: 1.6px; line-height: normal; color: #4D3B33; margin-bottom: 16px; margin-top: 0;}
h2, h3, h4, strong {font-weight: bold;}
p, ul, ol, h2, h3, h4, h5, h6 {margin-top: 0; margin-bottom: 0;}

[data-click-link] {cursor: pointer;}

.Container {max-width: 1073px; padding-left: 15px; padding-right: 15px; margin-left: auto; margin-right: auto;}

section header {text-align: center; margin-bottom: 43px; max-width: 588px; margin-left: auto; margin-right: auto;}
section header h2 {margin-bottom: 12px; color: #4D3B33; font-size: 32px; letter-spacing: 1.6px;}
section footer {text-align: center; margin-top: 41px;}
section footer .Button {font-size: 16px; color: var(--brown); padding: 12px 40px;}

@media (min-width: 1025px) {
	.MobileOnly {display: none !important;}
}
@media (max-width: 1024px) {
	.DesktopOnly {display: none !important;}
	section header h2 {font-size: 28px;}
}
@media (max-width: 600px) {
	h1 {font-size: 26px;}
}.BlogCarousel {display: flex; overflow: auto; scroll-snap-type: x mandatory;}
.BlogCarousel .BlogArticle {flex: 0 0 100%; scroll-snap-align: start;}

.BlogArticle h2 {font-size: 39px; font-style: normal; font-weight: 400; line-height: 40px;}
.BlogArticle .TextContent {font-size: 16px; line-height: 23px;}

@media (width < 1024px) {
	.BlogArticle {padding: 0 20px;}
	.BlogArticle img {width: 100%;}
}

@media (min-width: 1024px) {
	.BlogCarousel .BlogArticle .Image {flex: 0 0 20%;}
	.BlogCarousel .BlogArticle .TextPart {flex: 0 0 70%;}
}@media (width >= 1024px) {
	.BlogArticle {display: flex; align-items: center; gap: 26px;}
	.BlogArticle .Image {width: 417px;}
	.BlogArticle img {width: 100%;}
	.BlogArticle .TextContent {column-count: 2;}
	.BlogArticle .TextPart {padding: 25px 35px; box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.25);}
}.Button {
	--border-color: var(--brown);
	--bg: var(--brown);
	--color: white;
	--weight: normal;
	--font-size: 16px;
	--min-width: 0px;
}
.HollowButton {
	--bg: transparent;
}

.Button {display: inline-flex; align-items: center; justify-content: center; text-transform: uppercase; font-weight: var(--weight); font-size: var(--font-size); color: var(--color); background-color: var(--bg); border: 2px solid var(--border-color); padding: 13px 20px 13px 20px; min-width: var(--min-width); border-radius: 9999px; letter-spacing: 0.8px; text-decoration: none; cursor: pointer; text-align: center;}
.InlineButton {padding: 6px 30px; text-transform: none;}form {
	& {
		--input-bg: transparent;
		--input-border: white;
		--font-color: white;
		--placeholder-color: var(--green);
		--submit-color: white;
	}
	input:not([type="checkbox"]):not([type="radio"]), select {border-radius: 99px; width: 100%; border: 1px solid var(--input-border); background: var(--input-bg); min-height: 41px; padding: 0 23px; font-size: 18px; letter-spacing: 1px; color: var(--font-color); font-weight: normal;}
	input::placeholder {color: var(--placeholder-color);}
	.Label {margin-bottom: 13px; color: var(--font-color);}

	.Button {
		--bg: #D9D9D9;
		--color: var(--submit-color);
		padding-top: 7px; padding-bottom: 9px; border-width: 1px; font-weight: normal; margin-top: 10px;
	}
}.ItemsGrids {
	& {
		--cols: 4;
		--gap: 20px 25px;
		display: grid; grid-template-columns: repeat(var(--cols), 1fr); gap: var(--gap);
	}
	@media (max-width: 800px) {
		& {
			--cols: 3;
		}
	}
	@media (max-width: 600px) {
		& {
			--cols: 2;
		}
	}
	@media (max-width: 450px) {
		& {
			--cols: 1;
		}
	}
}.GenericPage > header {text-align: center; margin-bottom: 80px; margin-left: auto; margin-right: auto;}
.GenericPage > header h1 {margin-bottom: 13px; font-size: 48px; font-weight: bold; line-height: normal; letter-spacing: 2.4px; color: #4D3B33;}

@media (max-width: 600px) {
	.GenericPage > header h1 {font-size: 38px; line-height: normal;}
}.Tag {
	--border-color: rgba(255,255,255,0.5);
	--bg: rgba(255,255,255,0.5);
	--color: white;
	--weight: normal;
	--font-size: 12px;
	--min-width: 0px;
	--border-width: 1.5px;
}

.Tag {display: inline-block; width: max-content; text-transform: uppercase; font-weight: var(--weight); font-size: var(--font-size); color: var(--color); background-color: var(--bg); outline-offset: calc(var(--border-width) * -1); outline: var(--border-width) solid var(--border-color); padding: 5px 20px 6px 20px; min-width: var(--min-width); border-radius: 9999px; letter-spacing: 1.8px;}.Text {
	& {
		--size: 16px;
		--line-height: 24px;
		--color: var(--font-color);
	}

	&, a {font-size: var(--size); line-height: var(--line-height);}
	&, a, h1 {color: var(--color);}
	:is(p, ul, ol, table, .MediaGallery):not(:last-child) {margin-bottom: 23px;}
	h2 {font-size: 24px; line-height: normal; letter-spacing: 1.2px; font-weight: normal; text-transform: uppercase;}
	h3 {font-size: 20px; line-height: normal; font-weight: bold;}
	h2:not(:last-child) {margin-bottom: 23px;}
	h3:not(:last-child) {margin-bottom: 23px;}
	h4:not(:last-child) {margin-bottom: 20px;}
	h5:not(:last-child) {margin-bottom: 20px;}
	h6:not(:last-child) {margin-bottom: 20px;}
	a:not(.Button) {text-decoration: underline;}

	img {max-width: 100%; height: auto;}
}#OrderPage {max-width: 1100px; padding-left: 20px; padding-right: 20px; margin-left: auto; margin-right: auto;}

#OrderPage .Addresses {display: flex; gap: 20px; flex-wrap: wrap; margin: 50px 0;}#ProductDetail {
	h1 {text-align: left;}
	.ProductTop {display: flex; gap: 20px; align-items: start;}
	.ProductTop .Image {flex: 0 0 40%;}
	.ProductTop .Image img {object-fit: cover; object-position: center; width: 100%; height: 100%; border-radius: 20px; outline: 1px solid #885c4577; outline-offset: -1px;}

	@media (max-width: 700px) {
		.ProductTop {flex-direction: column;}
		.ProductTop .Image {width: 100%;}
	}
}.WorkshopsMovedFromEshopInfo {padding: 150px 15px; text-align: center;}
.WorkshopsMovedFromEshopInfo p {line-height: 180%;}@font-face {
    font-family: 'Polly';
    src: url('/Preview/Projects/Zuzka/Design/Fonts/PollyRounded-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Polly';
    src: url('/Preview/Projects/Zuzka/Design/Fonts/PollyRounded-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Polly';
    src: url('/Preview/Projects/Zuzka/Design/Fonts/PollyRounded-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Polly';
    src: url('/Preview/Projects/Zuzka/Design/Fonts/PollyRounded-Thin.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: fallback;
}

:root {
    --font-polly: Polly, sans-serif;
}.GenericPage {padding-top: 120px;}

.TextPage {margin: auto; max-width: 800px;}.Head {
	& {display: flex; justify-content: space-between; align-items: center; position: fixed; top: 0; left: 0; width: 100%; z-index: 3; user-select: none; padding: 47px 53px;}
	.HeaderInfo {display: flex; align-items: center; gap: 19px;}
	.MenuBtn path {stroke: white; stroke-width: 1.5px; stroke-linecap: round;}

	&, a {color: white;}
	[stroke] {stroke: white;}
	[fill] {fill: white;}

	nav {
		& {position: fixed; right: 0; top: 0; transform: translateX(100%); backdrop-filter: blur(10px); transition: transform 200ms ease-in-out; background: #F9F7F1; border-left: 1px solid rgba(136, 92, 69, 0.50); height: 100vh; padding: 47px 53px; overflow: auto; z-index: 2;}
		a {display: block; padding: 20px 0px; color: #4D3B33;}
		path {stroke: #4D3B33;}
		.InNavMenuBtn {text-align: right; margin-bottom: 40px;}
	}

	&:not(.HpHead), &.Cleared {
		& {padding-top: 24px; padding-bottom: 24px; background: #F9F7F1;}
		a {color: #4D3B33;}
		[stroke], .MenuBtn path {stroke: #4D3B33;}
		[fill] {fill: #4D3B33;}

		nav {padding-top: 24px; padding-bottom: 24px;}
	}

	.ClubHead {display: flex; align-items: center; gap: 8px;}

	#MiniCart {position: relative;}
	#MiniCart [data-empty] {display: flex; gap: 15px; align-items: center;}
	#MiniCart svg {width: 30px; height: auto;}
	#MiniCart .No {font-size: 14px; font-weight: normal; line-height: 0; position: absolute; top: -5px; right: -5px; width: 20px; height: 20px; background: var(--brown); color: white; display: flex; justify-content: center; align-items: center; border-radius: 99px;}

	@media (width <= 600px) {
		&, nav {padding: 24px 15px;}
	}
}

body[data-nav="opened"] .Head nav {transform: translateX(0);}
body[data-nav="opened"] > *:not(.Head) {filter: blur(2px); pointer-events: none;}#SpecialProgramsPage h1 {margin-bottom: 125px;}

#SpecialProgramsPage .SeriesIntro {text-align: center;}
#SpecialProgramsPage .ContentList {overflow: auto; flex-wrap: nowrap; padding-top: 10px; padding-bottom: 10px; margin-bottom: 75px; justify-content: flex-start;}.ClubTermsLink {--color: #885C45; text-align: center;}:root {
	--brown: #885C45;
	--bage: #F6F1E3;
	--green: #757D5E;
	--gray: #7C8D9B;
	--white: #DCD9CE;

	--bg-color: var(--bage);
	--font-color: var(--brown);
}

* {box-sizing: border-box;}
html, body {scroll-behavior: smooth; cursor: default; overflow-x: clip;}
body {margin: 0; background-color: var(--bg-color);}
body, body a, body button, body input, body select {color: var(--font-color); font-family: var(--font-polly); font-weight: normal; font-size: 16px;}

body a {text-decoration: none;}

h1 {font-size: 32px; font-weight: bold; letter-spacing: 1.6px; line-height: normal; color: #4D3B33; margin-bottom: 16px; margin-top: 0;}
h2, h3, h4, strong {font-weight: bold;}
p, ul, ol, h2, h3, h4, h5, h6 {margin-top: 0; margin-bottom: 0;}

[data-click-link] {cursor: pointer;}

.Container {max-width: 1073px; padding-left: 15px; padding-right: 15px; margin-left: auto; margin-right: auto;}

section header {text-align: center; margin-bottom: 43px; max-width: 588px; margin-left: auto; margin-right: auto;}
section header h2 {margin-bottom: 12px; color: #4D3B33; font-size: 32px; letter-spacing: 1.6px;}
section footer {text-align: center; margin-top: 41px;}
section footer .Button {font-size: 16px; color: var(--brown); padding: 12px 40px;}

@media (min-width: 1025px) {
	.MobileOnly {display: none !important;}
}
@media (max-width: 1024px) {
	.DesktopOnly {display: none !important;}
	section header h2 {font-size: 28px;}
}
@media (max-width: 600px) {
	h1 {font-size: 26px;}
}.BlogCarousel {display: flex; overflow: auto; scroll-snap-type: x mandatory;}
.BlogCarousel .BlogArticle {flex: 0 0 100%; scroll-snap-align: start;}

.BlogArticle h2 {font-size: 39px; font-style: normal; font-weight: 400; line-height: 40px;}
.BlogArticle .TextContent {font-size: 16px; line-height: 23px;}

@media (width < 1024px) {
	.BlogArticle {padding: 0 20px;}
	.BlogArticle img {width: 100%;}
}

@media (min-width: 1024px) {
	.BlogCarousel .BlogArticle .Image {flex: 0 0 20%;}
	.BlogCarousel .BlogArticle .TextPart {flex: 0 0 70%;}
}@media (width >= 1024px) {
	.BlogArticle {display: flex; align-items: center; gap: 26px;}
	.BlogArticle .Image {width: 417px;}
	.BlogArticle img {width: 100%;}
	.BlogArticle .TextContent {column-count: 2;}
	.BlogArticle .TextPart {padding: 25px 35px; box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.25);}
}@font-face {
    font-family: 'Polly';
    src: url('/Preview/Projects/Zuzka/Design/Fonts/PollyRounded-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Polly';
    src: url('/Preview/Projects/Zuzka/Design/Fonts/PollyRounded-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Polly';
    src: url('/Preview/Projects/Zuzka/Design/Fonts/PollyRounded-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Polly';
    src: url('/Preview/Projects/Zuzka/Design/Fonts/PollyRounded-Thin.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: fallback;
}

:root {
    --font-polly: Polly, sans-serif;
}.GenericPage {padding-top: 120px;}

.TextPage {margin: auto; max-width: 800px;}.Head {
	& {display: flex; justify-content: space-between; align-items: center; position: fixed; top: 0; left: 0; width: 100%; z-index: 3; user-select: none; padding: 47px 53px;}
	.HeaderInfo {display: flex; align-items: center; gap: 19px;}
	.MenuBtn path {stroke: white; stroke-width: 1.5px; stroke-linecap: round;}

	&, a {color: white;}
	[stroke] {stroke: white;}
	[fill] {fill: white;}

	nav {
		& {position: fixed; right: 0; top: 0; transform: translateX(100%); backdrop-filter: blur(10px); transition: transform 200ms ease-in-out; background: #F9F7F1; border-left: 1px solid rgba(136, 92, 69, 0.50); height: 100vh; padding: 47px 53px; overflow: auto; z-index: 2;}
		a {display: block; padding: 20px 0px; color: #4D3B33;}
		path {stroke: #4D3B33;}
		.InNavMenuBtn {text-align: right; margin-bottom: 40px;}
	}

	&:not(.HpHead), &.Cleared {
		& {padding-top: 24px; padding-bottom: 24px; background: #F9F7F1;}
		a {color: #4D3B33;}
		[stroke], .MenuBtn path {stroke: #4D3B33;}
		[fill] {fill: #4D3B33;}

		nav {padding-top: 24px; padding-bottom: 24px;}
	}

	.ClubHead {display: flex; align-items: center; gap: 8px;}

	#MiniCart {position: relative;}
	#MiniCart [data-empty] {display: flex; gap: 15px; align-items: center;}
	#MiniCart svg {width: 30px; height: auto;}
	#MiniCart .No {font-size: 14px; font-weight: normal; line-height: 0; position: absolute; top: -5px; right: -5px; width: 20px; height: 20px; background: var(--brown); color: white; display: flex; justify-content: center; align-items: center; border-radius: 99px;}

	@media (width <= 600px) {
		&, nav {padding: 24px 15px;}
	}
}

body[data-nav="opened"] .Head nav {transform: translateX(0);}
body[data-nav="opened"] > *:not(.Head) {filter: blur(2px); pointer-events: none;}#Intro {
	& {margin-bottom: 100px;}

	picture:has(.IntroBg) {position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
	.IntroBg {object-fit: cover; object-position: center; width: 100%; height: 100%;}

	.Top {
		& {color: white; position: relative;}
		.Content {position: relative; min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; flex-direction: column;}
		#Logo {display: inline-flex; margin-bottom: 43px; width: 141px;}
		#Logo img {width: 100%; height: auto;}
		.Text {--color: white; max-width: 459px; padding-left: 15px; padding-right: 15px; letter-spacing: 0.8px; margin-bottom: 48px;}
		.Button {
			--color: white;
			--border-color: white;
		}

		.Socials {
			& {position: absolute; left: 0; bottom: 40px; width: 100%; text-align: center; display: flex; justify-content: center; gap: 23px;}
			a {display: flex; width: 28px; height: 28px;}
			img {max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;}
			span {height: 30px; width: 1.5px; border-radius: 99px; background: white;}
		}
	}

	.Trio {
		& {display: flex;}
		a {flex: 1; display: flex; aspect-ratio: 1/1; overflow: hidden; justify-content: center; align-items: center; position: relative; color: white; font-weight: bold; font-size: 20px; line-height: 24px; letter-spacing: 3px; text-align: center; padding: 0 5px;}
		img {position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: -1;}
		a span {white-space: nowrap;}

		@media (width <= 700px) {
			a {font-size: 16px;}
		}
	}
}

.BigWorkshops {margin-bottom: 169px;}
.Schedule {margin-bottom: 116px;}
.Shop {margin-bottom: 96px;}

@media (max-width: 800px) {
	#Intro {margin-bottom: 60px;}
	.BigWorkshops {margin-bottom: 60px;}
	.Schedule {margin-bottom: 60px;}
	.Shop {margin-bottom: 60px;}
}.Youtube {
	& {background: var(--brown); border-radius: 20px; display: grid; align-items: start; gap: 40px; grid-template-columns: 0.8fr 1.2fr; padding: 72px 54px 73px 38px;}

	.Text {color: white;}
	.Tag {--color: var(--brown); margin-bottom: 15px;}

	.Preview {
		& {aspect-ratio: 16/9; position: relative;}
		.PreviewImage {position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 20px;}
		.Overlay {position: absolute; bottom: 0; left: 0; width: 100%; padding: 8px 100px 8px 25px; background: #4D3B33; border-radius: 0 0 20px 20px;}
		.Name {color: white; letter-spacing: 0.7px; line-height: 24px; font-size: 14px;}
		.Label {font-size: 12px; font-weight: normal; letter-spacing: 1.8px; color: rgba(255, 255, 255, 0.50);}
		.Overlay img {position: absolute; right: 25px; top: 50%; transform: translateY(-50%);}

		&::before {position: absolute; right: -22px; top: -24px; width: 62px; height: 62px; background: rgba(244, 232, 230, 0.30); content: ''; border-radius: 50%; pointer-events: none;}
	}

	@media (max-width: 1024px) {
		& {padding: 15px; gap: 20px; grid-template-columns: 1fr 1fr;}
	}
	@media (max-width: 1024px) and (min-width: 700px) {
		.PreviewImage {border-radius: 20px 20px 0 0 !important;}
		.Overlay {bottom: auto !important; top: 100%;}
	}

	@media (max-width: 700px) {
		& {grid-template-columns: 1fr;}
	}

	@media (max-width: 450px) {
		.Preview {
			.Overlay {padding-right: 60px;}
			.Name {font-size: 12px; line-height: normal;}
		}
	}
}.BigWorkshops {
	.BigWorkshopsItem + .BigWorkshopsItem {margin-top: 60px;}

	.Tag {--border-color: rgba(136, 92, 69, 0.50); color: rgba(136, 92, 69, 0.50); background: none; margin-bottom: 15px;}
	.Image {position: relative; display: flex;}
	.Image picture {display: flex;}
	.Image img:not(.Shade) {width: 100%; height: auto; border-radius: 20px; outline-offset: -2px; outline: 2px solid rgba(136, 92, 69, 0.30);}
	.Image::before {content: ''; position: absolute; left: -23px; top: -23px; width: 62px; height: 62px; background: rgba(136, 92, 69, 0.20); border-radius: 50%; pointer-events: none; z-index: -1;}
	.Image .Shade {display: none;}

	h2 {color: #4D3B33; font-size: 24px; margin-bottom: 23px; letter-spacing: 3.6px;}
	.Text {margin-bottom: 28px;}
	.Button {min-width: 263px;}

	@media (max-width: 1000px) {

	}

	@media (min-width: 600px) {
		.BigWorkshopsItem {display: grid; grid-template-columns: 31% 1fr; gap: 32px; align-items: start;}
	}
	@media (min-width: 1024px) {
		.BigWorkshopsItem {gap: 132px;}
		.Image .Shade {position: absolute; left: calc(100% - 20px); bottom: 0; z-index: -1; width: 214px; height: auto; display: block;}
	}
	@media (max-width: 600px) {
		.Info {margin-top: 25px;}
	}
}.EventsSchedule {
	.ScheduleItem {border: 1.5px solid rgba(136, 92, 69, 0.30); border-radius: 20px;}
	.ScheduleItem + .ScheduleItem {margin-top: 15px;}
	.Image img, .Image picture {display: block; object-fit: cover; width: 100%; height: 100%; object-position: center; border-radius: 20px 0 0 20px; aspect-ratio: 362 / 226;}
	.Button {color: var(--brown); padding-top: 12px; padding-bottom: 12px; font-weight: normal;}
	.Button img {height: 18px; width: auto; margin-left: 14px;}
	h3 {font-size: 20px; font-weight: normal; letter-spacing: 1px; margin-bottom: 18px; line-height: normal;}

	.Place, .Time {display: flex; align-items: center; gap: 10px; color: #885C45;}
	.Place + .Time {margin-top: 10px;}
	.Place div, .Time div {height: 19px; width: 19px; text-align: center;}
	.Place img, .Time img {height: 100%; width: auto;}

	.ScheduleItem {display: flex; min-height: 226px; align-items: center; padding-right: 32px;}
	.Image {flex: 0 0 37%; position: relative; height: 100%;}
	.Image::after {content: ''; position: absolute; right: 0; top: 0; height: 100%; width: 50px; background-image: linear-gradient(to right, #F6F1E300, var(--bage));}
	.Info {flex: 1; padding-left: 17px; padding-right: 20px; padding-top: 10px; padding-bottom: 10px;}

	@media (max-width: 1024px) {
		.ScheduleItem {min-height: 0; padding-right: 0;}
		.Image {height: stretch;}
		.Image img, .Image picture {aspect-ratio: auto;}
		.Info {padding-right: 15px;}
		.ScheduleItem .Button {margin-top: 10px;}
	}

	@media (max-width: 600px) {
		.ScheduleItem {flex-direction: column;}
		.Image {height: 226px; width: 100%; flex: auto;}
		.Image::after {width: 100%; height: 20px; top: auto; bottom: 0; background-image: linear-gradient(to bottom, #F6F1E300, var(--bage));}
		.Image img, .Image picture {border-radius: 20px 20px 0 0;}
		.Info {padding-right: 15px; padding-left: 15px; padding-top: 15px; padding-bottom: 15px; width: 100%;}
	}
}.ProductsList {
	& {
		--cols: 4;
		--gap: 25px;
		display: grid; grid-template-columns: repeat(var(--cols), 1fr); gap: var(--gap);
	}
	.ProductsItem {border-radius: 20px; border: 1.5px solid rgba(136, 92, 69, 0.30); overflow: hidden; display: flex; flex-direction: column;}
	.ProductImage {height: 164px; width: 100%; position: relative;}
	.ProductImage img {object-fit: cover; object-position: center; width: 100%; height: 100%;}
	.ProductImage::after {position: absolute; left: 0; width: 100%; bottom: 0; height: 20px; content: ''; background: linear-gradient(to bottom, #F6F1E300, var(--bage));}
	.Info {padding: 14px 18px 24px 18px; display: flex; flex-direction: column; justify-content: start; flex: 1;}
	h3 {font-size: 14px; font-weight: normal; margin-bottom: 16px; line-height: normal;}
	.Text {margin-bottom: 20px;}
	.Button {
		margin-top: auto; font-weight: normal; letter-spacing: 0.624px; padding-top: 9px; padding-bottom: 9.52px; font-size: 12.471px;}

	@media (max-width: 800px) {
		& {
			--cols: 3;
		}
	}
	@media (max-width: 600px) {
		& {
			--cols: 2;
		}
	}
	@media (max-width: 450px) {
		& {
			--cols: 1;
		}
	}
}