/**
 * Mayo Clinic Footer Social Icons Styles
 * Стилі соціальних мереж у футері Astra
 *
 * @package Astra
 * @since 1.0.0
 */

/* Контейнер соціальних мереж у футері */
.ast-small-footer-section-2 .ast-footer-social-icons {
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: flex-end;
}

/* Посилання соціальних мереж */
.ast-footer-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	transition: all 0.3s ease;
	text-decoration: none;
}

.ast-footer-social-link:hover {
	background-color: #ffffff;
	color: #005eb8;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

.ast-footer-social-link:focus {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

/* SVG іконки */
.ast-footer-social-link svg {
	width: 20px;
	height: 20px;
}

/* Адаптивність для планшетів */
@media (max-width: 768px) {
	.ast-small-footer-section-2 .ast-footer-social-icons {
		gap: 12px;
		justify-content: center;
	}

	.ast-footer-social-link {
		width: 36px;
		height: 36px;
	}

	.ast-footer-social-link svg {
		width: 18px;
		height: 18px;
	}
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 480px) {
	.ast-small-footer-section-2 .ast-footer-social-icons {
		gap: 10px;
	}

	.ast-footer-social-link {
		width: 32px;
		height: 32px;
	}

	.ast-footer-social-link svg {
		width: 16px;
		height: 16px;
	}
}

/* Стилі для Footer Builder Astra */
.ast-builder-footer-social-icons-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ast-footer-social-inner-wrap {
	display: flex;
	gap: 12px;
	align-items: center;
}

.ast-builder-social-element {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333333;
	transition: all 0.3s ease;
	text-decoration: none;
}

.ast-builder-social-element:hover {
	color: #1877f2;
	transform: translateY(-2px);
}

.ast-social-element-instagram:hover {
	color: #e4405f;
}

.ast-social-element-telegram:hover {
	color: #0088cc;
}

/* Адаптивність для Footer Builder */
@media (max-width: 768px) {
	.ast-footer-social-inner-wrap {
		gap: 8px;
	}
	
	.ast-builder-social-element {
		--social-size: 16px;
	}
}
