/**
 * HSC Vorstand – Frontend-Styles
 *
 * Bewusst minimal gehalten: es werden keine Schriftarten oder Farben
 * fest vorgegeben, damit sich die Ausgabe in das jeweilige Theme-Layout
 * einfügt. Es wird nur das für das Karten-Grid nötige Spacing/Sizing
 * definiert.
 */

.hsc-vorstand-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	column-gap: 1.5em;
	row-gap: 1.75em;
	margin: 2em 0;
	list-style: none;
	padding: 0;
}

.hsc-vorstand-card {
	text-align: center;
}

.hsc-vorstand-photo {
	width: 100px;
	height: 100px;
	margin: 0 auto 0.5em;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.05);
}

.hsc-vorstand-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin: 0;
}

.hsc-vorstand-photo--placeholder .dashicons {
	font-size: 40px;
	width: 40px;
	height: 40px;
	opacity: 0.35;
}

.hsc-vorstand-position {
	margin: 0 0 0.1em;
	font-size: 0.8em;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	opacity: 0.7;
}

.hsc-vorstand-name {
	margin: 0 0 0.1em;
	line-height: 1.25;
	font-weight: 600;
}

.hsc-vorstand-email {
	margin: 0;
	font-size: 0.85em;
	line-height: 1.25;
	word-break: break-word;
}

.hsc-vorstand-empty {
	font-style: italic;
	opacity: 0.7;
}

@media (max-width: 900px) {
	.hsc-vorstand-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 480px) {
	.hsc-vorstand-grid {
		grid-template-columns: 1fr !important;
	}
}
