/**
 * Type Display WPBakery Element Styles
 *
 * Styles for the type display cards (level 1 types only)
 *
 * @package CVPack Salient Child Theme
 */

/* Wrapper ensures block boundaries for wpautop; 4 cards per row */
.type-display .type-cards-wrapper .type-card-wrapper {
	flex: 0 0 calc(25% - 15px);
	min-width: 200px;
}
.type-card-wrapper .type-card {
	display: block;
	height: 100%;
}

.type-card {
	text-decoration: none;
	color: inherit;
}
.type-card:focus {
	outline: 2px solid #0073aa;
	outline-offset: 2px;
}
.type-card:hover,
.type-card:focus {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
