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

.amora-single-product {
	--amora-cream: #fdfaf6;
	--amora-ink: #1c1c1e;
	--amora-gold: #c9a96e;
	--amora-gold-dark: #b6965b;
	--amora-muted: #6b7280;
	--amora-line: #f3f4f6;
	background: var(--amora-cream);
	color: var(--amora-ink);
}

.amora-lightbox-open {
	overflow: hidden;
}

.amora-single-product a {
	color: inherit;
	text-decoration: none;
}

.amora-single-product img {
	display: block;
	max-width: 100%;
	height: auto;
}

.amora-single-product button,
.amora-single-product select,
.amora-single-product input,
.amora-single-product textarea {
	font: inherit;
}

.amora-container,
.amora-breadcrumb,
.amora-hero,
.amora-details-section,
.amora-related-container,
.amora-sticky-cart__inner {
	width: 100%;
	max-width: 80rem;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1rem;
	padding-left: 1rem;
}

.amora-breadcrumb {
	display: flex;
	align-items: center;
	gap: .5rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	color: #6b7280;
	font-size: .75rem;
	line-height: 1rem;
}

.amora-breadcrumb__link {
	cursor: pointer;
	transition: color .2s ease;
}

.amora-breadcrumb__link:hover,
.amora-breadcrumb__current {
	color: var(--amora-ink);
}

.amora-breadcrumb__current {
	font-weight: 500;
}

.amora-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 3rem;
	padding-bottom: 3rem;
}

.amora-gallery {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.amora-gallery__main {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border: 1px solid var(--amora-line);
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
	touch-action: pan-y;
}

.amora-main-image {
	display: block;
	width: 100%;
	height: 100%;
	cursor: zoom-in;
}

.amora-single-product img.amora-image-cover {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.amora-main-image img.amora-image-cover {
	transition: transform .25s ease;
	will-change: transform;
}

.amora-gallery__main:hover .amora-main-image img.amora-image-cover,
.amora-gallery__main.is-zooming .amora-main-image img.amora-image-cover {
	transform: scale(1.85);
}

.amora-gallery__main .onsale {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	border-radius: 999px;
	background: #fef2f2;
	color: #dc2626;
	padding: .25rem .75rem;
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
}

.amora-zoom-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	display: flex;
	align-items: center;
	gap: .5rem;
	border: 1px solid var(--amora-line);
	border-radius: 999px;
	background: rgb(255 255 255 / 90%);
	padding: .25rem .75rem;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

.amora-live-dot,
.amora-low-stock__dot {
	display: block;
	width: .5rem;
	height: .5rem;
	border-radius: 999px;
	background: #22c55e;
	animation: amora-pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
}

.amora-low-stock__dot {
	background: #dc2626;
}

.amora-lightbox-button {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--amora-line);
	border-radius: 999px;
	background: rgb(255 255 255 / 90%);
	padding: .5rem;
	color: #6b7280;
	box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
	transition: color .2s ease;
	backdrop-filter: blur(8px);
}

.amora-lightbox-button:hover {
	color: var(--amora-gold);
}

.amora-gallery-dots {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	display: flex;
	gap: .375rem;
	transform: translateX(-50%);
}

.amora-single-product button.amora-gallery-dot {
	display: block;
	min-width: 0;
	width: .375rem;
	height: .375rem;
	border: 0;
	border-radius: 999px;
	background: #d1d5db !important;
	padding: 0;
	margin: 0;
	box-shadow: none;
	appearance: none;
	cursor: pointer;
	transition: width .2s ease, background-color .2s ease;
}

.amora-single-product button.amora-gallery-dot--active {
	width: 1rem;
	background: var(--amora-gold) !important;
}

.amora-gallery-thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.amora-gallery-thumb {
	display: block;
	padding: 0;
	margin: 0;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border: 2px solid transparent;
	border-radius: .75rem;
	background: #fff;
	box-shadow: none;
	opacity: .6;
	appearance: none;
	cursor: pointer;
	transition: opacity .2s ease, border-color .2s ease;
}

.amora-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(0 0 0 / 82%);
	padding: 2rem;
}

