#instagram-feed.row{
    margin-left:-1rem!important;
    margin-right:-1rem!important;
  }  
.post {
  /* border: 1px solid #ccc; */
  /* padding: 10px; */
  /* margin: 10px; */
  /* max-width: 25vw; */
  position: relative;
  height:26.5vw;
}
.post a::before {
  right: 25px;
  top: 25px!important;
}
.post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.post p {
  display:none;
}
.post h2 {
    display: block;
  font-size: 1rem;
  position: absolute;
  box-sizing: border-box;
  margin: 0;
  height: auto;
  width: calc(100% - 30px);
  background-color: rgba(255,255,255,0.7);
  padding: 15px;
  line-height: 1.2;
  display: flex;
  align-items: end;
  opacity:0;
    transition: opacity 0.2s ease-in-out;
  font-weight: 600;
  font-family: 'Inter Tight', sans-serif;
}
.post:hover h2 {
  
    display: block;
  font-size: 1rem;
  position: absolute;
  box-sizing: border-box;
  margin: 0;
  height: auto;
  width: calc(100% - 30px);
  background-color: rgba(255,255,255,0.7);
  padding: 15px;
  line-height: 1.2;
  display: flex;
  align-items: end;
    opacity:1;
  transition: opacity 0.2s ease-in-out;
}
.postdate {
  position: absolute;
  top: 25px;
  left: 30px;
  text-shadow: 0px 0px 1px #fff;
  color: #000;
}
.post a {
  /* position: absolute; */
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  color: #000;
  align-items: end;
  display: flex;
}
@media only screen and (max-width: 1199px) {
#instagram-feed .post {
  height: 29vw;
}
}  
@media only screen and (max-width: 991px) {
#instagram-feed .post {
  height: 60vw;
}
}  
@media only screen and (max-width: 767px) {
#instagram-feed .post {
  height: 122vw;
      display:none;
}
#instagram-feed .post:first-child {
      display:block;
}  
}  
@media only screen and (min-width: 2000px) {
.post {
  height: 33.5rem;
}
}