@import url("./_variables.css");

.site-header__logo-mark {
  height: 60px;
}
.site-header__wrapper{
      background-color:rgba(26, 57, 82, 1.0);

}
.content__container{
    
    gap: 10px;
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-grid img{
  width: 10%;
}

.content-container{
  max-width: 800px;
  margin: 1em auto;
  
}
.team-section{
  max-width:1200px;
  
  margin:0 auto;
  padding: 0 2rem;

}

.team-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap:2rem;
  margin:3rem auto;
  max-width: 1200px;
}
.team-member{
  position:relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
  height: 100%;
  display: flex;
  flex-direction: column;

}

.team-member img{
  width:100%;
  height: 400px;
  object-fit: cover;
  display:block;
}

.team-member-info{
  padding:1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow:1;
  min-width: 0;

  
}
.team-member-info h3{
  color:var(--color--fas-blue);
  font-family: "StabilGrotesk-Bold";
  font-size: 20px;
}


.team-member .title{
    color: var(--color--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.team-member .bio{
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.team-member:hover .bio {
  height: auto;
  max-height: 500px;
  /* Adjust as needed */
  opacity: 1;
}
.team-member:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: var(--red);
}

.team-member.touch-active .bio {
  height: auto;
  max-height: 300px;
  opacity: 1;
}

.list__title{
  text-align: center;
  color:var(--color--fas-blue);
  font-size: 28px;
  font-family:"StabilGrotesk-Bold"
}

@media (max-width: 500px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.usecase__text{
    display:flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width:83%;
    font-family: 'StabilGrotesk-regular';
    color:#6b6b6d;
    margin:10px;
    display:inline-block;
}
.usecase__text a{
  display:inline-block;
}
.usecase__text p{
  text-align: left;
}
.usecase__title{
    color:var(--color--fas-blue);
    font-family: 'StabilGrotesk-bold';
    margin:10px;
}



@media(max-width:960px) {
  .team-grid{
    grid-template-columns: repeat(2, 1fr);  }
  
}
@media(max-width:650px) {
  .team-grid{
    grid-template-columns: repeat(1, 1fr);  }
  
}