/* ============================================================
 * HD Info Cards — Icon + Titel + Label/Wert-Zeilen, 1-4 Spalten.
 * Self-contained (keine brand-overrides noetig). Brand: Rajdhani,
 * Tuerkis #0796a6 / #0d5460, Ink #1a1a1a. Spalten via .hd-cards--cols-N.
 * ============================================================ */

.hd-cards {
	display: grid;
	gap: clamp(18px, 2.2vw, 28px);
	font-family: 'Rajdhani', Helvetica, Arial, sans-serif;
}

/* optionale Headline */
.hd-cards__heading {
	font-family: 'Rajdhani', Helvetica, Arial, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.015em;
	line-height: 1.05;
	font-size: clamp(26px, 4vw, 44px);
	color: var(--hd-cards-heading-color, #0796a6);
	margin: 0 0 clamp(22px, 3vw, 38px);
	text-wrap: balance;
}
.hd-cards__heading--center { text-align: center; }

/* Spalten */
.hd-cards--cols-1 { grid-template-columns: minmax(0, 1fr); }
.hd-cards--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hd-cards--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hd-cards--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1024px) {
	.hd-cards--cols-3,
	.hd-cards--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
	.hd-cards.hd-cards--cols-1,
	.hd-cards.hd-cards--cols-2,
	.hd-cards.hd-cards--cols-3,
	.hd-cards.hd-cards--cols-4 { grid-template-columns: minmax(0, 1fr); }
}

/* Karte */
.hd-cards__card {
	display: flex;
	flex-direction: column;
}
.hd-cards--style-card .hd-cards__card {
	background: var(--hd-cards-card-bg, #ffffff);
	border: 1px solid rgba(13, 84, 96, 0.10);
	border-radius: 18px;
	padding: clamp(26px, 3vw, 34px) clamp(24px, 2.6vw, 30px);
	box-shadow: 0 18px 40px -22px rgba(13, 84, 96, 0.45), 0 2px 6px -2px rgba(13, 84, 96, 0.14);
}

/* Icon-Badge */
.hd-cards__badge {
	width: 58px;
	height: 58px;
	border-radius: 15px;
	display: grid;
	place-items: center;
	color: #ffffff;
	background: linear-gradient(145deg, #0796a6, #0d5460);
	box-shadow: 0 10px 22px -8px rgba(7, 150, 166, 0.6);
	margin-bottom: 22px;
}
.hd-cards__badge i { font-size: 26px; line-height: 1; color: #fff; }
.hd-cards__badge svg { width: 28px; height: 28px; fill: currentColor; }

.hd-cards__title {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 20px;
	line-height: 1.1;
	color: var(--hd-cards-title-color, #1a1a1a);
	margin: 0 0 18px;
}

.hd-cards__rows {
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-top: 1px solid rgba(13, 84, 96, 0.10);
	padding-top: 18px;
}
.hd-cards__k {
	display: block;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.10em;
	font-size: 12px;
	line-height: 1.2;
	color: var(--hd-cards-accent, #0d5460);
	margin-bottom: 3px;
}
.hd-cards__v {
	display: block;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.45;
	color: var(--hd-cards-value-color, #1a1a1a);
}
