:root {
	--ink: #0B0F17CC;
	--ink-soft: #0B0F17CC;
	--panel: #0B0F17CC;
	--cream: #F7F3EA;
	--paper: #FFFFFF;
	--gold: #C9A227;
	--gold-soft: #EAD08C;
	--gold-line: rgba(201, 162, 39, 0.35);
	--text: #1B2230;
	--stone: #6B7280;
	--teal: #0B0F17CC;
	--ivory: #F3EFE5;
	--t-ink:#0B0F17CC;
	--t-cream:#F7F3EA;
	--t-gold:#D9B45C;
	--t-gold-soft:#EAD08C;
	--t-stone:#8A93A0;
	--t-ivory:#F3EFE5;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Outfit', sans-serif;
	color: var(--text);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
}

.wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
}

h1, h2, h3 {
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	line-height: 1.12;
}

.eyebrow {
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gold);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 13.5px;
	font-weight: 600;
	letter-spacing: .01em;
	padding: 14px 26px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn-gold {
	background: linear-gradient(180deg, var(--gold-soft), var(--gold));
	color: #241B04;
}

.btn-gold:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(201, 162, 39, 0.35);
}

.btn-ghost {
	background: transparent;
	color: var(--ivory);
	border: 1px solid rgba(243, 239, 229, 0.35);
}

.btn-ghost:hover {
	border-color: var(--gold-soft);
	color: var(--gold-soft);
}

.btn-dark {
	background: var(--ink);
	color: var(--gold-soft);
}

.btn-dark:hover {
	background: #000;
}

section {
	padding: 96px 0;
}

@media (max-width: 720px) {
	section {
		padding: 64px 0;
	}
}

/* ============ NAV ============ */
/*.nav {*/
/*	position: sticky;*/
/*	top: 0;*/
/*	z-index: 50;*/
/*	background: rgba(10, 13, 18, 0.86);*/
/*	backdrop-filter: blur(10px);*/
/*	border-bottom: 1px solid rgba(243, 239, 229, 0.08);*/
/*}*/

/*.nav .wrap {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: space-between;*/
/*	height: 72px;*/
/*}*/

/*.nav .brand {*/
/*	font-family: 'Outfit', sans-serif;*/
/*	font-style: italic;*/
/*	font-weight: 600;*/
/*	font-size: 22px;*/
/*	color: var(--ivory);*/
/*}*/

/*.nav .brand span {*/
/*	color: var(--gold-soft);*/
/*}*/

/*.nav-links {*/
/*	display: flex;*/
/*	gap: 28px;*/
/*	font-size: 13px;*/
/*	color: #B9C0CC;*/
/*}*/

/*.nav-links a:hover {*/
/*	color: var(--gold-soft);*/
/*}*/

/*@media (max-width: 820px) {*/
/*	.nav-links {*/
/*		display: none;*/
/*	}*/
/*}*/

/* ============ HERO ============ */
.hero {
	position: relative;
	overflow: hidden;
	background:radial-gradient(680px 420px at 82% 20%, rgba(185, 138, 63, 0.18), transparent 60%),
	url('images/gold-bar.jpg') right center/cover no-repeat,
	var(--ink);
	color: var(--ivory);
	padding: 56px 0 56px;
}

.hero .wrap {
	display: grid;
	grid-template-columns:1.15fr 0.85fr;
	gap: 56px;
	align-items: center;
}

.hero h1 {
	font-weight: 500;
	font-size: 42px;
	color: var(--ivory);
	max-width: 560px;
}

.hero h1 em {
	color: var(--gold-soft);
	font-style: italic;
}

.hero .lede {
	font-size: 15.5px;
	color: #B9C0CC;
	max-width: 480px;
	margin: 20px 0 30px;
	line-height: 1.7;
}

.hero .cta-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 44px;
}

/* growth motif — signature element: 100g today -> 105g in 3 months */
.growth {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--gold-line);
	border-radius: 14px;
	padding: 18px 22px;
}

.growth .pt {
	text-align: center;
}

