/**
 * Social modul stílusa — [cinemore_social] shortcode.
 * Kör alakú gombok betűjellel (in / f / IG / TT).
 */

.cinemore-social {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.cinemore-social__gomb {
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid #cfe4da;
	color: #07130e;
	font-weight: 700;
	font-size: 14.5px;
	line-height: 1;
	background: transparent;
	transition: background .3s, color .3s, border-color .3s, transform .25s;
}

.cinemore-social__gomb:hover {
	background: #14c98d;
	color: #07130e;
	border-color: #14c98d;
	transform: translateY(-3px);
}

@media (max-width: 767px) {
	.cinemore-social {
		gap: 10px;
	}
	.cinemore-social__gomb {
		width: 42px;
		height: 42px;
		font-size: 13.5px;
	}
}
