/* Ringelbach Hexen - Social Media (Buttons auf der Startseite) */

.rh-social-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.rh-social-btn {
	flex: 1 1 200px;
	box-sizing: border-box;
	text-align: center;
	display: inline-block;
	background-color: #4c8fb1;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 12px 25px;
	font-size: 1.05em;
	font-weight: bold;
	cursor: pointer;
	text-decoration: none;
}

.rh-social-btn:hover {
	background-color: #3d7591;
}

.rh-social-btn-instagram {
	background: linear-gradient(45deg, #feda75, #d62976, #4f5bd5);
}

.rh-social-btn-instagram:hover {
	opacity: 0.9;
}

@media screen and (max-width: 450px) {
	.rh-social-buttons {
		flex-direction: column;
	}

	.rh-social-btn {
		flex: none;
		width: 100%;
	}
}
