.instagram {
	background-color: #fafafa;
}

.instagram .align {
	margin: 0 auto;
	max-width: 935px;
}

.instagram header {
	display: flex;
	border-bottom: 2px solid #dbdbdb;
	padding: 20px 0 20px 0;
	margin-bottom: 20px;
}
.instagram header .logo {
	width: 140px;
	height: 140px;
	overflow: hidden;
	display: block;
	border-radius: 50%;
	margin: 0 60px 0 30px;
}
.instagram header .logo img {
	max-width: 100%;
}
.instagram header .infos {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.instagram header .infos .follow {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.instagram header .infos .follow > span {
	color: #262626;
	font-size: 30px;
	margin-right: 26px;
	flex-grow: 0;
}
.instagram header .infos .follow a {
	background-color: #0095f6;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	padding: 0 25px;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	height: 35px;
}
.instagram header .infos .name {
	color: #555555;
	font-size: 15px;
	font-weight: 600;
}
@media only screen and (max-width: 716px) {
	.instagram header {
		flex-direction: column;
		align-items: center;
	}
	.instagram header .logo {
		width: 80px;
		height: 80px;
		margin: 0 0 8px 0;
	}
	.instagram header .follow {
		flex-direction: column;
	}
	.instagram header .infos .follow > span {
		font-size: 24px;
		margin: 0 0 8px 0;
	}
	.instagram header .infos .name {
		text-align: center;
	}
}

.instagram .posts {
	display: grid;
	grid-template-columns: auto auto auto;
	grid-gap: 28px;
}
.instagram .posts li {
	display: block;
}
.instagram .posts li a {
	display: block;
	line-height: 0;
}
.instagram .posts li picture {
	display: block;
	overflow: hidden;
}
.instagram .posts li img {
	width: 100%;
	height: 293px;
	object-fit: cover;
}
@media only screen and (max-width: 980px) {
	.instagram .posts {
		grid-gap: 8px;
		padding: 0 8px;
	}
	.instagram .posts li img {
		height: 230px;
	}
}
@media only screen and (max-width: 600px) {
	.instagram .posts {
		grid-gap: 4px;
		padding: 0 4px;
	}
	.instagram .posts li img {
		height: 150px;
	}
}
@media only screen and (max-width: 400px) {
	.instagram .posts li img {
		height: 100px;
	}
}

.instagram .see-more {
	text-align: center;
	padding: 50px 10px;
}
.instagram .see-more a {
	font-weight: bold;
	color: #8e8e8e;
	text-decoration: none;
	font-size: 15px;
}
.instagram .see-more a::before,
.instagram .see-more a::after {
	content: "";
	width: 120px;
	height: 1px;
	background-color: #cccccc;
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px;
}
.instagram .see-more a:hover {
	text-decoration: underline;
}

@media only screen and (max-width: 660px) {
	.instagram .see-more {
		padding: 30px 5px;
	}
	.instagram .see-more a {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.instagram .see-more a::before,
	.instagram .see-more a::after {
		margin: 15px 0;
	}
}