.amora-lightbox img {
	display: block;
	max-width: min(96vw, 1200px);
	max-height: 90vh;
	width: auto;
	height: auto;
	border-radius: 1rem;
	object-fit: contain;
	box-shadow: 0 25px 50px -12px rgb(0 0 0 / 45%);
}

.amora-lightbox__close {
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 1;
	width: 2.75rem;
	height: 2.75rem;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: var(--amora-ink);
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

.amora-gallery-thumb:hover,
.amora-gallery-thumb.is-active {
	opacity: 1;
}

.amora-gallery-thumb.is-active {
	border-color: var(--amora-gold) !important;
	opacity: 1;
}

.amora-summary {
	display: flex;
	flex-direction: column;
}

.amora-summary__header > * + *,
.amora-add-to-cart > * + *,
.amora-reviews-summary > * + *,
.amora-tabs-card > * + * {
	margin-top: 1rem;
}

.amora-product-title {
	margin: 0;
	color: var(--amora-ink);
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.15;
}

.amora-rating-link {
	display: block;
	transition: opacity .2s ease;
}

.amora-rating-link:hover {
	opacity: .8;
}

.amora-rating-row,
.amora-stars,
.amora-price-row,
.amora-badge,
.amora-low-stock,
.amora-product-card__footer,
.amora-review-score-row,
.amora-sticky-cart__inner,
.amora-sticky-product,
.amora-sticky-cart__button {
	display: flex;
	align-items: center;
}

.amora-rating-row,
.amora-stars {
	gap: .25rem;
}

.amora-stars {
	color: #f59e0b;
}

.amora-rating-text {
	margin-left: .25rem;
	color: #4b5563;
	font-size: .875rem;
}

.amora-underlined {
	text-decoration: underline;
}

.amora-price-row {
	gap: 1rem;
	align-items: baseline;
}

.amora-main-price {
	color: var(--amora-ink);
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 2.25rem;
}

.amora-main-price del {
	color: #9ca3af;
	font-size: 1.125rem;
	font-weight: 400;
}

.amora-main-price ins {
	text-decoration: none;
}

.amora-sale-badge {
	border-radius: .375rem;
	background: #fef2f2;
	color: #dc2626;
	padding: .125rem .5rem;
	font-size: .75rem;
	font-weight: 700;
}

.amora-short-description {
	color: #6b7280;
	font-size: 1.125rem;
	font-style: italic;
	font-weight: 500;
	line-height: 1.75rem;
}

.amora-divider {
	margin: 2rem 0;
	border: 0;
	border-top: 1px solid var(--amora-line);
}

.amora-badges {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin-bottom: 2rem;
}

.amora-badge {
	gap: .375rem;
	border: 1px solid var(--amora-line);
	border-radius: 999px;
	background: #fff;
	padding: .375rem .75rem;
	color: #374151;
	font-size: .75rem;
	font-weight: 500;
	box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
}

.amora-badge__icon {
	color: var(--amora-gold);
}

.amora-low-stock {
	gap: .375rem;
	color: #dc2626;
	font-size: .875rem;
	font-weight: 700;
	animation: amora-pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
}

.amora-add-to-cart form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	margin: 0;
}

.amora-add-to-cart form.cart::before,
.amora-add-to-cart form.cart::after {
	display: none;
}

.amora-add-to-cart .quantity {
	display: flex;
	align-items: center;
	min-width: 8rem;
	height: 3.5rem;
	overflow: hidden;
	border: 2px solid #e5e7eb;
	border-radius: 999px;
	background: #fff;
}

.amora-add-to-cart .quantity .minus,
.amora-add-to-cart .quantity .plus {
	width: 2.75rem;
	height: 100%;
	border: 0;
	background: transparent;
	color: var(--amora-ink);
	font-weight: 700;
	cursor: pointer;
}

.amora-add-to-cart .quantity input.qty {
	width: 100%;
	height: 100%;
	border: 0;
	background: transparent;
	text-align: center;
	font-size: 1.125rem;
	font-weight: 700;
	outline: 0;
}

