
.speaker-card{
    width: 18rem;          
    max-width: 18rem;      
    margin: 1em;
    border-radius: 10px;
    background-image: linear-gradient(to right bottom, #292929, #323232, #3a3b3b, #434444, #4d4e4d);
    transition: transform .3s, filter .3s;
    border: 1px solid white;
    min-height: 25rem;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.speaker-card:hover{
  /*transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);*/
  border: 1px solid red; /* Keep red border */
}
  
.card-main-page{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 1em;
  width: 100%;
}

.image-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-page-speaker-image{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 10px;
    width: 100%;
    height: 15em;
    width: 15em;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.text-wrapper{
  width: 100%;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.name-wrapper{
  display: flex;
  justify-content: left;
  margin: 0;
  padding: 0;
  height: 2.5em;
}

#speakers-name{
  margin-top: 1em;
  font-size: medium;
  text-align: left;
  font-weight: 700;
}

.role-wrapper{
  height: 1.5em;
}

#speaker-role{
  color: #a7a6a6;
  margin-top: 0;
  margin-bottom: .5em;
  font-size: small;
  text-align: left;
  font-weight: 700;
}

.title-wrapper{
  height: 2.5em
} 

#speaker-topic{
    font-size: small;
    color: #9c9c9c;
    text-align: left;
}



