/* "Who Are Values Cards For?": two labelled groups of audience cards. */
.vv-audience__title {
	margin: 0 0 clamp(24px, 4vw, 40px);
}

.vv-audience__group + .vv-audience__group {
	margin-top: clamp(32px, 5vw, 56px);
}

.vv-audience__label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	font-family: var(--vv-font-heading);
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--vv-text-gray);
}
.vv-audience__label::before {
	content: "";
	width: 28px;
	height: 3px;
	border-radius: 3px;
	background: var(--vv-magenta);
}

.vv-audience__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 20px;
}
.vv-audience__group--personal .vv-audience__grid { grid-template-columns: repeat(3, 1fr); }
/* Five pro cards: one row of five on wide screens, otherwise 3 + 2 with the second row filling the width. */
.vv-audience__group--pro .vv-audience__grid { grid-template-columns: repeat(6, 1fr); }
.vv-audience__group--pro .vv-audience-card { grid-column: span 2; }
.vv-audience__group--pro .vv-audience-card:nth-child(n+4) { grid-column: span 3; }
@media (min-width: 1200px) {
	.vv-audience__group--pro .vv-audience__grid { grid-template-columns: repeat(5, 1fr); }
	.vv-audience__group--pro .vv-audience-card,
	.vv-audience__group--pro .vv-audience-card:nth-child(n+4) { grid-column: auto; }
}

.vv-audience-card {
	margin: 0;
	background: #fff;
	padding: 28px 26px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
	border-top: 6px solid var(--card-color); /* The color-coded tip */
	transition: transform .25s ease, box-shadow .25s ease;
}
@media (hover: hover) {
	.vv-audience-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 16px 36px rgba(0, 0, 0, .08);
	}
}

.vv-card-badge {
	display: block;
	font-size: .7rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 800;
	color: var(--card-color);
	margin-bottom: 10px;
}
/* The yellow badge is unreadable on white; darken it (the border keeps the bright yellow). */
.vv-audience-card[style*="#f4db2b"] .vv-card-badge { color: #b89c00; }

.vv-card-title {
	font-family: var(--vv-font-heading);
	font-size: 1.3rem;
	line-height: 1.25;
	margin: 0 0 10px;
	color: var(--vv-deep-black);
}
.vv-audience__group--personal .vv-card-title { font-size: 1.5rem; }

.vv-card-text {
	font-size: .98rem;
	line-height: 1.6;
	color: var(--vv-text-gray);
	margin: 0;
}

/* Phones/small tablets: each group is a horizontal row you swipe, with the next card peeking in. */
@media (max-width: 899px) {
	.vv-audience__group--personal .vv-audience__grid,
	.vv-audience__group--pro .vv-audience__grid {
		display: flex;
		gap: 16px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		padding: 4px 0 20px;
		margin: -4px 0 -20px;
	}
	.vv-audience__grid::-webkit-scrollbar { display: none; }
	.vv-audience__grid .vv-audience-card {
		flex: 0 0 min(80%, 320px);
		scroll-snap-align: start;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vv-audience-card { transition: none; }
}
