.gfa-author-box {
	--gfa-bg: #14151b;
	--gfa-border: rgba(197, 168, 128, 0.35);
	--gfa-accent: #c5a880;
	--gfa-text: #f1f5f9;
	--gfa-text-dim: #a3a9b7;

	display: flex;
	gap: 18px;
	align-items: flex-start;
	background: var(--gfa-bg);
	border: 1px solid var(--gfa-border);
	border-radius: 14px;
	padding: 20px;
	margin: 32px 0 0;
	color: var(--gfa-text);
	font-family: inherit;
}

.gfa-author-photo {
	flex-shrink: 0;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	object-position: center top;
}

.gfa-author-body {
	min-width: 0;
}

.gfa-author-eyebrow {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--gfa-accent);
}

.gfa-author-name {
	margin: 0 0 2px;
	font-size: 18px;
	font-weight: 700;
	color: var(--gfa-text);
}

.gfa-author-role {
	margin: 0 0 10px;
	font-size: 13px;
	color: var(--gfa-text-dim);
}

.gfa-author-desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--gfa-text-dim);
	margin-bottom: 12px;
}
.gfa-author-desc p { margin: 0 0 8px; }
.gfa-author-desc p:last-child { margin-bottom: 0; }

.gfa-author-social {
	display: flex;
	gap: 10px;
}

.gfa-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(197, 168, 128, 0.12);
	color: var(--gfa-accent);
	transition: background 0.15s ease, color 0.15s ease;
}
.gfa-social-icon svg { width: 16px; height: 16px; }
.gfa-social-icon:hover {
	background: var(--gfa-accent);
	color: #14151b;
}

@media (max-width: 480px) {
	.gfa-author-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.gfa-author-social {
		justify-content: center;
	}
}
