/* "Follow Us" social section on the home page */
#social-follow {
	padding: 60px 0;
}
#social-follow .section-title {
	text-align: center;
}
#social-follow .social-follow-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: flex-start;
	justify-content: center;
	margin-top: 2rem;
}
#social-follow #social-feed {
	flex: 0 1 500px;
	min-width: 280px;
	text-align: center;
}
#social-follow .social-hashtags-block {
	flex: 1 1 300px;
	max-width: 500px;
	font-size: 1.05em;
}
.hashtag-chip {
	display: inline-block;
	margin: 0.25rem 0.4rem 0.25rem 0;
	padding: 0.35rem 0.95rem;
	border: 1px solid #168686;
	border-radius: 999px;
	color: #168686;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.2s, color 0.2s;
}
.hashtag-chip:hover,
.hashtag-chip:focus {
	background: #168686;
	color: #fff;
}
@media (max-width: 767px) {
	#social-follow {
		padding: 40px 0;
	}
}
