/* ------------------------------------	PORTFOLIO SINGLE */
/* --------------- GALLERY */
.els-portfolio-gallery {
	margin-top: 60px;
}
.els-portfolio-gallery__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}
.els-portfolio-gallery__item {
	display: block;
	overflow: hidden;
	background-color: var(--c-grey-100);
}
.els-portfolio-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: var(--a-anim);
}
.els-portfolio-gallery__item:hover img {
	transform: scale(1.04);
}

/* --------------- VIDEO */
.els-portfolio-video {
	margin-top: 60px;
}
.els-portfolio-video__embed {
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 9;
}
.els-portfolio-video__embed iframe,
.els-portfolio-video__embed video {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 1024px) {
	.els-portfolio-gallery__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media screen and (max-width: 767px) {
	.els-portfolio-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* --------------- INFO */
.qodef-grid-item.qodef-col--3.qodef-portfolio-info {
	display: none;
}
.qodef-portfolio-single-item .qodef-grid-inner.clear {
	display: flex;
	justify-content: center;
}
.qodef-portfolio-single .qodef-variations--big .qodef-portfolio-content {
	width: 100%;
}

