/* Grid */

.wg-gigs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
    max-width: 1200px;
	margin: 40px auto;
}

/* Card */

.wg-gig-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,.05);
	transition: all .3s ease;
}

.wg-gig-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

/* Image */

.wg-gig-image img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
}

/* Content */

.wg-gig-content {
	padding: 20px;
}

.wg-gig-title {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 15px;
	color: #111;
}

.wg-gig-price {
	font-size: 28px;
	font-weight: 700;
	color: #ff6b00;
}

/* Pagination */

.wg-pagination {
	display: flex;
	justify-content: center;
	margin-top: 40px;
	gap: 10px;
}

.wg-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid #ddd;
	text-decoration: none;
	color: #222;
	font-weight: 600;
	transition: .3s;
}

.wg-pagination .current {
	background: #ff6b00;
	color: #fff;
	border-color: #ff6b00;
}

.wg-pagination .page-numbers:hover {
	background: #ff6b00;
	color: #fff;
	border-color: #ff6b00;
}

/* Tablet */

@media (max-width: 1024px) {

	.wg-gigs-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile */

@media (max-width: 767px) {

	.wg-gigs-grid {
		grid-template-columns: 1fr;
	}

	.wg-gig-image img {
		height: 220px;
	}

	.wg-gig-title {
		font-size: 20px;
	}

	.wg-gig-price {
		font-size: 24px;
	}
}