.growth .pt .g {
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 26px;
	color: var(--ivory);
}

.growth .pt .lbl {
	font-size: 10px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #8993A2;
	margin-top: 2px;
}

.growth .arrow {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--gold-soft);
	font-size: 11px;
}

.growth .arrow svg {
	width: 34px;
	height: 14px;
	margin-bottom: 2px;
}

.growth .pt.after .g {
	color: var(--gold-soft);
}

/* enquiry form panel */
.form-panel {
	background: var(--paper);
	border-radius: 18px;
	padding: 30px 28px 28px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.form-panel h3 {
	font-size: 22px;
	color: var(--text);
	margin-bottom: 4px;
}

.form-panel .sub {
	font-size: 12.5px;
	color: var(--stone);
	margin-bottom: 20px;
}

.field {
	margin-bottom: 14px;
}

.field label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--stone);
	margin-bottom: 6px;
}

.field input, .field select {
	width: 100%;
	padding: 11px 13px;
	border-radius: 9px;
	border: 1px solid #E3DFD3;
	background: #FBFAF6;
	font-family: 'Outfit', sans-serif;
	font-size: 13.5px;
	color: var(--text);
}

.field input:focus, .field select:focus {
	outline: 2px solid var(--gold);
	outline-offset: 1px;
	border-color: var(--gold);
}

.field-row {
	display: grid;
	grid-template-columns:1fr 1fr;
	gap: 12px;
}

.field .hint {
	font-size: 10.5px;
	color: #9AA2AD;
	margin-top: 4px;
}

.form-panel .btn {
	width: 100%;
	margin-top: 6px;
	padding: 13px 20px;
}

.form-note {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid #EDE9DD;
	font-size: 11px;
	color: var(--stone);
	line-height: 1.6;
}

.form-note ol {
	margin-left: 16px;
	margin-top: 6px;
}

/* ---- multi-step: details -> otp -> success ---- */
.form-step {
	display: none;
}

.form-step.active {
	display: block;
}

.otp-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--stone);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	margin-bottom: 18px;
	font-family: 'Outfit', sans-serif;
}

.otp-back:hover {
	color: var(--text);
}

.otp-back svg {
	width: 12px;
	height: 12px;
}

.otp-sentto {
	font-size: 13px;
	color: var(--text);
	margin-bottom: 4px;
}

.otp-sentto b {
	color: var(--navy-950);
}

.otp-sub {
	font-size: 12px;
	color: var(--stone);
	margin-bottom: 22px;
}

.otp-boxes {
	display: flex;
	gap: 9px;
	margin-bottom: 16px;
}

.otp-boxes input {
	width: 44px;
	height: 52px;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	border-radius: 9px;
	border: 1px solid #E3DFD3;
	background: #FBFAF6;
	color: var(--text);
}

.otp-boxes input:focus {
	outline: 2px solid var(--gold-500);
	outline-offset: 1px;
	border-color: var(--gold-500);
}

.otp-error {
	font-size: 12px;
	color: #B3352C;
	margin-bottom: 6px;
	min-height: 16px;
}

.otp-resend {
	font-size: 12px;
	color: var(--stone);
	margin-top: 14px;
}

.otp-resend button {
	background: none;
	border: none;
	padding: 0;
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	color: var(--navy-950);
	font-weight: 700;
	cursor: pointer;
	text-decoration: underline;
}

.otp-resend button:disabled {
	color: var(--stone);
	text-decoration: none;
	cursor: default;
}

.success-step {
	text-align: center;
	padding: 18px 4px 6px;
}

.success-step .tick {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #E9F5EC;
	color: #1E7A3C;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
}

.success-step .tick svg {
	width: 24px;
	height: 24px;
}

.success-step h3 {
	margin-bottom: 8px;
}

.success-step p {
	font-size: 13px;
	color: var(--stone);
	line-height: 1.6;
	margin-bottom: 4px;
}

@media (max-width: 940px) {
	.hero .wrap {
		grid-template-columns:1fr;
	}

	.hero h1 {
		font-size: 38px;
	}
}

