.bp-section {
	background-color: #0a0a0a;
	padding: 80px 20px;
	font-family: var(--e-global-typography-primary-font-family, sans-serif);
	color: #fff;
}

.bp-header {
	text-align: center;
	margin-bottom: 60px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.bp-title {
	font-family: "Playfair Display", serif; /* Fallback */
	font-size: 42px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 15px;
	letter-spacing: 1px;
}

.bp-subtitle {
	font-size: 16px;
	color: #cccccc;
	font-weight: 400;
}

.bp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.bp-card {
	background: linear-gradient(145deg, #1f1f1f, #141414);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bp-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.bp-card-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.bp-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.bp-card:hover .bp-card-image img {
	transform: scale(1.05);
}

.bp-card-content {
	padding: 30px;
	text-align: center;
}

.bp-card-name {
	font-family: "Playfair Display", serif; /* Fallback */
	font-size: 24px;
	color: #ffffff;
	margin-bottom: 5px;
}

.bp-card-specialty {
	color: #cda873; /* Muted luxury gold */
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.bp-card-desc {
	color: #aaaaaa;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 25px;
}

.bp-card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 15px 20px;
	background-color: #cda873; /* Muted luxury gold */
	color: #0a0a0a;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.bp-card-btn:hover {
	background-color: #b8935e;
	color: #0a0a0a;
}

.bp-btn-icon {
	margin-right: 8px;
	font-size: 16px;
}

.bp-footer {
	text-align: center;
	margin-top: 60px;
}

.bp-view-all-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 30px;
	background-color: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 30px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.bp-view-all-btn:hover {
	border-color: #ffffff;
	background-color: rgba(255, 255, 255, 0.05);
	color: #ffffff;
}

.bp-btn-icon-right {
	margin-left: 10px;
	font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
	.bp-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.bp-grid {
		grid-template-columns: 1fr;
	}
	
	.bp-title {
		font-size: 32px;
	}
	
	.bp-section {
		padding: 50px 15px;
	}
}
