/* Cards replicate the original /kontakt Elementor cards:
   transparent bg, centered, Barlow white name, green title,
   Montserrat white contact links, photo 70% width (60% mobile). */
.ec-block { position: relative; }
.ec-heading {
	text-transform: uppercase;
	margin: 0 0 20px;
}
.ec-track {
	display: flex;
	gap: 20px;
}
.ec-is-carousel .ec-track {
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 8px;
}
.ec-is-carousel .ec-track::-webkit-scrollbar { display: none; }
.ec-track[data-static="1"] { flex-wrap: wrap; }

.ec-card {
	flex: 0 0 calc(25% - 15px);
	min-width: 0;
	scroll-snap-align: start;
	text-align: center;
	background: transparent;
}
@media (max-width: 1024px) { .ec-card { flex-basis: calc(50% - 10px); } }
@media (max-width: 767px)  { .ec-card { flex-basis: 100%; } }

.ec-photo {
	width: 70%;
	margin: 0 auto 5px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: transparent;
}
@media (max-width: 767px) { .ec-photo { width: 60%; } }
.ec-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.ec-photo-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.06);
}
.ec-photo-placeholder span {
	font-family: "Barlow", sans-serif;
	font-size: 42px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 2px;
}
.ec-name {
	font-family: "Barlow", sans-serif;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	color: #ffffff;
	margin: 0;
}
.ec-title {
	font-family: "Barlow", sans-serif;
	text-transform: uppercase;
	color: #00a72d;
	margin: 0 0 5px;
	min-height: 2.5em;
}
.ec-contact {
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.25em;
	margin: 0;
}
.ec-contact a,
.ec-contact a:hover,
.ec-contact a:focus {
	color: #ffffff;
	text-decoration: none;
}
.ec-contact a:hover { text-decoration: underline; }

.ec-arrow {
	position: absolute;
	top: 30%;
	z-index: 2;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 0;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
	padding: 0;
	transition: background 0.15s, border-color 0.15s;
}
.ec-arrow:hover {
	background: rgba(0, 0, 0, 0.8);
	border-color: #fff;
	color: #fff;
}
.ec-prev { left: -14px; }
.ec-next { right: -14px; }
.ec-arrow[disabled] { opacity: 0.25; cursor: default; }
@media (max-width: 767px) {
	.ec-prev { left: 0; }
	.ec-next { right: 0; }
}
