.photos {
	width: 100%;
	margin: 0 0 var(--py-section);
}

.photos .js-photos-slider {
	position: relative;
}

.photos-image {
	width: 300px !important;
	aspect-ratio: 300/400;
}

.photos-image picture,
.photos-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.photos-arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.58);
	color: var(--color-black);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background-color .2s, color .2s;
}

.photos-arrow:hover,
.photos-arrow:focus{
	background-color: rgba(255, 255, 255, 0.58);
	color: var(--color-black);
}

.photos-arrow-prev {
	left: 10px;
}

.photos-arrow-next {
	right: 10px;
}

@media screen and (min-width: 768px) {
	.photos-image {
		width: 426px !important;
		aspect-ratio: 426/480;
	}

	.photos-arrow {
		width: 44px;
		height: 44px;
		font-size: 24px;
	}
}
