.project_detail {
	width: 100%;
	height: auto;
	padding-top: 20px;
	display: flex;
	flex-direction: column;
}

.back-link {
	display: inline-block;
	margin-bottom: 15px;
	color: var(--main-color); 
	text-decoration: none;
	font-size: 1em;
}

.back-link:hover {
	text-decoration: underline;
}

.project_title {
	width: 100%;
	height: auto;
	font-size: 25px;
	margin-bottom: 10px;
}

.project_description1 {
	width: 100%;
	min-height: 200px;
	font-size: 15px;
	margin-bottom: 20px;
}

.img-title{
	width: 100%;
	height: auto;
	font-size: 25px;
	color: var(--main-color);
	text-align: left;
	padding-bottom: 10px;
}

.project_gallery {
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr); 
	gap: 10px; 
}

.gallery_item {
	width: 100%;
	height: auto;
	cursor: pointer;
}

.gallery_item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

@media (max-width: 768px) {
	.project_title {
		font-size: 1.2em;
	}

	.project_description1 {
		font-size: 0.9em;
	}

	.gallery_item {
		width: 100px;
		height: 100px;
	}
	
	.back-link {
		font-size: 12px;
		margin-bottom: 7px;
	}
}