.pgc-cards-wrapper {
	position: relative;
	width: 100%;
}

.pgc-cards-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	gap: 20px;
	position: relative;
	z-index: 2;
}

.pgc-card-col {
	flex: 1;
	display: flex;
	position: relative;
}

.pgc-card {
	flex: 1;
	border: 1px solid #C6A15B;
	border-radius: 18px;
	background-color: rgba(20,20,20,0.92);
	position: relative;
	margin-top: 30px; /* Space for badge */
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease-in-out;
}

/* Hover Effects */
.pgc-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 30px rgba(198, 161, 91, 0.15), 0 0 15px rgba(198, 161, 91, 0.1) inset;
	border-color: #D4B272; /* Slightly brighter border */
}

.pgc-card:hover .pgc-badge {
	border-color: #D4B272;
	box-shadow: 0 0 10px rgba(198, 161, 91, 0.2);
}

.pgc-badge-wrap {
	position: absolute;
	top: -30px;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	z-index: 3;
}

.pgc-badge {
	width: 60px;
	height: 60px;
	background-color: #111111;
	border: 1px solid #C6A15B;
	/* Hexagon-like shape using clip-path, but we'll use a rotated square with border radius for a diamond/shield feel */
	transform: rotate(45deg);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.pgc-badge-text {
	transform: rotate(-45deg);
	font-size: 28px;
	font-weight: 600;
	font-family: serif;
	line-height: 1;
}

.pgc-card-content {
	padding: 40px 30px 30px;
	text-align: center;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.pgc-card-title {
	font-size: 24px;
	margin: 10px 0 20px;
	font-family: serif;
}

.pgc-card-divider {
	height: 1px;
	background-color: rgba(198, 161, 91, 0.35);
	margin: 0 auto;
}

.pgc-divider-top {
	width: 50%;
	margin-bottom: 20px;
}

.pgc-divider-bottom {
	width: 80%;
	margin-top: auto;
	margin-bottom: 20px;
}

.pgc-card-desc {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.pgc-card-footer {
	font-size: 16px;
	font-weight: 500;
	font-style: italic;
}

/* Connector Line & Dots - Desktop */
.pgc-connector-line {
	position: absolute;
	top: 30px; /* Align with middle of badges */
	left: 10%;
	right: 10%;
	height: 1px;
	background-color: #C6A15B;
	z-index: 1;
}

.pgc-connector-dot {
	position: absolute;
	top: -5px; /* Align with middle of badges (relative to col) */
	right: -14px; /* Center in gap between columns */
	width: 8px;
	height: 8px;
	background-color: #C6A15B;
	border-radius: 50%;
	z-index: 2;
}

/* Responsive - Mobile/Tablet */
@media (max-width: 767px) {
	.pgc-cards-container {
		flex-direction: column;
		gap: 50px;
	}

	.pgc-connector-line {
		top: 5%;
		bottom: 5%;
		left: 50%;
		transform: translateX(-50%);
		width: 1px;
		height: auto;
	}

	.pgc-connector-dot {
		display: none; /* Hide dots on mobile to keep it clean */
	}
}