/* ============ STAT / OVERVIEW ============ */
.overview {
	background: var(--cream);
}

.overview .wrap {
	display: grid;
	grid-template-columns:0.95fr 1.05fr;
	gap: 64px;
	align-items: center;
}

.overview .stat-figure {
	background: var(--ink);
	border-radius: 20px;
	padding: 44px 36px;
	color: var(--ivory);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.overview .stat-figure::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(120% 90% at 20% 0%, rgba(201, 162, 39, 0.16), transparent 60%);
}

.overview .stat-figure .num {
	font-family: 'Outfit', sans-serif;
	font-style: italic;
	font-weight: 600;
	font-size: 96px;
	color: var(--gold-soft);
	line-height: 1;
	position: relative;
}

.overview .stat-figure .num sup {
	font-size: 38px;
	top: -.5em;
}

.overview .stat-figure .cap {
	position: relative;
	font-size: 13.5px;
	letter-spacing: .04em;
	color: #C7CCD4;
	margin-top: 10px;
}

.overview .stat-figure .period {
	position: relative;
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px solid rgba(243, 239, 229, 0.14);
	font-size: 12px;
	color: #8993A2;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.overview h2 {
	font-weight: 500;
	font-size: 36px;
	color: var(--text);
	margin-bottom: 16px;
}

.overview p {
	font-size: 15px;
	color: #4B5563;
	line-height: 1.75;
	margin-bottom: 14px;
}

.overview .benefit-box {
	margin-top: 22px;
	background: var(--paper);
	border: 1px solid #EBE6D8;
	border-radius: 14px;
	padding: 18px 20px;
	font-size: 14px;
	color: var(--text);
}

.overview .benefit-box b {
	color: var(--gold);
}

@media (max-width: 940px) {
	.overview .wrap {
		grid-template-columns:1fr;
	}

	.overview .stat-figure .num {
		font-size: 72px;
	}
}

/* ============ PURCHASE DETAILS ============ */
.details {
	background: var(--paper);
}

.details .head {
	max-width: 560px;
	margin-bottom: 44px;
}

.details h2 {
	font-size: 34px;
}

.details .grid {
	display: grid;
	grid-template-columns:repeat(4, 1fr);
	gap: 18px;
}

.dcard {
	background: var(--cream);
	border-radius: 16px;
	padding: 24px 22px;
	border: 1px solid #ECE7D9;
}

.dcard .k {
	font-size: 10.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--stone);
	font-weight: 700;
	margin-bottom: 10px;
}

.dcard h4 {
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 8px;
}

.dcard .row {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	padding: 6px 0;
	border-top: 1px dashed #DCD6C6;
}

.dcard .row:first-of-type {
	border-top: none;
}

.dcard .row span:last-child {
	font-weight: 600;
	color: var(--text);
}

.dcard.wide {
	grid-column: span 2;
}

.dcard p {
	font-size: 13px;
	color: #5B6472;
	line-height: 1.6;
}

.dcard .tag {
	display: inline-block;
	font-size: 10px;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 3px 9px;
	border-radius: 999px;
	background: rgba(201, 162, 39, 0.14);
	color: #8A6C10;
	font-weight: 700;
	margin-bottom: 10px;
}

@media (max-width: 940px) {
	.details .grid {
		grid-template-columns:repeat(2, 1fr);
	}

	.dcard.wide {
		grid-column: span 2;
	}
}

@media (max-width: 560px) {
	.details .grid {
		grid-template-columns:1fr;
	}

	.dcard.wide {
		grid-column: span 1;
	}
}

/* ============ TRUST / CERTIFICATIONS ============ */
.trust {
	background: var(--teal);
	color: var(--ivory);
	position: relative;
	overflow: hidden;
}

.trust .wrap {
	position: relative;
}

.trust .head {
	max-width: 640px;
	margin-bottom: 48px;
}

.trust .head .eyebrow {
	color: var(--gold-soft);
}

.trust h2 {
	font-size: 34px;
	color: var(--ivory);
}

