h2.kontakt-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 28px 0 18px;
	padding: 0;
	color: #2a2a2a;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

h2.kontakt-heading::before,
h2.kontakt-heading::after {
	content: "";
	height: 2px;
	width: 52px;
	background: #c4a35a;
	flex: 0 0 52px;
}

h2.kontakt-heading span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

h2.kontakt-heading span::before,
h2.kontakt-heading span::after {
	content: "";
	width: 12px;
	height: 12px;
	flex: 0 0 12px;
	background-color: #f6ecd0;
	background-image:
		linear-gradient(#2a2a2a, #2a2a2a),
		linear-gradient(#2a2a2a, #2a2a2a);
	background-size: 6px 6px, 6px 6px;
	background-position: 0 0, 6px 6px;
	background-repeat: no-repeat;
	box-shadow: 0 0 0 1px #2a2a2a;
}

.kontakt-board {
	background: rgba(255, 252, 245, 0.92);
	border: 1px solid #cbb98a;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(40, 28, 8, 0.12);
	overflow: hidden;
	margin-bottom: 24px;
}

.kontakt-section {
	background: #2a2a2a;
	color: #f6ecd0;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-align: center;
	text-transform: uppercase;
	padding: 11px 16px;
	border: 0;
}

.kontakt-table {
	width: 100%;
	max-width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0;
	background: #fffdf7;
	box-sizing: border-box;
}

.kontakt-table th,
.kontakt-table td {
	padding: 8px 12px 8px 10px;
	vertical-align: middle;
	border: 0;
	border-top: 1px solid #eadfb8;
	background-color: #fffdf7;
	transition: background-color 0.15s ease;
}

.kontakt-table tr:first-child th,
.kontakt-table tr:first-child td {
	border-top: 0;
}

.kontakt-table th {
	width: 140px;
	font-weight: 700;
	color: #2a2a2a;
	white-space: nowrap;
}

.kontakt-table tr:nth-child(even) th,
.kontakt-table tr:nth-child(even) td {
	background-color: #f7f0dc;
}

.kontakt-table tbody tr:hover th,
.kontakt-table tbody tr:hover td {
	background-color: #f3d56a;
}

.kontakt-table tbody tr:hover th {
	box-shadow: inset 3px 0 0 #2a2a2a;
}

.kontakt-hint {
	margin: 0;
	padding: 10px 14px;
	background: #efe4c4;
	border-bottom: 1px solid #d8c89a;
	color: #5c4d2a;
	font-size: 13px;
}

.kontakt-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	background: #eadfb8;
}

.kontakt-card {
	background: #fffdf7;
	padding: 12px 14px;
	transition: background-color 0.15s ease;
}

.kontakt-card:hover {
	background: #f3d56a;
	box-shadow: inset 3px 0 0 #2a2a2a;
}

.kontakt-role {
	margin: 0 0 6px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #5c4d2a;
	text-transform: uppercase;
	line-height: 1.35;
}

.kontakt-name {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 700;
	color: #1c1c1c;
}

.kontakt-address,
.kontakt-tel {
	margin: 0;
	font-size: 13px;
	line-height: 1.4;
	color: #3a3a3a;
}

.kontakt-tel {
	margin-top: 6px;
}

.kontakt-body {
	padding: 14px 16px 16px;
	background: #fffdf7;
}

.kontakt-body p {
	margin: 0 0 12px;
	line-height: 1.5;
}

.kontakt-body p:last-child {
	margin-bottom: 0;
}

.kontakt-sub {
	margin: 4px 0 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #5c4d2a;
}

@media (max-width: 767px) {
	h2.kontakt-heading {
		font-size: 18px;
		letter-spacing: 0.1em;
		gap: 8px;
	}

	h2.kontakt-heading::before,
	h2.kontakt-heading::after {
		width: 28px;
		flex-basis: 28px;
	}

	.kontakt-table th,
	.kontakt-table td {
		display: block;
		width: auto;
		white-space: normal;
		padding: 6px 12px;
	}

	.kontakt-table td {
		padding-top: 0;
		border-top: 0;
	}

	.kontakt-grid {
		grid-template-columns: 1fr;
	}
}

@media print {
	.kontakt-board {
		box-shadow: none;
		border-color: #999;
		background: #fff;
	}

	.kontakt-section {
		background: #222;
		color: #fff;
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}
}
