/* Carousel */
.fw-carousel {
	padding: 100px 20px;
}

.fw-carousel-container {
	position: relative;
	overflow: hidden;
	padding: 30px;
}

.fw-carousel-track > .wp-block-group__inner-container {
	display: flex;
	gap: 30px;
	transition: transform 0.5s ease;
}

.fw-carousel-card {
	flex: 0 0 calc(33.333% - 20px);
	width: calc(33.333% - 20px);
}

.fw-carousel-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: white;
	border: 2px solid #ca9b52;
	color: #ca9b52;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fw-carousel-button:hover {
	background-color: #ca9b52;
	color: white;
}

.fw-carousel-button.prev {
	left: 0;
}

.fw-carousel-button.next {
	right: 0;
}

.fw-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 40px;
}

.fw-carousel .dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
}

.fw-carousel .dot.active {
	background-color: #ca9b52;
	width: 30px;
	border-radius: 6px;
}

/* Responsive */
@media (max-width: 968px) {
	.fw-carousel {
		padding: 50px 0px;
	}
	
	.fw-carousel-card {
		flex: 0 0 100%;
		width: 100%;
	}

	.fw-carousel-container {
		padding: 30px;
	}

	.fw-carousel-button {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
}

@media (max-width: 768px) {
	.fw-carousel-track > .wp-block-group__inner-container {
		gap: 20px;
	}
}
