.showcase-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.showcase-gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 150px;
}

.showcase-gallery-item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcase-gallery-item-image {
  width: 100%;
}

/* Tablet Styling */
@media only screen and (min-width: 601px) and (max-width: 960px) {
  .showcase-gallery-item {
    width: 175px;
  }
}

/* Desktop Styling */
@media only screen and (min-width: 961px) {
  .showcase-gallery-item {
    width: 200px;
  }
}
