/**
 * GD Author Social Profiles - Article View Styles
 *
 * Copyright (c) 2026 Genius Design
 * Distributed under the GNU GPL v3.
 */

.gd-author-social-profiles {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 10px;
	padding-top: 8px;
}

.gd-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.15s ease;
	opacity: 0.75;
}

.gd-social-link:hover {
	opacity: 1;
	transform: scale(1.15);
	text-decoration: none;
}

.gd-social-link svg {
	width: 20px;
	height: 20px;
	display: block;
}
