.wcpb-section {
	margin: 0 0 20px;
}

.wcpb-title {
	margin: 20px 0 12px;
	font-size: 16px;
	line-height: 1.3;
	text-transform:uppercase;
	font-weight:600;
}

.wcpb-grid {
	display: grid;
	grid-template-columns: repeat(var(--wcpb-columns, 1), minmax(0, 1fr));
	gap: 12px;
	align-items: stretch;
}

.wcpb-card {
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 10px;
	align-items: center;
	height: 100%;
	padding: 10px;
	border: 1px solid var(--wcpb-border, #dddddd);
	border-radius: var(--wcpb-radius, 8px);
	background: var(--wcpb-bg, #ffffff);
	transition: all 300ms ease;
}

.wcpb-card-link,
.wcpb-card-wrap {
	display: block;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.wcpb-card-link:hover .wcpb-card,
.wcpb-card-link:focus-visible .wcpb-card,
.wcpb-card-link:active .wcpb-card,
.wcpb-card-wrap:hover .wcpb-card,
.wcpb-card-wrap:focus-within .wcpb-card {
	border-color: var(--wcpb-border-hover, #2271b1);
}

.wcpb-card-image img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}

.wcpb-card-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.wcpb-card-name {
	font-weight: 600;
	line-height: 1.2;
}

@media (max-width: 767px) {
	.wcpb-grid {
		grid-template-columns: 1fr;
	}
}
