.psap-section {
	margin-top: 48px;
	margin-bottom: 48px;
	padding-top: 32px;
	padding-bottom: 8px;
	border-top: 1px solid #eee;
}

.psap-section__title {
	font-size: 1.5em;
	text-align: center;
	margin-bottom: 24px;
	letter-spacing: 0.02em;
}

.psap-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 14px;
}

.psap-tile {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 4px;
	aspect-ratio: 4 / 5;
}

.psap-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.psap-tile:hover img {
	transform: scale(1.04);
}

.psap-tile__icon {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
}

.psap-grid--gallery {
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 24px;
}

.psap-gallery-item__products {
	margin-top: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.psap-gallery-item__product {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8em;
	text-decoration: none;
	color: inherit;
	border: 1px solid #eee;
	border-radius: 20px;
	padding: 3px 10px 3px 3px;
}

.psap-gallery-item__product img {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	object-fit: cover;
}
