/* Fellows grid layout enforcement */
.fellows-grid,
.alignfull .fellows-grid,
.alignwide .fellows-grid,
.wp-block .fellows-grid {
  display: grid !important;
  gap: clamp(24px, 3vw, 36px) !important;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 1900px) {
  .fellows-grid,
  .alignfull .fellows-grid,
  .alignwide .fellows-grid,
  .wp-block .fellows-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 2850px) {
  .fellows-grid,
  .alignfull .fellows-grid,
  .alignwide .fellows-grid,
  .wp-block .fellows-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

.fellows-grid > .fellow-card {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  min-width: 0;
  box-sizing: border-box;
}
