/* =========================================================
   UDLESS SERVICE ENGINE
   RELATED PROJECTS
   ========================================================= */


/* =========================================================
   PROJECTS GRID
   ========================================================= */

.udless-service-related-projects {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	width: 100%;
}


/* =========================================================
   PROJECT ITEM
   ========================================================= */

.udless-service-related-projects
> .udless-elementor-repeater-item {
	min-width: 0;
	width: 100%;
	height: 100%;
}


/* =========================================================
   LOOP TEMPLATE
   ========================================================= */

.udless-service-related-projects
> .udless-elementor-repeater-item
> * {
	width: 100%;
	height: 100%;
}


/* =========================================================
   TABLET
   2 COLUMNS
   ========================================================= */

@media (max-width: 1024px) {

	.udless-service-related-projects {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}


/* =========================================================
   MOBILE
   1 COLUMN
   ========================================================= */

@media (max-width: 767px) {

	.udless-service-related-projects {
		grid-template-columns: 1fr;
		gap: 20px;
	}

}