/* MCP Consumer — Feed card component */

.mcp-consumer-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.mcp-consumer-card:hover {
	box-shadow: 0 4px 16px rgba( 0, 0, 0, 0.10 );
	transform: translateY(-3px);
}

/* Image */

.mcp-consumer-card__image-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f3f4f6;
	flex-shrink: 0;
}

.mcp-consumer-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mcp-consumer-card__image-wrap--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient( 135deg, #e5e7eb 0%, #f3f4f6 100% );
}

.mcp-consumer-card__image-placeholder {
	font-size: 2rem;
	font-weight: 700;
	color: #9ca3af;
	opacity: 0.6;
	user-select: none;
}

/* Body */

.mcp-consumer-card__body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 8px;
}

/* Badges */

.mcp-consumer-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

/* Meta */

.mcp-consumer-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}

.mcp-consumer-card__family {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #374151;
}

.mcp-consumer-card__type {
	font-size: 11px;
	color: #9ca3af;
}

.mcp-consumer-card__type::before {
	content: "·";
	margin-right: 4px;
}

/* Title */

.mcp-consumer-feed h3.mcp-consumer-card__title {
	font-size: 1rem;
	color: #111827;
	margin: 0;
}

.mcp-consumer-feed h3.mcp-consumer-card__title a {
	color: inherit;
	text-decoration: none;
}

.mcp-consumer-feed h3.mcp-consumer-card__title a:hover {
	color: inherit;
	text-decoration: underline;
}

/* Excerpt */

.mcp-consumer-feed p.mcp-consumer-card__excerpt {
	font-size: 0.875rem;
	line-height: 1.55;
	color: #4b5563;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Location */

.mcp-consumer-feed p.mcp-consumer-card__location {
	font-size: 0.8125rem;
	color: #6b7280;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 4px;
}

.mcp-consumer-card__location-icon {
	font-size: 12px;
	line-height: 1;
}

/* Event date — secondary, near location */

.mcp-consumer-feed p.mcp-consumer-card__date {
	font-size: 0.8125rem;
	color: #6b7280;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 4px;
}

.mcp-consumer-card__date-icon {
	font-size: 12px;
	line-height: 1;
}

/* Play overlay — video post thumbnails only */

.mcp-consumer-card__play-icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.mcp-consumer-card__play-icon::before {
	content: "";
	display: block;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba( 0, 0, 0, 0.52 );
	/* Play triangle via clip-path on ::after; ::before is the dark circle */
}

.mcp-consumer-card__play-icon::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 9px 0 9px 16px;
	border-color: transparent transparent transparent #ffffff;
	margin-left: 3px; /* optical center adjustment */
}



.mcp-consumer-card__cta {
	margin-top: auto;
	padding-top: 8px;
}

.mcp-consumer-feed a.mcp-consumer-btn--cta {
	display: inline-block;
	padding: 8px 20px;
	background: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	color: #111827;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.mcp-consumer-feed a.mcp-consumer-btn--cta:hover,
.mcp-consumer-feed a.mcp-consumer-btn--cta:focus {
	background: #f3f4f6;
	color: #111827;
	border-color: #cbd5e1;
	text-decoration: none;
}
