/* section.selections { overflow: hidden; } */
.selections__container {}
.selections__content {}
.selections__heading {
	margin-inline: auto;
    margin-bottom: 40px;
}
.selections__slider[class~="selections__slider"] { overflow: visible; }
.selections__list {}
.selections__item-wrapper {}
.selections__item-link {}
.selections__item {
	max-width: max-content;
    padding: 30px;
    border-radius: 30px;
    background-color: var(--white-color);
}
.selections__item-image-wrapper {
	max-width: max-content;
	border-radius: 30px;
	overflow: hidden;
}
.selections__item-image {
	aspect-ratio: 357 / 487;
	width: auto;
	height: 487px;
	transform: scale(1.2);
	transition: transform 0.4s ease;
	will-change: transform;
}
.selections__item-image-wrapper:hover .selections__item-image { transform: scale(1); }
.selections__item-text {
	margin-top: 30px;
	display: grid;
	gap: 10px;
}
.selections__item-name {}
.selections__item-count { color: color-mix(in srgb, var(--black-color) 56%, transparent); }