.cs-f86a3920-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
	margin-bottom: 40px;
}

@media (max-width: 1024px) {
	.cs-f86a3920-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 767px) {
	.cs-f86a3920-grid {
		grid-template-columns: 1fr !important;
	}
}

.cs-f86a3920-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.cs-f86a3920-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.cs-f86a3920-card-img {
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
	position: relative;
}

.cs-f86a3920-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.cs-f86a3920-card:hover .cs-f86a3920-card-img img {
	transform: scale(1.05);
}

.cs-f86a3920-card-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.cs-f86a3920-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.cs-f86a3920-tag {
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.cs-f86a3920-title {
	font-size: 20px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 12px;
	line-height: 1.3;
}

.cs-f86a3920-desc {
	font-size: 14px;
	color: #4b5563;
	margin: 0 0 16px;
	line-height: 1.6;
}

.cs-f86a3920-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 20px;
	padding-top: 16px;
	border-top: 1px solid #e5e7eb;
	font-size: 13px;
	color: #6b7280;
	align-items: center;
}

.cs-f86a3920-meta span {
	display: flex;
	align-items: center;
	gap: 6px;
}

.cs-f86a3920-meta i {
	font-size: 14px;
}

.cs-f86a3920-status {
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 4px;
}

.cs-f86a3920-status.enrolling { background: #dcfce7; color: #166534; }
.cs-f86a3920-status.booking-open { background: #dbeafe; color: #1e40af; }
.cs-f86a3920-status.register-now { background: #fef08a; color: #854d0e; }
.cs-f86a3920-status.invite-when-started { background: #e0e7ff; color: #3730a3; }
.cs-f86a3920-status.class-full { background: #fee2e2; color: #991b1b; }
.cs-f86a3920-status.closed { background: #f3f4f6; color: #374151; }

.cs-f86a3920-toggle {
	background: none;
	border: none;
	padding: 0;
	color: #2563eb;
	font-weight: 600;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	margin-top: auto;
	transition: color 0.2s;
}

.cs-f86a3920-toggle i {
	transition: transform 0.3s ease;
}

.cs-f86a3920-toggle.active i {
	transform: rotate(180deg);
}

.cs-f86a3920-details {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px dashed #e5e7eb;
}

.cs-f86a3920-details-section {
	margin-bottom: 16px;
}

.cs-f86a3920-details-section h4 {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 8px;
	color: #111827;
}

.cs-f86a3920-details-section p,
.cs-f86a3920-details-section ul {
	font-size: 13px;
	color: #4b5563;
	margin: 0;
	padding-left: 16px;
	line-height: 1.6;
}

.cs-f86a3920-doc-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #2563eb;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}
.cs-f86a3920-doc-link:hover {
	text-decoration: underline;
}

.cs-f86a3920-card-footer {
	padding: 16px 24px;
	background: #f9fafb;
	border-top: 1px solid #e5e7eb;
}

.cs-f86a3920-btn {
	display: block;
	width: 100%;
	text-align: center;
	background: #2563eb;
	color: #fff;
	padding: 12px 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	border: 1px solid #2563eb;
	transition: all 0.3s ease;
}

.cs-f86a3920-btn:hover {
	background: transparent;
	color: #2563eb;
}

/* Testimonials */
.cs-f86a3920-testimonials-wrapper {
	margin-bottom: 40px;
}
.cs-f86a3920-section-title {
	font-size: 24px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 20px;
	text-align: center;
}
.cs-f86a3920-testimonials {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
}
.cs-f86a3920-testimonial-card {
	background: #f9fafb;
	padding: 24px;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	max-width: 400px;
	flex: 1 1 300px;
}
.cs-f86a3920-testimonial-card i {
	color: #9ca3af;
	font-size: 24px;
	margin-bottom: 12px;
	display: block;
}
.cs-f86a3920-testimonial-card p {
	font-style: italic;
	font-size: 14px;
	color: #4b5563;
	margin-bottom: 12px;
}
.cs-f86a3920-test-name {
	font-weight: 600;
	font-size: 14px;
	color: #111827;
	display: block;
	text-align: right;
}

/* Contact Info */
.cs-f86a3920-contact-info {
	background: #f3f4f6;
	padding: 32px;
	border-radius: 12px;
	text-align: center;
}
.cs-f86a3920-contact-title {
	font-size: 20px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 8px;
}
.cs-f86a3920-contact-desc {
	font-size: 14px;
	color: #4b5563;
	margin: 0 0 16px;
}
.cs-f86a3920-contact-info p {
	margin: 8px 0;
	font-size: 16px;
	color: #374151;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.cs-f86a3920-contact-info a {
	color: #2563eb;
	text-decoration: none;
	font-weight: 600;
}
.cs-f86a3920-contact-info a:hover {
	text-decoration: underline;
}