/**
 * Exhibitor Grid - WPBakery Element Styles
 */

.the7child-exhibitor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 300px));
  gap: 28px 24px;
  justify-content: center;
  align-items: start;
  margin: 24px 0;
}

.the7child-exhibitor-grid__item {
  width: 300px;
  max-width: 100%;
}

.the7child-exhibitor-grid .the7child-exhibitor-card-wrapper {
  margin: 0;
  text-align: center;
}

.the7child-exhibitor-grid .the7child-exhibitor-card {
  width: 300px !important;
  max-width: 100%;
}

.the7child-exhibitor-grid .the7child-exhibitor-card__image-shell,
.the7child-exhibitor-grid .the7child-exhibitor-card__placeholder {
  width: 300px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
}

.the7child-exhibitor-grid .the7child-exhibitor-card__caption {
  margin-top: 14px;
}

@media (max-width: 1320px) {
  .the7child-exhibitor-grid {
    grid-template-columns: repeat(2, minmax(0, 300px));
  }
}

@media (max-width: 767px) {
  .the7child-exhibitor-grid {
    grid-template-columns: minmax(0, 300px);
    gap: 22px;
  }
}
