/**
 * Autorenbox.
 *
 * Steht direkt unter der Ueberschrift und beantwortet vor dem ersten Absatz,
 * wer hier schreibt. Farbwelt wie im uebrigen Plugin: Gold #A09060 als
 * Akzent, warmes Nahschwarz als Gegenspieler.
 *
 * Alle Werte ausdruecklich gesetzt, weil das Theme eigene Regeln fuer
 * Elemente im Inhaltsbereich mitbringt.
 */

.ga-box {
	--ga-gold: #a09060;
	--ga-gold-dunkel: #857748;
	--ga-gold-hell: #f6f2e7;
	--ga-text: #1a1a1a;
	--ga-leise: #6e6e73;
	--ga-linie: #e4e2dc;

	display: flex;
	align-items: flex-start;
	gap: 1.1em;
	box-sizing: border-box;
	margin: 0 0 1.8em;
	padding: 1.1em 1.3em;
	border: 1px solid var(--ga-linie);
	border-left: 3px solid var(--ga-gold);
	border-radius: 10px;
	background: linear-gradient(135deg, #fdfcfa 0%, var(--ga-gold-hell) 100%);
	font-size: 15px;
	line-height: 1.55;
	color: var(--ga-text);
}

.ga-box *,
.ga-box *::before,
.ga-box *::after {
	box-sizing: border-box;
}

/* ---- Bild ---- */

.ga-box__bild {
	flex: 0 0 auto;
	width: 72px;
	height: 72px;
	margin: 0;
	padding: 0;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--ga-gold);
}

.ga-box__bild img {
	display: block;
	width: 72px;
	height: 72px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	object-fit: cover;
}

/* ---- Text ---- */

.ga-box__text {
	flex: 1 1 auto;
	min-width: 0;
}

.ga-box__kopf {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.25em 0.6em;
	margin-bottom: 0.35em;
}

.ga-box__label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--ga-leise);
}

.ga-box__name {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ga-text);
	text-decoration: none;
}

.ga-box__name:hover {
	color: var(--ga-gold-dunkel);
	text-decoration: underline;
}

.ga-box__rolle {
	padding: 0.12em 0.55em;
	border-radius: 100px;
	background: var(--ga-gold);
	color: #fff;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.ga-box__bio {
	margin: 0 0 0.5em;
	padding: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--ga-text);
}

/* ---- Fusszeile ---- */

.ga-box__fuss {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35em 0.9em;
	font-size: 12px;
	color: var(--ga-leise);
}

.ga-box__fakt {
	position: relative;
	padding-left: 1em;
}

.ga-box__fakt::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 5px;
	height: 5px;
	margin-top: -2.5px;
	border-radius: 50%;
	background: var(--ga-gold);
}

.ga-box__profile {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3em;
	margin-left: auto;
}

.ga-box__profil {
	padding: 0.16em 0.6em;
	border: 1px solid var(--ga-linie);
	border-radius: 100px;
	background: #fff;
	font-size: 11px;
	font-weight: 600;
	color: var(--ga-leise);
	text-decoration: none;
	white-space: nowrap;
}

.ga-box__profil:hover {
	border-color: var(--ga-gold);
	color: var(--ga-gold-dunkel);
}

/* ---- Schmale Bildschirme ---- */

@media (max-width: 560px) {
	.ga-box {
		flex-direction: column;
		gap: 0.8em;
		padding: 1em;
	}

	.ga-box__profile {
		margin-left: 0;
	}
}
