html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,del,dfn,em,img,ins,kbd,q,samp,small,strike,strong,tt,var,b,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote::before,blockquote::after,q::before,q::after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}body{-webkit-text-size-adjust:none}input::-moz-focus-inner{border:0;padding:0}input[type="text"],input[type="email"],select,textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none}

*, *::before, *::after {
	box-sizing: border-box;
}

:root {
	--site-language-direction: ltr;
	--viewport-height: 100vh;
	--color-faq: #4E4E4E;
}

body {
	line-height: 1.0;
	min-height: var(--viewport-height);
	min-width: 320px;
	overflow-x: hidden;
	word-wrap: break-word;
	background-color: #F0F0FA;
}

html {
	font-size: 18pt;
}

strong {
	color: inherit;
	font-weight: bolder;
}

em {
	font-style: italic;
}

a {
	color: inherit;
	text-decoration: underline;
	transition: color 0.25s ease;
}

footer {
	display: block;
}

.site-footer {
	text-align: center;
	margin-top: 2rem !important;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

.site-footer__card {
	background: linear-gradient(to bottom, #8a8a8a, #6b6b6b);
	border-radius: 1rem;
	padding: 1.5rem 1rem;
}

.site-footer__title {
	color: #ffffff;
	font-size: 1.1em;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 1.75rem;
	letter-spacing: 0.15rem;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem 0.5rem;
	justify-items: center;
}

.site-footer__app {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	gap: 0.35rem;
}

.site-footer__app img {
	width: 60px;
	height: 60px;
	border-radius: 13px;
}

.site-footer__app span {
	color: #ffffff;
	font-size: 0.7em;
	line-height: 1.3;
}

.site-footer__app:hover span {
	text-decoration: underline;
}

.site-footer__links {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.25rem;
}

.site-footer__links a {
	color: #d0d0d0;
	text-decoration: none;
	font-size: 0.85em;
	line-height: 1.8;
}

.site-footer__links a:hover {
	text-decoration: underline;
}

.site-footer__copy {
	color: #808080;
	font-size: 0.625em;
	padding: 1rem 0 1.5rem;
}

.lazy-frame {
	position: relative;
}

.lazy-frame > img {
	display: block;
	width: 100%;
	height: auto;
}

.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.fade-in,
	.fade-in.visible {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

a:focus-visible,
.n01:focus-visible,
[role="button"]:focus-visible {
	outline: 2px solid #4E4E4E;
	outline-offset: 2px;
}

.site-wrapper {
	-webkit-overflow-scrolling: touch;
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: var(--viewport-height);
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.site-main {
	--alignment: center;
	--flex-alignment: center;
	--border-radius-tl: 0;
	--border-radius-tr: 0;
	--border-radius-br: 0;
	--border-radius-bl: 0;
	align-items: center;
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
	justify-content: center;
	max-width: 100%;
	position: relative;
	text-align: var(--alignment);
	z-index: 1;
}

.site-main > .inner {
	--padding-horizontal: 3rem;
	--padding-vertical: 0.5rem;
	--spacing: 0.75rem;
	--width: 40rem;
	border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
	max-width: 100%;
	position: relative;
	width: var(--width);
	z-index: 1;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.site-main > .inner > * {
	margin-top: var(--spacing);
	margin-bottom: var(--spacing);
}

.site-main > .inner > :first-child {
	margin-top: 0 !important;
}

.site-main > .inner > :last-child {
	margin-bottom: 0 !important;
}

.site-main > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
	width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
}

.site-main > .inner > .full:first-child {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.site-main > .inner > .full:last-child {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.image-component {
	display: block;
	line-height: 0;
	max-width: 100%;
	position: relative;
}

.image-component > .frame {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	vertical-align: top;
	width: 100%;
}

.image-component > .frame > img {
	border-radius: 0 !important;
	max-width: 100%;
	vertical-align: top;
	width: inherit;
}

.image-component.instance-2 {
	text-align: left;
	padding-top: 1.5rem;
	padding-bottom: 1rem;
}

.image-component.instance-2 > .frame {
	width: 13.625rem;
	transition: none;
}

.image-component.instance-2 > .frame > img {
	transition: none;
}

.image-component.instance-5 {
	text-align: center;
}

.image-component.instance-5 > .frame {
	width: 29.25rem;
	border-radius: 0.75rem;
	transition: none;
}

.image-component.instance-5 > .frame > img {
	-webkit-touch-callout: none;
	user-select: none;
	transition: none;
}

.image-component.instance-4 > .frame {
	width: 7.5rem;
	transition: none;
}

.image-component.instance-4 > .frame > img {
	-webkit-touch-callout: none;
	user-select: none;
	transition: none;
}

.image-component.instance-1:not(:first-child) {
	margin-top: 0rem !important;
}

.image-component.instance-1:not(:last-child) {
	margin-bottom: 0rem !important;
}

.image-component.instance-1 > .frame {
	width: 7.5rem;
	transition: none;
}

.image-component.instance-1 > .frame > img {
	-webkit-touch-callout: none;
	user-select: none;
	transition: none;
}

.image-component.instance-3 > .frame {
	width: 7.5rem;
	transition: none;
}

.image-component.instance-3 > .frame > img {
	-webkit-touch-callout: none;
	user-select: none;
	transition: none;
}

.text-component {
	direction: var(--site-language-direction);
	position: relative;
}

.text-component span.p {
	display: block;
	position: relative;
}

.text-component span[style], .text-component a {
	-webkit-text-fill-color: currentcolor;
}

.text-component.instance-12 {
	color: #3733C6;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 2.25em;
	line-height: 1;
	font-weight: 400;
}

.text-component.instance-12 a {
	text-decoration: underline;
}

.text-component.instance-12 a:hover {
	text-decoration: none;
}

.text-component.instance-12 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-5 {
	color: #3733C6;
	font-family: 'Dancing Script', cursive;
	font-size: 2.625em;
	line-height: 1.375;
	font-weight: 700;
}

.text-component.instance-5 a {
	text-decoration: underline;
}

.text-component.instance-5 a:hover {
	text-decoration: none;
}

.text-component.instance-5 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-6:not(:first-child) {
	margin-top: 2.125rem !important;
}

.text-component.instance-6:not(:last-child) {
	margin-bottom: 2.125rem !important;
}

.text-component.instance-6 {
	text-align: left;
	color: #696969;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-6 a {
	text-decoration: underline;
}

.text-component.instance-6 a:hover {
	text-decoration: none;
}

.text-component.instance-6 span.p:nth-child(n + 2) {
	margin-top: 1.375rem;
}

.text-component.instance-8:not(:first-child) {
	margin-top: 0rem !important;
}

.text-component.instance-8:not(:last-child) {
	margin-bottom: 0rem !important;
}

.text-component.instance-8 {
	color: #000000;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	letter-spacing: 0.175rem;
	width: calc(100% + 0.175rem);
	font-size: 1.25em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-8 a {
	text-decoration: underline;
}

.text-component.instance-8 a:hover {
	text-decoration: none;
}

.text-component.instance-8 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-3 {
	text-align: center;
	color: #808080;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	letter-spacing: 0.05rem;
	width: calc(100% + 0.05rem);
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 400;
}

.text-component.instance-3 a {
	text-decoration: underline;
}

.text-component.instance-3 a:hover {
	text-decoration: none;
}

.text-component.instance-3 span.p:nth-child(n + 2) {
	margin-top: 1.375rem;
}

.text-component.instance-7:not(:first-child) {
	margin-top: 2.125rem !important;
}

.text-component.instance-7:not(:last-child) {
	margin-bottom: 2.125rem !important;
}

.text-component.instance-7 {
	text-align: left;
	color: #696969;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-7 a {
	text-decoration: underline;
}

.text-component.instance-7 a:hover {
	text-decoration: none;
}

.text-component.instance-7 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-1:not(:first-child) {
	margin-top: 2.125rem !important;
}

.text-component.instance-1:not(:last-child) {
	margin-bottom: 2.125rem !important;
}

.text-component.instance-1 {
	text-align: left;
	color: #696969;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-1 a {
	text-decoration: underline;
}

.text-component.instance-1 a:hover {
	text-decoration: none;
}

.text-component.instance-1 span.p:nth-child(n + 2) {
	margin-top: 1.375rem;
}

.gallery-component > .inner {
	display: inline-block;
	max-width: 100%;
	vertical-align: middle;
}

.gallery-component ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: var(--flex-alignment);
}

.gallery-component ul > li {
	position: relative;
}

.gallery-component ul > li > .thumbnail {
	border-radius: inherit;
	position: relative;
}

.gallery-component ul > li > .thumbnail > .frame {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
}

.gallery-component ul > li > .thumbnail > .frame > img {
	margin: 0;
	max-width: 100%;
	vertical-align: top;
	width: auto;
}

.gallery-component ul > li > .caption {
	width: 100%;
}

.gallery-component ul > li > .caption > p {
	width: 100%;
}

.gallery-component.instance-4 {
	text-align: center;
}

.gallery-component.instance-4 > .inner {
	max-width: 100%;
}

.gallery-component.instance-4 ul {
	justify-content: center;
	gap: 4rem;
}

.gallery-component.instance-4 ul > li {
	border-radius: 0rem;
	display: inline-block;
}

.gallery-component.instance-4 ul > li > .thumbnail > .frame {
	border-radius: 0rem;
}

.gallery-component.instance-4 ul > li > .thumbnail > .frame > img {
	-webkit-touch-callout: none;
	user-select: none;
	height: auto;
	max-height: 21.75rem;
	transition: none;
}

.gallery-component.instance-4 ul > li > .thumbnail {
	display: block;
	transition: none;
}

.gallery-component.instance-1 {
	text-align: center;
}

.gallery-component.instance-1 > .inner {
	max-width: 100%;
}

.gallery-component.instance-1 ul {
	justify-content: center;
	gap: 2.25rem;
}

.gallery-component.instance-1 ul > li {
	border-radius: 0rem;
	display: inline-block;
}

.gallery-component.instance-1 ul > li > .thumbnail > .frame {
	border-radius: 0rem;
}

.gallery-component.instance-1 ul > li > .thumbnail > .frame > img {
	-webkit-touch-callout: none;
	user-select: none;
	height: auto;
	max-height: 8.25rem;
	transition: none;
}

.gallery-component.instance-1 ul > li > .caption > p {
	padding-bottom: 0rem;
	padding-top: 0.375rem;
	color: #000000;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 0.875em;
	line-height: 0.75;
	font-weight: 400;
}

.gallery-component.instance-1 ul > li > .thumbnail {
	display: block;
	transition: none;
}

.buttons-component {
	cursor: default;
	display: flex;
	justify-content: var(--flex-alignment);
	letter-spacing: 0;
	padding: 0;
}

.buttons-component > li {
	max-width: 100%;
	text-align: var(--alignment);
}

.buttons-component > li > a {
	align-items: center;
	justify-content: center;
	max-width: 100%;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	white-space: nowrap;
}

.buttons-component.instance-1 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-1 > li > a {
	display: inline-block;
	width: 10.125rem;
	height: 3.25rem;
	line-height: 3.25rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Readex Pro', sans-serif;
	font-size: 1em;
	font-weight: 400;
	border-radius: 0.875rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #00A9FF;
	color: #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.container-component {
	position: relative;
}

.container-component > .wrapper {
	vertical-align: top;
	position: relative;
	max-width: 100%;
	border-radius: inherit;
}

.container-component > .wrapper > .inner {
	vertical-align: top;
	position: relative;
	max-width: 100%;
	border-radius: inherit;
	text-align: var(--alignment);
}

.container-component.instance-1 > .wrapper {
	display: inline-block;
	width: 96rem;
	background-color: #C6E2F7;
	border-radius: 1rem;
}

.container-component.instance-1 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 2rem;
	--padding-vertical: 2rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-1.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-1.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-1.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.faq {
	text-align: left;
}

.faq__title {
	color: var(--color-faq);
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 1em;
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 1rem 0;
}

.faq__list {
	margin: 0;
}

.faq__question {
	color: var(--color-faq);
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-weight: 700;
	font-size: 1em;
	line-height: 1.5;
	margin: 1rem 0 0.25rem 0;
	text-align: left;
}

.faq__question:first-of-type {
	margin-top: 0;
}

.faq__answer {
	margin: 0 0 1rem 0;
	padding: 0;
	color: var(--color-faq);
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-weight: 400;
	font-size: 1em;
	line-height: 1.5;
	text-align: left;
}

.faq__answer:last-of-type {
	margin-bottom: 0;
}

.faq__answer a {
	text-decoration: underline;
}

.faq__answer a:hover {
	text-decoration: none;
}

@media (max-width: 1680px) {
	html {
		font-size: 13pt;
	}
}

@media (max-width: 1280px) {
	html {
		font-size: 13pt;
	}
}

@media (max-width: 980px) {
	html {
		font-size: 11pt;
	}
}

@media (max-width: 736px) {
	html {
		font-size: 11pt;
	}

	.site-main > .inner {
		--padding-horizontal: 2rem;
		--padding-vertical: 0.5rem;
		--spacing: 0.75rem;
	}

	.image-component.instance-2 > .frame {
		width: 13.625rem;
	}

	.image-component.instance-5 > .frame {
		width: 29.25rem;
	}

	.image-component.instance-4 > .frame {
		width: 7.5rem;
	}

	.image-component.instance-1:not(:first-child) {
		margin-top: 0rem !important;
	}

	.image-component.instance-1:not(:last-child) {
		margin-bottom: 0rem !important;
	}

	.image-component.instance-1 > .frame {
		width: 7.5rem;
	}

	.image-component.instance-3 > .frame {
		width: 7.5rem;
	}

	.text-component.instance-12 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1;
	}

	.text-component.instance-5 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.625em;
		line-height: 1.375;
	}

	.text-component.instance-6:not(:first-child) {
		margin-top: 1.59375rem !important;
	}

	.text-component.instance-6:not(:last-child) {
		margin-bottom: 1.59375rem !important;
	}

	.text-component.instance-6 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}

	.text-component.instance-8:not(:first-child) {
		margin-top: 0rem !important;
	}

	.text-component.instance-8:not(:last-child) {
		margin-bottom: 0rem !important;
	}

	.text-component.instance-8 {
		letter-spacing: 0.153125rem;
		width: calc(100% + 0.153125rem);
		font-size: 1.25em;
		line-height: 1.5;
	}

	.text-component.instance-3 {
		letter-spacing: 0.04375rem;
		width: calc(100% + 0.04375rem);
		font-size: 0.625em;
		line-height: 1.625;
	}

	.text-component.instance-7:not(:first-child) {
		margin-top: 1.59375rem !important;
	}

	.text-component.instance-7:not(:last-child) {
		margin-bottom: 1.59375rem !important;
	}

	.text-component.instance-7 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}

	.text-component.instance-1:not(:first-child) {
		margin-top: 1.59375rem !important;
	}

	.text-component.instance-1:not(:last-child) {
		margin-bottom: 1.59375rem !important;
	}

	.text-component.instance-1 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}

	.gallery-component.instance-4 ul > li > .thumbnail > .frame > img {
		max-height: 16.3125rem;
	}

	.gallery-component.instance-4 ul {
		gap: 2rem;
	}

	.gallery-component.instance-1 ul > li > .caption > p {
		padding-bottom: 0rem;
		letter-spacing: 0rem;
		font-size: 0.875em;
		line-height: 0.75;
	}

	.gallery-component.instance-1 ul > li > .thumbnail > .frame > img {
		max-height: 6.1875rem;
	}

	.gallery-component.instance-1 ul {
		gap: 2rem;
	}

	.buttons-component.instance-1 {
		gap: 0.75rem;
	}

	.buttons-component.instance-1 > li > a {
		letter-spacing: 0rem;
		font-size: 1em;
	}

	.container-component.instance-1 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
	}
}

