/**
 * Brand Anthem Showcase — module styles.
 *
 * This is the single source of truth for the module's appearance. It reads the
 * vixxiv design tokens declared in the child theme's :root (--v-gold-light etc.)
 * with hard-coded fallbacks so the module still renders correctly inside the
 * Divi Visual Builder iframe, where the child theme's variables may not cascade.
 *
 * Anything a content editor should be able to change (background, spacing,
 * borders, shadow, client/year fonts) is NOT hard-coded here — those are
 * exposed through Divi's Design tab via get_advanced_fields_config(). Only the
 * module's intrinsic brand structure lives in this file.
 */

.vxv-brand-anthem {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: clamp(1.5rem, 2vw, 2.5rem);
	border-top: 1px solid var(--v-gold-light, #d1c69e);
}

.vxv-anthem-logo-img {
	height: 48px;
	filter: grayscale(1);
	opacity: 0.7;
	transition: filter 0.3s ease, opacity 0.3s ease;
}

.vxv-brand-anthem:hover .vxv-anthem-logo-img {
	filter: grayscale(0);
	opacity: 1;
}

.vxv-anthem-iframe {
	border-radius: 0;
	display: block;
}

.vxv-anthem-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(209, 198, 158, 0.3);
}

.vxv-anthem-client {
	font-family: var(--v-font-body, 'Lato', sans-serif);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--v-gold-light, #d1c69e);
}

.vxv-anthem-year {
	font-family: var(--v-font-body, 'Lato', sans-serif);
	font-size: 0.6875rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--v-warm-gray, #9a9590);
}

.vxv-anthem-placeholder {
	padding: 1rem;
	border: 1px dashed rgba(209, 198, 158, 0.4);
	text-align: center;
}

.vxv-anthem-placeholder p {
	margin: 0;
	color: var(--v-warm-gray, #9a9590);
	font-size: 0.875rem;
}
