/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.roles-block .heading {
  text-align: center;
  margin: 0 0 4.5rem;
}
.roles-block .no-roles {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: normal;
}
.roles-block .roles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4rem;
}

@media (max-width: 1200px) {
  .roles-block .roles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .roles-block .heading {
    margin: 0 0 3rem;
  }
  .roles-block .no-roles {
    font-size: 1.8rem;
  }
  .roles-block .roles-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
  }
}