.instagram-feed .container {
  display: flex;
  column-gap: 2.5rem;
  row-gap: 2.5rem;
}
.instagram-feed .left-block {
  width: 25%;
}
.instagram-feed .the-feed {
    width: 75%;
    display: grid;
    grid-template-columns: calc(33.33% - 2rem) calc(33.33% - 2rem) calc(33.33% - 2rem);
    justify-content: space-between;
}
.ig-post {
  width: 100%;
  /* min-width: 300px; */
}
.instagram-feed h3 {
	margin-top: .7rem;
    margin-bottom: 3rem;
}
.instagram-feed a p {
    color: initial;
    text-decoration: none;
    opacity: 0.6;
	font-size: var(--fontsize_s);
	font-family: var(--Typeface-Secondary);
	line-height: var(--lineh_s);
}
.instagram-feed a {
	text-decoration: none;
}
.instagram-feed a.social-content {
	display: block;
	position: relative;
}

.instagram-feed a.social-content svg {
	position: absolute;
	top: 0.8rem;
	right: 0.8rem;
}

@media screen and (max-width: 1000px) {
	.instagram-feed .container {
		flex-direction: column;
	}
	.instagram-feed .left-block {
		width: 100%;
	}
	.instagram-feed .the-feed {
		width: 100%;
		flex-direction: column;
	}
}

@media screen and (max-width: 769px) {
	.instagram-feed .the-feed {
		grid-template-columns: calc(50% - 1rem) calc(50% - 1rem);
		row-gap: 2rem;
	}	
}

@media screen and (max-width: 550px) {
	.instagram-feed .the-feed {
		grid-template-columns: 100%;
		row-gap: 2rem;
	}	
}