.custom-gallery__mobile {
	display: flex;
	gap: 10px;
}
.custom-gallery__mobile-first {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.custom-gallery__mobile-last {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.custom-gallery__mobile-first .custom-gallery__item:nth-child(1),
.custom-gallery__mobile-first .custom-gallery__item:nth-child(4),
.custom-gallery__mobile-last .custom-gallery__item:nth-child(3) {
	aspect-ratio: 0.75;
}
.custom-gallery__mobile-first .custom-gallery__item:nth-child(3) {
	aspect-ratio: 0.9;
}

.custom-gallery__desktop {
	display: none;
	margin: 0 -5px -10px;
}
.custom-gallery__desktop .custom-gallery__item {
	width: 40%;
	flex: 0 0 40%;
	aspect-ratio: 1.52;
	padding-left: 5px;
	padding-right: 5px;
	margin-bottom: 10px;
}
.custom-gallery__desktop .custom-gallery__item:nth-child(2),
.custom-gallery__desktop .custom-gallery__item:nth-child(4),
.custom-gallery__desktop .custom-gallery__item:nth-child(9) {
	width: 20%;
	flex: 0 0 20%;
	aspect-ratio: 0.75;
}


.custom-gallery__item {
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-gallery__item a {
	display: block;
	width: 100%;
	height: 100%;
}

.custom-gallery__item img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

@media all and (min-width: 1024px) {
	.custom-gallery__mobile {
		display: none;
	}
	.custom-gallery__desktop {
		display: flex;
		flex-wrap: wrap;
	}
}
