/*
 * Marken-Übersichtsseite (brand-index-page.php, Shortcode [zwcl_marken]).
 */

.zwcl-brand-index {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
	margin: 1.5rem 0;
}

.zwcl-brand-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.25rem 1rem;
	border: 1px solid #e0dcd2;
	border-radius: 14px;
	background: #fff;
	color: inherit;
	text-decoration: none;
	transition: border-color .15s, box-shadow .15s, transform .15s;
}

.zwcl-brand-card:hover,
.zwcl-brand-card:focus {
	border-color: var(--zcf-forest, #2F4A3B);
	box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
	text-decoration: none;
	transform: translateY(-1px);
}

.zwcl-brand-card__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 80px;
	margin-bottom: .8rem;
}

.zwcl-brand-card__logo img {
	max-width: 200px;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.zwcl-brand-card__wordmark {
	font-weight: 700;
	font-size: 1.25rem;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.zwcl-brand-card__name {
	font-size: 1.05rem;
	font-weight: 600;
	margin: 0 0 .4rem;
	color: var(--zcf-forest, #2F4A3B);
}

.zwcl-brand-card__desc {
	font-size: .9rem;
	line-height: 1.4;
	color: #4a4a44;
	margin: 0 0 .8rem;
}

.zwcl-brand-card__cta {
	margin-top: auto;
	font-size: .85rem;
	font-weight: 600;
	color: var(--zcf-forest, #2F4A3B);
}

.zwcl-brand-card__cta--soon {
	color: #8a8a80;
	font-style: italic;
}
