/* Webux Team (field block) - frontend.
   Pixel-ported from the original .lv-ueber-uns-card design. */
.webux-team {
	display: grid;
	grid-template-columns: repeat(var(--webux-cols, 4), minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
}

@media (max-width: 980px) {
	.webux-team { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
	.webux-team { grid-template-columns: 1fr; }
}

.webux-team__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: #fff;
	border: 1px solid #ece7de;
	border-radius: 24px;
	box-shadow: 0 8px 28px rgba(26, 26, 26, 0.06), 0 1px 2px rgba(26, 26, 26, 0.04);
	overflow: hidden;
}

.webux-team__img {
	display: block;
	width: 100%;
	height: 260px;
	object-fit: cover;
}

.webux-team__body {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 22px 24px 24px;
}

.webux-team__role {
	margin: 0;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1.44px;
	text-transform: uppercase;
	color: #8b8178;
}

.webux-team__name {
	margin: 0;
	font-size: 19px;
	font-weight: 600;
	color: #1a1a1a;
}

.webux-team__spec {
	margin: 0;
	font-size: 14px;
	color: #6b6661;
}

.webux-team__div {
	height: 1px;
	width: 100%;
	margin: 5px 0 4px;
	background: #ece7de;
}

.webux-team__contact {
	display: flex;
	align-items: center;
	gap: 8px;
}

.webux-team__contact a {
	font-size: 13px;
	color: #6b6661;
	text-decoration: none;
}

.webux-team__contact a:hover,
.webux-team__contact a:focus {
	text-decoration: underline;
}

.webux-team__ic {
	width: 15px;
	height: 15px;
	flex: 0 0 auto;
	display: block;
	color: #8b8178;
}
