/**
 * "View Also" suggested products (#42) — single product page.
 * Card mirrors the archive/graveyard card: image top (#ebf9ff), blue band
 * (#00a6e1) with name / format / cannabinoid breakdown + white "Learn More" pill.
 * Brand palette: sky #00a6e1, ocean #0070b0, light #ebf9ff. Poppins.
 */
.mca-va {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px 64px;
	box-sizing: border-box;
}
.mca-va * { box-sizing: border-box; }

.mca-va__title {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: clamp(24px, 3vw, 38px);
	line-height: 1.1;
	letter-spacing: 0.5px;
	text-align: center;
	text-transform: uppercase;
	color: #0070b0;
	margin: 0 0 34px;
}

.mca-va__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 282px));
	gap: 24px;
	align-items: stretch;
	justify-content: center;
}

.mca-va__card {
	container-type: inline-size;
	display: flex;
	flex-direction: column;
	background: #ebf9ff;
	border-radius: 18px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 6px 18px rgba(0, 112, 176, 0.10);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.mca-va__card:hover,
.mca-va__card:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 12px 26px rgba(0, 112, 176, 0.18);
}

/* Image area */
.mca-va__media {
	background: #ebf9ff;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.mca-va__media img,
.mca-va__media .mca-va__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	display: block;
}

/* Blue band */
.mca-va__band {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 1.4cqw;
	background: #00a6e1;
	color: #fff;
	font-family: "Poppins", sans-serif;
	padding: 7cqw 6cqw 7cqw;
}
.mca-va__l1 { font-weight: 700; font-size: 7cqw;   line-height: 1.08; }
.mca-va__l2 { font-weight: 500; font-size: 5.4cqw; line-height: 1.1; }
.mca-va__l3 { font-weight: 500; font-size: 5cqw;   line-height: 1.1; opacity: 0.95; }

/* Cannabinoid breakdown (labels row / rule / values row) */
.mca-va__cann { margin-top: 4cqw; }
.mca-va__cann-row {
	display: flex;
	justify-content: space-between;
	gap: 4cqw;
}
.mca-va__cann-row span { flex: 1 1 0; }
.mca-va__cann-row:not(.mca-va__cann-vals) span { font-weight: 700; font-size: 5.2cqw; }
.mca-va__cann-vals span { font-weight: 500; font-size: 4.4cqw; }
.mca-va__rule {
	display: block;
	height: 1px;
	background: rgba(255, 255, 255, 0.75);
	margin: 1.4cqw 0;
}

/* Learn More pill */
.mca-va__btn {
	align-self: center;
	margin-top: 5cqw;
	background: #fff;
	color: #0070b0;
	border: 2px solid #fff;
	font-weight: 600;
	font-size: 5cqw;
	text-transform: uppercase;
	border-radius: 99px;
	padding: 2.6cqw 7cqw;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.mca-va__card:hover .mca-va__btn,
.mca-va__card:focus-visible .mca-va__btn {
	background: #0070b0;
	color: #fff;
	border-color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
	.mca-va__grid { gap: 18px; }
}
@media (max-width: 600px) {
	.mca-va { padding: 28px 14px 44px; }
	.mca-va__title { margin-bottom: 24px; }
	.elementor-10386 .elementor-element.elementor-element-vasec01,
	.elementor-10386 .elementor-element.elementor-element-vasec01 > .e-con-inner {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
	}
	.elementor-10386 .elementor-element.elementor-element-vasec01 .elementor-widget-shortcode,
	.elementor-10386 .elementor-element.elementor-element-vasec01 .elementor-shortcode,
	.elementor-10386 .elementor-element.elementor-element-vasec01 .mca-va {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}
	.mca-va__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.mca-va__card {
		width: 100%;
		max-width: 360px;
		margin: 0 auto;
	}
}