.trust .head p {
	font-size: 14.5px;
	color: #B9C7C2;
	margin-top: 14px;
	line-height: 1.7;
}

.trust .grid {
	display: grid;
	grid-template-columns:repeat(3, 1fr);
	gap: 2px;
	background: rgba(243, 239, 229, 0.1);
}

.tcard {
	background: var(--teal);
	padding: 30px 26px;
}

.tcard .icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	border: 1px solid var(--gold-line);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.tcard .icon svg {
	width: 20px;
	height: 20px;
}

.tcard h4 {
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	font-size: 19px;
	color: var(--ivory);
	margin-bottom: 8px;
}

.tcard p {
	font-size: 14px;
	color: #AEBDB8;
	line-height: 1.6;
}

@media (max-width: 940px) {
	.trust .grid {
		grid-template-columns:repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.trust .grid {
		grid-template-columns:1fr;
	}
}

.testi-slider {
	background: var(--t-cream);
	padding: 96px 0;
	font-family: 'Outfit', sans-serif;
}

.testi-slider .ts-wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

.ts-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	margin-bottom: 44px;
	flex-wrap: wrap;
}

.ts-eyebrow {
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	font-weight: 700;
	color: #8A6C10;
	margin-bottom: 14px;
}

.ts-head h2 {
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	font-size: 34px;
	color: #1B2230;
	max-width: 520px;
	line-height: 1.15;
	margin: 0;
}

.ts-head p {
	font-size: 14.5px;
	color: var(--t-stone);
	max-width: 420px;
	line-height: 1.6;
	margin: 0;
}

/* ---- slider shell ---- */
.ts-shell {
	position: relative;
}

.ts-viewport {
	overflow: hidden;
	border-radius: 20px;
}

.ts-track {
	display: flex;
	transition: transform .55s cubic-bezier(.22, .8, .25, 1);
}

.ts-slide {
	flex: 0 0 100%;
	padding: 4px;
}

.ts-card {
	background: var(--t-ink);
	border-radius: 20px;
	padding: 52px 56px;
	display: grid;
	grid-template-columns:auto 1fr;
	gap: 32px;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.ts-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(120% 140% at 85% -10%, rgba(217, 180, 92, 0.14), transparent 55%);
	pointer-events: none;
}

.ts-avatar-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	position: relative;
	z-index: 1;
}

.ts-avatar {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: linear-gradient(160deg, var(--t-gold-soft), var(--t-gold));
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 30px;
	color: #241B04;
	border: 3px solid rgba(234, 208, 140, 0.3);
	flex-shrink: 0;
}

.ts-stars {
	display: flex;
	gap: 3px;
}

.ts-stars svg {
	width: 13px;
	height: 13px;
	fill: var(--t-gold-soft);
}

.ts-body {
	position: relative;
	z-index: 1;
}

.ts-quote-mark {
	font-family: 'Outfit', sans-serif;
	font-size: 56px;
	line-height: .5;
	color: var(--t-gold);
	display: block;
	margin-bottom: 10px;
}

.ts-body blockquote {
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	font-size: 22px;
	line-height: 1.55;
	color: var(--t-ivory);
	margin: 0 0 22px;
	max-width: 640px;
}

.ts-who {
	display: flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
}

.ts-who .name {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 14.5px;
	color: var(--t-ivory);
}

.ts-who .loc {
	font-size: 12.5px;
	color: var(--t-stone);
}

.ts-who .dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--t-gold);
}

@media (max-width: 720px) {
	.ts-card {
		grid-template-columns:1fr;
		text-align: center;
		padding: 40px 28px;
	}

	.ts-avatar-col {
		align-items: center;
	}

	.ts-who {
		justify-content: center;
	}

	.ts-body blockquote {
		font-size: 19px;
	}
}

/* ---- arrows ---- */
.ts-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--t-cream);
	border: 1px solid rgba(27, 34, 48, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(27, 34, 48, 0.12);
	transition: background .2s ease, transform .2s ease;
	z-index: 2;
}

