/* Authors / Newsroom hub */
.authors-hub {
	background: #ffffff;
	color: #1f2937;
	padding: 0 0 4rem;
}

.authors-hub-container {
	max-width: 960px;
	margin: 0 auto;
	padding: 2.5rem 1.25rem 0;
}

.authors-hub-header {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #e5e7eb;
}

.authors-hub-header h1 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 2.5vw, 2.25rem);
	line-height: 1.2;
	color: #0b1f3a;
	font-weight: 700;
}

.authors-hub-lede {
	margin: 0 0 1rem;
	font-size: 1.05rem;
	line-height: 1.6;
	color: #374151;
	max-width: 42rem;
}

.authors-hub-trust-links {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
}

.authors-hub-trust-links a {
	color: #2b5ba1;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.authors-hub-trust-links a:hover {
	color: #1e4075;
}

.authors-hub-empty {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	color: #4b5563;
}

.authors-hub-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.authors-hub-card {
	margin: 0;
}

.authors-hub-card-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.15rem;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	text-decoration: none;
	color: inherit;
	background: #ffffff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.authors-hub-card-link:hover {
	border-color: #2b5ba1;
	box-shadow: 0 4px 14px rgba(43, 91, 161, 0.08);
}

.authors-hub-avatar {
	flex: 0 0 auto;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	background: #e5e7eb;
}

.authors-hub-card-text {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}

.authors-hub-name {
	font-size: 1.1rem;
	font-weight: 700;
	color: #0b1f3a;
}

.authors-hub-role {
	font-size: 0.95rem;
	color: #4b5563;
}

.authors-hub-count {
	font-size: 0.85rem;
	color: #6b7280;
}

@media (max-width: 600px) {
	.authors-hub-avatar {
		width: 56px;
		height: 56px;
	}

	.authors-hub-card-link {
		padding: 0.85rem 1rem;
	}
}