.amora-add-to-cart .single_add_to_cart_button,
.amora-add-to-cart .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.5rem;
	border: 0;
	border-radius: 999px;
	background: var(--amora-gold);
	color: #fff;
	padding: 0 2rem;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 10px 15px -3px rgb(120 53 15 / 10%), 0 4px 6px -4px rgb(120 53 15 / 10%);
	transition: background-color .2s ease, transform .2s ease;
}

.amora-add-to-cart .single_add_to_cart_button {
	flex: 1 1 12rem;
}

.amora-add-to-cart .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	width: 100%;
}

.amora-add-to-cart .woocommerce-variation-price {
	width: 100%;
	color: var(--amora-ink);
	font-size: 1.25rem;
	font-weight: 700;
}

.amora-add-to-cart .woocommerce-variation-availability {
	width: 100%;
}

.amora-add-to-cart .stock {
	margin: 0;
	font-size: .875rem;
	font-weight: 700;
}

.amora-add-to-cart .single_add_to_cart_button:hover,
.amora-add-to-cart .button:hover {
	background: var(--amora-gold-dark);
	color: #fff;
}

.amora-add-to-cart .variations {
	width: 100%;
	margin: 0;
	border: 0;
	table-layout: auto;
}

.amora-add-to-cart .variations th,
.amora-add-to-cart .variations td {
	display: block;
	padding: 0 0 .75rem;
	border: 0;
	text-align: left;
}

.amora-add-to-cart .variations label {
	display: block;
	margin-bottom: .75rem;
	color: #111827;
	font-size: .875rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.amora-add-to-cart .variations select {
	width: min(100%, 18rem);
	min-height: 2.75rem;
	border: 2px solid #e5e7eb;
	border-radius: 999px;
	background: #fff;
	padding: 0 1rem;
	color: #4b5563;
	font-weight: 600;
	outline: 0;
}

.amora-add-to-cart .wcpay-payment-request-wrapper,
.amora-add-to-cart .wcpay-express-checkout-wrapper,
.amora-add-to-cart .wc-stripe-product-checkout-container {
	width: 100%;
	margin-top: .75rem;
}

.amora-add-to-cart .paypal-button-container,
.amora-add-to-cart .ppc-button-wrapper {
	width: 100%;
}

.amora-add-to-cart .reset_variations {
	margin-left: .75rem;
	color: var(--amora-gold);
	font-size: .875rem;
	font-weight: 700;
}

.amora-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .5rem;
	margin-top: 1.5rem;
	padding: 1rem 0;
	border-top: 1px solid var(--amora-line);
	border-bottom: 1px solid var(--amora-line);
}

.amora-trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .25rem;
	text-align: center;
}

.amora-trust-item--middle {
	border-right: 1px solid var(--amora-line);
	border-left: 1px solid var(--amora-line);
	padding: 0 .5rem;
}

.amora-trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--amora-gold);
}

.amora-trust-icon svg {
	display: block;
	width: 24px;
	height: 24px;
}

.amora-trust-icon--return svg {
	width: 30px;
	height: 30px;
	stroke-width: 1.7;
}

.amora-trust-icon--return img {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.amora-trust-label {
	color: #6b7280;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.amora-product-meta {
	color: #4b5563;
	font-size: .875rem;
}

.amora-product-meta > * + * {
	margin-top: .25rem;
}

.amora-attribute-band {
	border-top: 1px solid var(--amora-line);
	border-bottom: 1px solid var(--amora-line);
	background: var(--amora-cream);
	padding: 4rem 0;
}

.amora-attribute-scroll {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	overflow-x: auto;
	padding: 0 1rem;
	scrollbar-width: none;
}

.amora-attribute-scroll::-webkit-scrollbar {
	display: none;
}

.amora-attribute-list {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	min-width: 1000px;
}

.amora-attribute-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 180px;
	text-align: center;
}

.amora-attribute-item > * + * {
	margin-top: .75rem;
}

