.team-member {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 8px;
  max-width: 100%;
  margin: auto;
}

.headshot {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #E5E5E5;
  object-fit: cover;
  flex-shrink: 0;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  gap: 12px;
}

.arrow {
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.arrow-icon {
  width: 10px;
  height: 10px;
}

.title, .company {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.2;
}

.book-meeting {
    text-decoration: none;
  background-color: #000;
  color: white;
  font-weight: 600;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 32px;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  width: 160px; 
  display: block; 
  text-align: center;
  transform: none;
  box-shadow: none;
  outline: none;
  filter: none;
  line-height: 1; 
  letter-spacing: 0; 
   font-family: inherit !important;
}

.book-meeting:hover {
  font-weight: 600; !important;
  font-size: 12px;!important!;
  background-color: #B4B4B4 !important;
  color: black !important;
  border: none !important;
  transform: none !important; 
  box-shadow: none !important;
  outline: none !important; 
  filter: none !important; 
  margin: 0 !important; 
  width: 200px !important;
   line-height: 1 !important; 
  letter-spacing: 0 !important;
   font-family: inherit !important;
}


@media (min-width: 768px) {
  .book-meeting  {
    width:200px;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px; !important;
    
  }
  
  .book-meeting:hover{
    font-size: 14px;
    font-weight:600;
   
  }
}

@media (min-width: 1024px) {
  .book-meeting {
    font-size: 16px;
    
  }
  
  .book-meeting:hover{
  font-size: 16px;
    font-weight:600;
  }
}


.arrow:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .headshot {
    width: 200px;
    height: 200px;
  }
 
  
  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .content {
    text-align: center;
    align-items: center;
  }
}