@media (max-width: 480px) {
	.site-main > .inner {
		--spacing: 0.65625rem;
	}

	.buttons-component.instance-1 {
		flex-direction: column;
		flex-wrap: nowrap;
	}

	.buttons-component.instance-1 > li > a {
		max-width: 32rem;
		width: 100%;
	}
}

@media (max-width: 360px) {
	.site-main > .inner {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.375rem;
		--spacing: 0.5625rem;
	}

	.text-component.instance-12 {
		font-size: 2em;
	}

	.text-component.instance-5 {
		font-size: 2em;
	}

	.text-component.instance-6 {
		font-size: 1em;
	}

	.text-component.instance-8 {
		font-size: 1.25em;
	}

	.text-component.instance-3 {
		font-size: 0.625em;
	}

	.text-component.instance-7 {
		font-size: 1em;
	}

	.text-component.instance-1 {
		font-size: 1em;
	}

	.gallery-component.instance-4 ul {
		gap: 1.5rem;
	}

	.gallery-component.instance-1 ul > li > .caption > p {
		font-size: 0.875em;
	}

	.gallery-component.instance-1 ul {
		gap: 1.5rem;
	}

	.buttons-component.instance-1 {
		gap: 0.5625rem;
	}

	.container-component.instance-1 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
	}
}