.ts-arrow:hover {
	background: var(--t-ink);
	transform: translateY(-50%) scale(1.05);
}

.ts-arrow:hover svg {
	stroke: var(--t-gold-soft);
}

.ts-arrow svg {
	width: 16px;
	height: 16px;
	stroke: #1B2230;
	transition: stroke .2s ease;
}

.ts-arrow.prev {
	left: -23px;
}

.ts-arrow.next {
	right: -23px;
}

@media (max-width: 900px) {
	.ts-arrow.prev {
		left: 6px;
	}

	.ts-arrow.next {
		right: 6px;
	}
}

/* ---- dots ---- */
.ts-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 28px;
}

.ts-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(27, 34, 48, 0.2);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: width .3s ease, background .3s ease;
}

.ts-dot.active {
	width: 26px;
	background: #1B2230;
}

.ts-cta {
	text-align: center;
	margin-top: 44px;
}

.ts-cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--t-ink);
	color: var(--t-gold-soft);
	font-size: 13.5px;
	font-weight: 600;
	padding: 14px 26px;
	border-radius: 999px;
	text-decoration: none;
	transition: background .2s ease;
}

.ts-cta a:hover {
	background: #000;
}

/* ============ FAQ ============ */
.faq {
	background: var(--paper);
}

.faq .wrap {
	display: grid;
	grid-template-columns:0.9fr 1.1fr;
	gap: 56px;
}

.faq .side h2 {
	font-size: 34px;
	margin-bottom: 14px;
}

.faq .side p {
	font-size: 14px;
	color: var(--stone);
	line-height: 1.7;
	margin-bottom: 22px;
}

.faq-item {
	border-bottom: 1px solid #EAE5D6;
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 4px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	font-family: 'Outfit', sans-serif;
	font-size: 16px;
	color: var(--text);
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item .plus {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1px solid var(--gold-line);
	flex-shrink: 0;
	position: relative;
}

.faq-item .plus::before, .faq-item .plus::after {
	content: "";
	position: absolute;
	background: var(--gold);
}

.faq-item .plus::before {
	left: 6px;
	right: 6px;
	top: 10px;
	height: 1.4px;
}

.faq-item .plus::after {
	top: 6px;
	bottom: 6px;
	left: 10px;
	width: 1.4px;
	transition: opacity .2s ease;
}

.faq-item[open] .plus::after {
	opacity: 0;
}

.faq-item .a {
	font-size: 13.8px;
	color: #4B5563;
	line-height: 1.75;
	padding: 0 4px 20px;
}

@media (max-width: 900px) {
	.faq .wrap {
		grid-template-columns:1fr;
	}
}

/* ============ OTHER PLANS ============ */
.plans {
	background: var(--ink);
	color: var(--ivory);
}

.plans .head {
	max-width: 600px;
	margin-bottom: 44px;
}

.plans h2 {
	font-size: 34px;
	color: var(--ivory);
}

.plans .head p {
	font-size: 14px;
	color: #9AA3AF;
	margin-top: 12px;
}

.plans .grid {
	display: grid;
	grid-template-columns:repeat(4, 1fr);
	gap: 18px;
}

.pcard {
	text-align: center;
	background: var(--panel);
	border: 1px solid rgba(243, 239, 229, 0.08);
	border-radius: 16px;
	padding: 26px 22px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.pcard .term {
	font-size: 10.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gold-soft);
	font-weight: 700;
}

.pcard h4 {
	font-weight: 500;
	font-family: 'Outfit', sans-serif;
	font-size: 23px;
	color: var(--ivory);
}

.pcard .bonus {
	padding: 10px 0;
	font-size: 14px;
	color: #B9C0CC;
	line-height: 1.6;
	flex-grow: 1;
}

.pcard .bonus b {
	color: var(--gold-soft);
	font-weight: 700;
}

@media (max-width: 940px) {
	.plans .grid {
		grid-template-columns:repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.plans .grid {
		grid-template-columns:1fr;
	}
}
