* {
	box-sizing: border-box;
}

.lcwc.communities-container {
	max-width: 1400px;
	margin: 0 auto;
}

.lcwc {
	background: linear-gradient(135deg, #f5efe8 0%, #e8d9cc 100%);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
	padding: 40px 16px;
	min-height: auto;
	border-radius: 28px;
}

/* Main Container */
.lcwc .communities-container {
	max-width: 1400px;
	margin: 0 auto;
}

/* Header Section */
.lcwc .communities-header {
	text-align: center;
	margin-bottom: 32px;
}

.lcwc .communities-header h2 {
	font-size: 1.8rem;
	color: #5a3a1a;
	margin-bottom: 8px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.lcwc .header-whatsapp-icon {
	width: 42px;
	height: 42px;
	background: linear-gradient(135deg, #25D366, #128C7E);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	animation: lcwc-pulse 2s infinite;
}

.lcwc .header-whatsapp-icon svg {
	width: 26px;
	height: 26px;
	fill: white;
}

@keyframes lcwc-pulse {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
	}
}

.lcwc .communities-header p {
	color: #7a481e;
	font-size: 0.95rem;
	max-width: 550px;
	margin: 0 auto;
	line-height: 1.5;
}

/* Horizontal Scroll Wrapper */
.lcwc .scroll-wrapper {
	position: relative;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: #25D366 #e8d9cc;
	padding: 8px 0 20px 0;
	margin: 0 -8px;
}

.lcwc .scroll-wrapper::-webkit-scrollbar {
	height: 4px;
}

.lcwc .scroll-wrapper::-webkit-scrollbar-track {
	background: #e8d9cc;
	border-radius: 10px;
}

.lcwc .scroll-wrapper::-webkit-scrollbar-thumb {
	background: #25D366;
	border-radius: 10px;
}

/* Cards Container */
.lcwc .cards-horizontal {
	display: flex;
	gap: 16px;
	padding: 0 8px;
}

/* Card Styles */
.lcwc .whatsapp-card {
	flex-shrink: 0;
	width: calc(50% - 8px);
	min-width: 190px;
	max-width: 220px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	cursor: pointer;
	animation: lcwc-fadeInUp 0.4s ease forwards;
	animation-delay: calc(var(--delay, 0) * 0.05s);
}

.lcwc .whatsapp-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(37, 211, 102, 0.2);
}

/* Card Header */
.lcwc .card-header {
	position: relative;
	padding: 18px 12px 14px;
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.lcwc .card-icon {
	width: 55px;
	height: 55px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	animation: lcwc-float 3s ease-in-out infinite;
}

.lcwc .card-icon svg {
	width: 32px;
	height: 32px;
	fill: white;
}

@keyframes lcwc-float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-3px); }
}

.lcwc .card-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0;
	line-height: 1.3;
}

/* Card Content - No purpose section */
.lcwc .card-content {
	padding: 14px;
}

.lcwc .community-purpose {
	display: none;
}

.lcwc .why-join {
	font-size: 0.7rem;
	color: #5a3a1a;
	margin-bottom: 14px;
	background: #f5efe8;
	padding: 8px;
	border-radius: 10px;
	line-height: 1.4;
}

.lcwc .why-join span {
	font-weight: 700;
	color: #25D366;
}

/* Full Width WhatsApp Join Button */
.lcwc .btn-whatsapp {
	width: 100%;
	background: linear-gradient(135deg, #25D366, #128C7E);
	color: white;
	border: none;
	padding: 10px 12px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
	text-align: center;
	animation: lcwc-subtlePulse 1.5s infinite ease-in-out;
}

@keyframes lcwc-subtlePulse {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
	}
	50% {
		transform: scale(1.02);
		box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
	}
}

.lcwc .btn-whatsapp svg {
	width: 16px;
	height: 16px;
	fill: white;
}

.lcwc .btn-whatsapp:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
	background: linear-gradient(135deg, #128C7E, #075E54);
	animation: none;
	color: white;
}

.lcwc .btn-whatsapp:active {
	transform: translateY(0) scale(0.98);
}

/* Scroll Indicators Only */
.lcwc .scroll-indicators {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
}

.lcwc .scroll-dot {
	width: 8px;
	height: 8px;
	background: #e8d9cc;
	border-radius: 50%;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	padding: 0;
}

.lcwc .scroll-dot.active {
	width: 24px;
	background: #25D366;
	border-radius: 10px;
}

/* Hide navigation arrows */
.lcwc .nav-arrows {
	display: none;
}

/* Shimmer Effect */
.lcwc .whatsapp-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
	pointer-events: none;
	z-index: 1;
}

.lcwc .whatsapp-card:hover::before {
	left: 100%;
}

/* Desktop - Show 3 cards */
@media (min-width: 768px) {
	.lcwc {
		padding: 40px 24px;
	}

	.lcwc .whatsapp-card {
		width: calc(33.333% - 11px);
		min-width: 220px;
		max-width: 260px;
	}

	.lcwc .card-header {
		padding: 22px 16px 18px;
	}

	.lcwc .card-icon {
		width: 65px;
		height: 65px;
	}

	.lcwc .card-icon svg {
		width: 38px;
		height: 38px;
	}

	.lcwc .card-title {
		font-size: 1rem;
	}

	.lcwc .card-content {
		padding: 16px;
	}

	.lcwc .why-join {
		font-size: 0.75rem;
		padding: 10px;
	}

	.lcwc .btn-whatsapp {
		padding: 12px 16px;
		font-size: 0.9rem;
	}

	.lcwc .btn-whatsapp svg {
		width: 18px;
		height: 18px;
	}
}

/* Animation for cards */
@keyframes lcwc-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
