.tmg-block {
  padding: 7rem 0;
}
.tmg-block.bg--light {
  background-color: #F6F3F0;
}
.tmg-block.bg--light-blue {
  background-color: #EAF4FA;
}
.tmg-block.bg--gradient {
  background: linear-gradient(90deg, #162835, #1F5472);
}
.tmg-block__title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.tmg-block__grid {
  display: grid;
  gap: 40px 18px;
  grid-template-columns: repeat(4, 1fr);
}
.tmg-block.cols--2 .tmg-block__grid {
  grid-template-columns: repeat(2, 1fr);
}
.tmg-block.cols--3 .tmg-block__grid {
  grid-template-columns: repeat(3, 1fr);
}
.tmg-block.cols--4 .tmg-block__grid {
  grid-template-columns: repeat(4, 1fr);
}
.tmg-block.cols--5 .tmg-block__grid {
  grid-template-columns: repeat(5, 1fr);
}
.tmg-block .tmg-item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.tmg-block .tmg-item__image {
  aspect-ratio: 19/20;
  overflow: hidden;
  border-radius: 5px;
  background: #1F3642;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}
.tmg-block .tmg-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 380ms ease;
}
.tmg-block .tmg-item:hover .tmg-item__image img {
  transform: scale(1.04);
}
.tmg-block .tmg-item__footer {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.tmg-block .tmg-item__role {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: clamp(9px, 0.75vw, 12px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #10181D;
  display: block;
}
.tmg-block .tmg-item__name {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: clamp(15px, 1.3vw, 22px);
  font-weight: 400;
  color: #1F3642;
  letter-spacing: 0em;
  line-height: 1.2;
  display: block;
}
.tmg-block .tmg-item__link {
  font-size: clamp(11px, 0.85vw, 14px);
  text-transform: none;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1F3642;
  opacity: 0.75;
  transition: opacity 200ms ease, color 200ms ease;
}
.tmg-block .tmg-item__link::after {
  content: "";
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background: url("/wp-content/themes/PLEXTEX/img/plex-arrow-lb.svg") center/contain no-repeat;
  opacity: 0.65;
}
.tmg-block .tmg-item:hover .tmg-item__link {
  opacity: 1;
  color: #3A7594;
}
.tmg-block.bg--gradient .tmg-block__title {
  color: #F3E9E0;
}
.tmg-block.bg--gradient .tmg-item__role {
  color: #A3D4F2;
}
.tmg-block.bg--gradient .tmg-item__name {
  color: #F6F3F0;
}
.tmg-block.bg--gradient .tmg-item__link {
  color: #A3D4F2;
}
@media screen and (max-width: 1024px) {
  .tmg-block.cols--5 .tmg-block__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tmg-block.cols--4 .tmg-block__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 900px) {
  .tmg-block__grid, .tmg-block.cols--2 .tmg-block__grid, .tmg-block.cols--3 .tmg-block__grid, .tmg-block.cols--4 .tmg-block__grid, .tmg-block.cols--5 .tmg-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .tmg-block__grid, .tmg-block.cols--2 .tmg-block__grid, .tmg-block.cols--3 .tmg-block__grid, .tmg-block.cols--4 .tmg-block__grid, .tmg-block.cols--5 .tmg-block__grid {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=team-members-grid.css.map */