aside.right .social-media-top {
	text-align: center;
	display: grid;
	border-bottom: var(--border);
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
aside.right .social-media-top a {
	display: block;
	padding: var(--margin) 0;
}
aside.right .social-media-top a:last-of-type {
	border-right: unset;
}
aside.right .social-media-top .icon {
	display: block;
}
html.dark aside.right .social-media-top .icon {
	filter: invert(1);
}
aside.right .social-media-top .icon img {
	height: 24px;
	width: 24px;
	object-fit: contain;
	transform: scale(1);
	-webkit-transition: transform 0.25s;
	-moz-transition: transform 0.25s;
	-ms-transition: transform 0.25s;
	-o-transition: transform 0.25s;
	transition: transform 0.25s;
}
aside.right .social-media-top a:hover .icon img {
	transform: scale(1.1);
}
aside.right .social-media-top .name {
	font-size: 16px;
	line-height: 16px;
	font-weight: 500;
	margin-top: 6px;
}
aside.right .social-media-top a:hover .name {
	color: var(--color);
}
@media all and (max-width: 960px) {
	aside.right .social-media-top a {
		border-right: var(--border);
	}
	aside.right .social-media-top a:last-of-type {
		border: unset;
	}
}
@media all and (max-width: 540px) {
	aside.right .social-media-top a {
		padding: 18px 0;
	}
}