/**
 * @file
 * 4 column layout styling.
 *
 * This can be disabled in the block settings for this module.
 */

/* Responsive grid layout for images/videos */
#instafeed {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 480px) {
  #instafeed {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 899px) {
  #instafeed {
    grid-template-columns: repeat(4, 1fr);
  }
}
#instafeed .post {
  margin-bottom: 0;
}
