.repm-project-carousel {
	width: 100%;
	position: relative;
	margin: 40px 0;
	box-sizing: border-box;
}

.repm-project-carousel *,
.repm-project-carousel *::before,
.repm-project-carousel *::after {
	box-sizing: border-box;
}


/* =========================
   HEADER
========================= */

.repm-carousel-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 25px;
	margin-bottom: 25px;
}

.repm-carousel-small-title {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #1f5eff;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 6px;
}

.repm-carousel-heading h2 {
	margin: 0;
	font-size: 34px;
	line-height: 1.2;
	color: #172033;
}


/* =========================
   NAVIGATION
========================= */

.repm-carousel-navigation {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.repm-carousel-prev,
.repm-carousel-next {
	width: 44px;
	height: 44px;
	border: 1px solid #dce2ea;
	background: #ffffff;
	color: #172033;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s ease;
}

.repm-carousel-prev:hover,
.repm-carousel-next:hover {
	background: #1f5eff;
	color: #ffffff;
	border-color: #1f5eff;
}


/* =========================
   VIEWPORT
========================= */

.repm-carousel-viewport {
	width: 100%;
	overflow: hidden;
}

.repm-carousel-track {
	display: flex;
	gap: 24px;
	transition: transform 0.55s ease;
	will-change: transform;
}

.repm-carousel-slide {
	flex: 0 0 calc((100% - 48px) / 3);
	min-width: 0;
}


/* =========================
   PROJECT CARD
========================= */

.repm-project-card {
	background: #ffffff;
	border: 1px solid #e4e8ee;
	border-radius: 14px;
	overflow: hidden;
	height: 100%;
	box-shadow: 0 8px 25px rgba(15, 23, 42, 0.07);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.repm-project-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
}


/* =========================
   IMAGE
========================= */

.repm-project-image {
	display: block;
	position: relative;
	height: 270px;
	overflow: hidden;
	background: #eef2f6;
}

.repm-project-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.repm-project-card:hover .repm-project-image img {
	transform: scale(1.05);
}


/* STATUS */

.repm-project-status {
	position: absolute;
	left: 14px;
	top: 14px;
	padding: 7px 11px;
	border-radius: 20px;
	background: #ffffff;
	color: #172033;
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}


/* =========================
   CONTENT
========================= */

.repm-project-content {
	padding: 20px;
}

.repm-project-type {
	font-size: 13px;
	font-weight: 700;
	color: #1f5eff;
	text-transform: uppercase;
	margin-bottom: 7px;
	letter-spacing: 0.4px;
}

.repm-project-content h3 {
	margin: 0 0 10px;
	font-size: 23px;
	line-height: 1.3;
}

.repm-project-content h3 a {
	color: #172033;
	text-decoration: none;
}

.repm-project-content h3 a:hover {
	color: #1f5eff;
}


/* LOCATION */

.repm-project-location {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #667085;
	font-size: 14px;
	margin-bottom: 14px;
}

.repm-location-icon {
	font-size: 15px;
}


/* PRICE */

.repm-project-price {
	font-size: 18px;
	font-weight: 800;
	color: #172033;
	margin-bottom: 17px;
}


/* BUTTON */

.repm-project-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 12px 15px;
	border-radius: 8px;
	background: #f1f4f8;
	color: #172033;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	transition: all 0.25s ease;
}

.repm-project-button span {
	font-size: 18px;
}

.repm-project-button:hover {
	background: #1f5eff;
	color: #ffffff;
}


/* =========================
   DOTS
========================= */

.repm-carousel-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7px;
	margin-top: 24px;
}

.repm-carousel-dot {
	width: 8px;
	height: 8px;
	border: 0;
	padding: 0;
	border-radius: 50%;
	background: #cbd3df;
	cursor: pointer;
	transition: all 0.25s ease;
}

.repm-carousel-dot.active {
	width: 25px;
	border-radius: 10px;
	background: #1f5eff;
}


/* =========================
   EMPTY
========================= */

.repm-carousel-empty {
	padding: 30px;
	border: 1px solid #e3e8ef;
	border-radius: 10px;
	text-align: center;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

	.repm-carousel-heading h2 {
		font-size: 30px;
	}

	.repm-carousel-track {
		gap: 20px;
	}

	.repm-carousel-slide {
		flex-basis: calc((100% - 20px) / 2);
	}

	.repm-project-image {
		height: 240px;
	}
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

	.repm-carousel-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.repm-carousel-heading h2 {
		font-size: 27px;
	}

	.repm-carousel-navigation {
		align-self: flex-end;
	}

	.repm-carousel-track {
		gap: 15px;
	}

	.repm-carousel-slide {
		flex-basis: 100%;
	}

	.repm-project-image {
		height: 250px;
	}

	.repm-project-content {
		padding: 17px;
	}

	.repm-project-content h3 {
		font-size: 21px;
	}
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

	.repm-carousel-heading h2 {
		font-size: 24px;
	}

	.repm-project-image {
		height: 220px;
	}

	.repm-carousel-prev,
	.repm-carousel-next {
		width: 40px;
		height: 40px;
	}
}