.amora-attribute-icon {
	margin-bottom: .5rem;
	color: var(--amora-gold);
	font-size: 2.25rem;
	transition: transform .3s ease;
}

.amora-attribute-item:hover .amora-attribute-icon {
	transform: scale(1.1);
}

.amora-attribute-item h3 {
	margin: 0;
	font-size: .875rem;
	font-weight: 700;
}

.amora-attribute-item p {
	margin: 0;
	color: #6b7280;
	font-size: .75rem;
	line-height: 1.625;
}

.amora-details-section {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 4rem;
	align-items: center;
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.amora-section-title {
	margin: 0 0 2.5rem;
	color: var(--amora-ink);
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 2.25rem;
}

.amora-details-copy .amora-section-title {
	margin-bottom: 2rem;
}

.amora-prose {
	max-width: 42rem;
	color: #4b5563;
	line-height: 1.625;
}

.amora-prose p {
	margin-top: 0;
	margin-bottom: 1rem;
}

.amora-details-image {
	overflow: hidden;
	border-radius: 32px;
	background: linear-gradient(to top right, #fffbeb, #fff1f2);
	box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
}

.amora-tabs-section {
	background: rgb(243 244 246 / 50%);
	padding: 6rem 0;
}

.amora-tabs-card {
	border-radius: 32px;
	background: #fff;
	padding: 2.5rem;
	box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
}

.amora-tabs-card .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
}

.amora-tabs-card .woocommerce-tabs ul.tabs li a {
	display: block;
	border: 1px solid var(--amora-line);
	border-radius: 999px;
	background: var(--amora-cream);
	padding: .7rem 1rem;
	color: var(--amora-ink);
	font-weight: 700;
}

.amora-tabs-card .woocommerce-tabs ul.tabs li.active a {
	border-color: var(--amora-gold);
	background: var(--amora-gold);
	color: #fff;
}

.amora-tabs-card .woocommerce-tabs ul.tabs li a span::after {
	display: none;
}

.amora-tabs-card .woocommerce-tabs .panel {
	color: #4b5563;
	line-height: 1.625;
}

.amora-reviews-section,
.amora-related-section {
	border-top: 1px solid var(--amora-line);
	background: #fff;
	padding: 6rem 0;
}

.amora-reviews-layout {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.amora-review-score-row {
	gap: 1rem;
}

.amora-review-score {
	font-size: 3.75rem;
	font-weight: 700;
	line-height: 1;
}

.amora-review-score-meta > * + * {
	margin-top: .25rem;
}

.amora-review-score-meta p {
	margin: 0;
	color: #6b7280;
	font-size: .875rem;
	font-weight: 500;
}

.amora-reviews-list {
	flex: 1 1 0%;
}

.amora-reviews-list .commentlist {
	margin: 0;
	padding: 0;
	list-style: none;
}

.amora-reviews-list .commentlist li {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--amora-line);
}

.amora-reviews-list .comment-text {
	color: #4b5563;
	line-height: 1.625;
}

.amora-reviews-list .star-rating {
	color: #f59e0b;
}

.amora-reviews-list #review_form_wrapper {
	margin-top: 2rem;
}

.amora-reviews-list #review_form input,
.amora-reviews-list #review_form textarea {
	width: 100%;
	border: 1px solid #e5e7eb;
	border-radius: .75rem;
	padding: .85rem 1rem;
}

.amora-reviews-list #review_form .form-submit input {
	width: auto;
	border: 0;
	border-radius: 999px;
	background: var(--amora-gold);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.amora-related-container > * + * {
	margin-top: 4rem;
}

.amora-upsell-grid,
.amora-related-grid {
	display: grid;
	gap: 2rem;
}

.amora-upsell-grid {
	grid-template-columns: minmax(0, 1fr);
}

.amora-related-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.amora-product-card {
	display: flex;
	flex-direction: column;
}

.amora-product-card__image {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 1rem;
	background: #f9fafb;
	margin-bottom: 1.5rem;
}

.amora-product-card--small .amora-product-card__image {
	margin-bottom: 1rem;
}

