/* Vendavo Card Grid */

.vcg {
	width: 100%;
	--vcg-transition: 250ms;
}

.vcg-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.vcg-empty {
	grid-column: 1 / -1;
	text-align: center;
	color: #52527A;
	margin: 24px 0;
}

.vcg-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #FFFFFF;
	border-radius: 16px;
	transition: transform var(--vcg-transition) ease, box-shadow var(--vcg-transition) ease;
	height: 100%;
}

.vcg-hover-lift-yes .vcg-card:hover {
	transform: translateY(-2px);
}

.vcg-card--image_back {
	background-size: cover;
	background-position: center;
	min-height: 280px;
	justify-content: flex-start;
	position: relative;
	overflow: hidden;
}

.vcg-card--image_back::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border-radius: inherit;
}

.vcg-card--image_back .vcg-card__body {
	position: relative;
	z-index: 1;
}

.vcg-card__image {
	display: block;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.vcg-card__image-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--vcg-transition) ease;
}

.vcg-fx-image-yes .vcg-card:hover .vcg-card__image-img {
	transform: scale(1.05);
}

.vcg-card__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 24px;
	flex: 1;
}

.vcg-card__title {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.3;
	color: #1A1440;
}

.vcg-card__title a {
	color: inherit;
	text-decoration: none;
}

.vcg-card__title a:hover {
	text-decoration: none;
}

.vcg-card__excerpt {
	margin: 0;
	color: #52527A;
	font-size: .95rem;
	line-height: 1.5;
}

.vcg-card__meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	color: #1A1440;
	font-size: .9rem;
}

.vcg-card__meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.vcg-icon {
	width: 16px;
	height: 16px;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	flex: 0 0 auto;
}

.vcg-icon--cal {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A1440' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>");
}

.vcg-icon--pin {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A1440' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 1 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>");
}

.vcg-icon--custom {
	width: auto;
	height: auto;
	background: none;
	display: inline-flex;
	align-items: center;
	color: inherit;
	line-height: 1;
}

.vcg-icon--custom svg,
.vcg-icon--custom i {
	width: 16px;
	height: 16px;
	font-size: 16px;
	color: inherit;
	fill: currentColor;
}

.vcg-icon--custom svg * {
	fill: currentColor;
}

.vcg-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 8px;
}

.vcg-card__pills {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.vcg-pill {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: .8rem;
	background: transparent;
	border: 1px solid #D7D2EA;
	color: #1A1440;
	white-space: nowrap;
}

.vcg-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: transparent;
	border: 1px solid #1A1440;
	color: #1A1440;
	text-decoration: none;
	flex: 0 0 auto;
	transition: transform var(--vcg-transition) ease, background var(--vcg-transition) ease, color var(--vcg-transition) ease, border-color var(--vcg-transition) ease;
}

.vcg-arrow:hover {
	transform: translateX(2px);
	background: #1A1440;
	color: #FFFFFF;
}

.vcg-fx-button-no .vcg-arrow:hover {
	transform: none;
	background: inherit;
	color: inherit;
	border-color: inherit;
}

.vcg-arrow-glass-yes .vcg-arrow {
	background: rgba(255, 255, 255, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.7);
	color: #1A1440;
	-webkit-backdrop-filter: blur(14px) saturate(150%);
	backdrop-filter: blur(14px) saturate(150%);
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.9),
		inset 0 -1px 1px rgba(255, 255, 255, 0.25),
		0 6px 18px rgba(31, 38, 135, 0.12),
		0 1px 2px rgba(0, 0, 0, 0.04);
}

.vcg-arrow-glass-yes .vcg-arrow:hover {
	background: rgba(255, 255, 255, 0.55);
	color: #1A1440;
}

.vcg-loadmore-wrap {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.vcg-loadmore {
	appearance: none;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	background: transparent;
	border: 1px solid #1A1440;
	color: #1A1440;
	padding: 10px 28px;
	border-radius: 999px;
	font-size: .95rem;
	cursor: pointer;
	transition: background var(--vcg-transition) ease, color var(--vcg-transition) ease, border-color var(--vcg-transition) ease;
}

.vcg-loadmore:hover,
.vcg-loadmore:focus {
	text-decoration: none;
}

.vcg-loadmore:hover {
	background: #1A1440;
	color: #FFFFFF;
}

.vcg-fx-button-no .vcg-loadmore:hover {
	background: inherit;
	color: inherit;
	border-color: inherit;
}

.vcg-loadmore.is-loading {
	opacity: .6;
	pointer-events: none;
}

.vcg-lm-glass-yes .vcg-loadmore {
	/* background: rgba(255, 255, 255, 0.5); */
	border: 1px solid rgba(255, 255, 255, 0.8);
	color: #1A1440;
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	backdrop-filter: blur(14px) saturate(140%);
	/* box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.9),
		inset 0 -1px 1px rgba(255, 255, 255, 0.25),
		0 8px 24px rgba(31, 38, 135, 0.08),
		0 1px 2px rgba(0, 0, 0, 0.04); */
	background: rgba(245, 245, 245, 0.2);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.vcg-lm-glass-yes .vcg-loadmore:hover {
	background: rgba(255, 255, 255, 0.7);
	color: #1A1440;
}

.vcg.is-fetching .vcg-grid {
	opacity: .6;
	transition: opacity .2s ease;
}

.card-arrow-right a.vcg-arrow {
	margin: 0 0 0 auto;
}

.vcg-fx-trans-no .vcg-card,
.vcg-fx-trans-no .vcg-card__image-img,
.vcg-fx-trans-no .vcg-arrow,
.vcg-fx-trans-no .vcg-loadmore,
.vcg-fx-trans-no .vcg-pill,
.vcg-fx-trans-no .vcg-card__title a {
	transition: none !important;
}

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

@media (max-width: 640px) {
	.vcg-grid {
		grid-template-columns: 1fr;
	}
}