/* Grid Layout */
.vgc-grid-c32ccba3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

@media (max-width: 1024px) {
	.vgc-grid-c32ccba3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.vgc-grid-c32ccba3 {
		grid-template-columns: 1fr;
	}
}

/* Card Base */
.vgc-card-c32ccba3 {
	display: flex;
	flex-direction: column;
	border: 1px solid #dfe3ec;
	border-radius: 28px;
	overflow: hidden;
	background-color: #ffffff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
}

.vgc-card-c32ccba3:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Image */
.vgc-image-wrapper-c32ccba3 {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.vgc-image-c32ccba3 {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vgc-image-overlay-c32ccba3 {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.1) 100%);
	pointer-events: none;
}

/* Content Area */
.vgc-content-c32ccba3 {
	padding: 32px 30px 30px 30px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

@media (max-width: 767px) {
	.vgc-content-c32ccba3 {
		padding: 30px 26px 28px 26px;
	}
}

/* Top Meta Row */
.vgc-meta-c32ccba3 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 34px;
	font-family: 'Poppins', sans-serif;
}

.vgc-number-c32ccba3 {
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 3px;
	color: #ff4b25; /* default */
}

.vgc-category-c32ccba3 {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: #53618a;
}

/* Typography Defaults (can be overridden by Elementor controls) */
.vgc-title-c32ccba3 {
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.12em;
	letter-spacing: -0.8px;
	color: #243366;
	margin: 0 0 18px 0;
}

@media (max-width: 767px) {
	.vgc-title-c32ccba3 {
		font-size: 27px;
	}
}

.vgc-desc-c32ccba3 {
	font-family: 'Poppins', sans-serif;
	font-size: 16.5px;
	line-height: 1.68em;
	color: #53618a;
	margin-bottom: 30px;
	flex-grow: 1;
}

@media (max-width: 767px) {
	.vgc-desc-c32ccba3 {
		font-size: 16px;
	}
}

/* Link */
.vgc-link-c32ccba3 {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: #243366;
	text-decoration: none;
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	transition: color 0.3s ease;
	cursor: pointer;
}

.vgc-link-c32ccba3:hover {
	color: #ff4b25;
}