/**
 * WCP Playlists — minimal additions on top of the existing theme styles.
 * Most styling already comes from the FSE theme via .wcp-section, .wcp-article-card,
 * .wcp-card-image, .wcp-filter-chip, etc. This sheet only patches the embed slot,
 * the cover divs, and the new featured spotlight metadata strip + secondary CTA.
 */

.wcp-playlist-card .wcp-card-image,
.wcp-playlists-featured .wcp-longform-image {
	color: transparent; /* hide fallback "Playlist Cover" text once a bg image is in place */
}

.wcp-playlist-card .wcp-card-image[style*="background-image"],
.wcp-playlists-featured .wcp-longform-image[style*="background-image"] {
	color: transparent;
}

.wcp-playlist-card .wcp-card-image:not([style*="background-image"]),
.wcp-playlists-featured .wcp-longform-image:not([style*="background-image"]) {
	color: inherit;
}

.wcp-playlist-embed-slot {
	width: 100%;
}

.wcp-playlist-embed-slot[hidden] {
	display: none !important;
}

.wcp-filter-chip {
	cursor: pointer;
}

/* Featured spotlight — metadata strip below the title */
.wcp-playlists-featured-meta {
	display: flex;
	gap: 8px;
	align-items: center;
	margin: 14px 0 22px 0;
	flex-wrap: wrap;
}

/* Shared pill rules. Use longhand for margin/padding so theme's
   .wcp-category-tag (which sets margin-bottom and similar longhand
   values) can't bleed through a shorthand reset. */
.wcp-playlists-featured-meta .wcp-category-tag,
.wcp-playlists-featured-meta .wcp-meta-pill,
.wcp-playlists-featured-meta .wcp-featured-pill {
	display: inline-flex;
	align-items: center;
	height: 28px;
	padding-top: 0;
	padding-right: 14px;
	padding-bottom: 0;
	padding-left: 14px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	border: 0;
	border-radius: 999px;
	font-size: 11px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-sizing: border-box;
	white-space: nowrap;
	vertical-align: middle;
}

.wcp-playlists-featured-meta .wcp-meta-pill {
	background: rgba(43, 39, 37, 0.08);
	color: #2B2725;
}

.wcp-playlists-featured-meta .wcp-featured-pill {
	background: #E8733C;
	color: #FFFFFF;
}

/* Featured spotlight — multi-paragraph blurb */
.wcp-playlists-featured-blurb p {
	margin: 0 0 1em 0;
}

.wcp-playlists-featured-blurb p:last-child {
	margin-bottom: 0;
}

/* Featured spotlight — actions row (primary CTA + secondary link) */
.wcp-playlists-featured-actions {
	display: flex;
	gap: 24px;
	align-items: center;
	margin-top: 28px;
	flex-wrap: wrap;
}

.wcp-link-secondary {
	color: #2B2725;
	text-decoration: underline;
	text-underline-offset: 3px;
	font-size: 14px;
	font-weight: 500;
}

.wcp-link-secondary:hover,
.wcp-link-secondary:focus {
	color: #E8733C;
}
