.wcs-slider-outer {
	position: relative;
	padding: 0 4px;
}

.wcs-swiper {
	overflow: hidden;
}

.wcs-swiper .swiper-wrapper {
	align-items: stretch;
}

.wcs-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: transparent;
}

.wcs-card__image-wrap {
	width: 100%;
	height: 340px;
	overflow: hidden;
	border-radius: 4px;
	margin-bottom: 20px;
}

.wcs-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.wcs-card:hover .wcs-card__image {
	transform: scale(1.04);
}

.wcs-card__content {
	text-align: left;
}

.wcs-card__heading {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
	margin: 0 0 10px;
}

.wcs-card__subheading {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #6b6b6b;
	margin: 0 0 16px;
}

.wcs-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-decoration: none;
	color: #1a1a1a;
	border-bottom: 1px solid currentColor;
	padding-bottom: 3px;
	transition: color 0.25s ease;
}

.wcs-card__link-arrow {
	transition: transform 0.25s ease;
}

.wcs-card__link:hover {
	color: #8a6d3b;
}

.wcs-card__link:hover .wcs-card__link-arrow {
	transform: translateX(4px);
}

/* Navigation arrows */
.wcs-nav-btn {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid #1a1a1a;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	color: #1a1a1a;
	z-index: 5;
	transition: background 0.25s ease, color 0.25s ease;
}

.wcs-nav-btn:hover {
	background: #1a1a1a;
	color: #fff;
}

.wcs-nav-prev { left: -22px; }
.wcs-nav-next { right: -22px; }

.wcs-nav-btn.swiper-button-disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

/* Pagination dots */
.wcs-slider-outer .swiper-pagination {
	position: static;
	margin-top: 24px;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.wcs-slider-outer .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #d9d9d9;
	opacity: 1;
	margin: 0 !important;
}

.wcs-slider-outer .swiper-pagination-bullet-active {
	background: #c9a45c;
}

@media (max-width: 767px) {
	.wcs-nav-btn { display: none; }
	.wcs-card__image-wrap { height: 220px; }
}