.amora-product-card__overlay {
	position: absolute;
	inset: 0;
	background: rgb(0 0 0 / 0%);
	transition: background-color .3s ease;
}

.amora-product-card:hover .amora-product-card__overlay {
	background: rgb(0 0 0 / 5%);
}

.amora-product-card__title {
	margin: 0 0 .25rem;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.35;
}

.amora-product-card--small .amora-product-card__title {
	font-size: .875rem;
}

.amora-card-rating {
	margin-bottom: .75rem;
}

.amora-product-card__footer {
	justify-content: space-between;
	gap: 1rem;
	margin-top: auto;
}

.amora-product-card__price {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.75rem;
}

.amora-product-card--small .amora-product-card__price {
	font-size: 1rem;
	line-height: 1.5rem;
}

.amora-card-add-button {
	color: var(--amora-gold);
	font-size: .875rem;
	font-weight: 700;
}

.amora-card-add-button:hover {
	text-decoration: underline;
}

.amora-icon-cart-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: .5rem;
	transition: background-color .2s ease;
}

.amora-icon-cart-button:hover {
	background: #f3f4f6;
}

.amora-sticky-cart {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 50;
	border-top: 1px solid var(--amora-line);
	background: rgb(255 255 255 / 95%);
	box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
	backdrop-filter: blur(12px);
}

.amora-sticky-cart__inner {
	height: 5rem;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.amora-sticky-product {
	gap: 1rem;
	min-width: 0;
}

.amora-sticky-product__image {
	display: none;
	width: 3.5rem;
	height: 3.5rem;
	flex-shrink: 0;
	overflow: hidden;
	border: 1px solid var(--amora-line);
	border-radius: .5rem;
	background: #fffbeb;
}

.amora-sticky-product__title {
	max-width: 120px;
	overflow: hidden;
	margin: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: .75rem;
	font-weight: 700;
}

.amora-sticky-product__price {
	margin: 0;
	font-size: .875rem;
	font-weight: 700;
}

.amora-sticky-cart__button {
	flex-shrink: 0;
	justify-content: center;
	gap: .5rem;
	height: 3rem;
	border-radius: 999px;
	background: var(--amora-gold);
	color: #fff;
	padding: 0 1.5rem;
	font-size: .875rem;
	font-weight: 700;
	box-shadow: 0 10px 15px -3px rgb(120 53 15 / 10%), 0 4px 6px -4px rgb(120 53 15 / 10%);
	transition: background-color .2s ease, transform .2s ease;
}

.amora-sticky-cart__button:hover {
	background: var(--amora-gold-dark);
	color: #fff;
}

.amora-sticky-cart__button:active {
	transform: scale(.95);
}

.amora-sticky-cart__label {
	display: none;
}

.amora-sticky-cart__label-mobile {
	display: inline;
}

@keyframes amora-pulse {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: .5;
	}
}

@media (min-width: 640px) {
	.amora-sticky-product__image {
		display: block;
	}

	.amora-sticky-cart__label {
		display: inline;
	}

	.amora-sticky-cart__label-mobile {
		display: none;
	}

	.amora-upsell-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	.amora-breadcrumb {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
		font-size: .875rem;
	}

	.amora-product-title {
		font-size: 3rem;
		line-height: 1;
	}

	.amora-tabs-card {
		padding: 3.5rem;
	}

	.amora-reviews-layout {
		flex-direction: row;
	}

	.amora-reviews-summary {
		width: 33.333333%;
	}

	.amora-sticky-cart__inner {
		height: 6rem;
	}

	.amora-sticky-product__title {
		max-width: none;
		font-size: .875rem;
	}

	.amora-sticky-product__price {
		font-size: 1.125rem;
		line-height: 1.75rem;
	}

	.amora-sticky-cart__button {
		height: 3.5rem;
		padding-right: 3rem;
		padding-left: 3rem;
		font-size: 1.125rem;
	}
}

@media (min-width: 1024px) {
	.amora-hero,
	.amora-details-section {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.amora-hero {
		gap: 5rem;
	}

	.amora-upsell-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.amora-related-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
