/*
 * Public contact card — rendered by the [teledom_contact_card] shortcode and
 * by direct teledom_render_contact_card() calls in templates. Used on the
 * homepage contact section, the /kontakt/ page, and inside the dark colophon
 * footer (via shortcodes pasted into the text widgets).
 */

.teledom-contact-card {
	margin: 0 0 18px;
	color: inherit;
}

.teledom-contact-card__title {
	margin: 0 0 14px;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #1c884c;
	text-align: center;
}

.teledom-contact-card__persons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-align: center;
}

.teledom-contact-card__person {
	font-size: 14px;
	line-height: 1.5;
}

.teledom-contact-card__name {
	font-weight: 600;
	margin-bottom: 2px;
	color: inherit;
}

.teledom-contact-card__role {
	font-size: 12px;
	opacity: 0.85;
	margin-bottom: 6px;
}

.teledom-contact-card__row {
	font-size: 13px;
	margin: 2px 0;
}

.teledom-contact-card__label {
	opacity: 0.65;
	margin-right: 4px;
}

.teledom-contact-card .teledom-phone,
.teledom-contact-card .teledom-email {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s ease;
}

.teledom-contact-card .teledom-phone:hover,
.teledom-contact-card .teledom-email:hover {
	color: #1ba858;
}
