/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .bfi-instagram-feed {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bfi-instagram-post {
  width: 30%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.bfi-instagram-post img {
  width: 100%;
  height: auto;
}

.bfi-instagram-post p {
  padding: 10px;
  text-align: center;
}