.speakers-details{
    padding: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.speakers-navigation{
    padding-bottom: 1rem;
    width: 90%;
    margin: auto;
    display: flex;
}

.speakers-link{
    border-width: 0.0625rem;
    background-color: #1a1a1c;
    display: flex;
    border: 0.0625rem solid white;
    gap: .5em;
}

.speakers-navigation a{
    text-decoration: none;
}

.speakers-navigation button{
    border-radius: .5rem;
    padding: 1em;
    color:white;
    font-size: 1rem;
    height: 1.7em;
    width: 6.5rem;
    cursor: pointer;
    align-items: center;
    justify-items: center;
    display: flex;
    justify-content: center;
}

.speakers-navigation button:hover{
    transform: scale(1.03); 
}

.speaker-profile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.speaker-image{
height: 16em;
width: 16em;
border-radius: 0.625rem;
object-fit: cover;
margin-bottom: 1em;
margin-top: 2em;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}

.speaker-deatails{ 
display: flex;
justify-content: flex-end;
flex-direction: column;
}

.speaker-name{
font-size: 2.813rem;
margin-bottom: .5rem;
text-wrap: wrap;
max-width: 10rem;
}

.speaker-role {
font-size: small;
padding: 0;
margin: 0;
color: red;
}

.links{
margin-top: 1em;
margin-bottom: 1em;
display: flex;
gap: 1em;
}

.speaker-bio  {
text-align: left;
text-wrap: wrap;
color: #7c7c7c;
width: 50%;
margin-bottom: 1rem;
}

.session-card{
border: 2px solid red;
background-image: linear-gradient(to right, #18181a, #222222, #18181a);
border-radius: 0.5rem;
padding: 1em;
box-shadow: 0 0.25rem 0.5rem #0000001a;
width: 60%;
margin: auto;
transition: transform .3s, filter .3s;
display: flex;
flex-direction: column;
gap: 1em;
}

a{
text-decoration: none;
}

.session-card:hover{
border: 2px solid red; 
transform: scale(1.02);
}

.title-and-bookmark{
display: flex;
justify-content: space-between;
align-items: center;
}

.session-topic {
text-align: left;
font-size: x-large;
width: 80%;
margin: auto;
padding-bottom: 0.5rem;
padding-top: 1rem;

}

.abstract {
width: 80%;
margin: auto;
text-align: left;
padding-bottom: .5rem;
color:#7c7c7c
}

.card-content{
display: flex;
align-items: center;
justify-content: flex-start;
flex-wrap: wrap;
width: 80%;
gap: 1rem;
margin: auto;
}

.card-content p{
    margin: 0;
    font-size: 1rem;  
}
.content-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 18rem;
}

.content-item i{
    color: white;
    margin-right: 0.4rem;
}

.content-item-text {
    color:#7c7c7c
}

.tag-list{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.tag-list i{
   color: white;
   margin-right: 0.4rem;
}


@media screen and (max-width: 700px) {
    .session-card {
        width: 90%;
        margin-top: 0.6rem;
        box-sizing: content-box;
          
    }
    
    .session-topic{
        font-size: large;
    }
    .speaker-profile {
        gap: 0;
        align-items: center;
        flex-direction: column;
    }
    .speaker-bio{
        width: 90%;
    }

    .speaker-name {
        font-size: large;
        max-width: none;
    }
  }

  @media screen and (max-width: 600px) {
    .speaker-profile {
        gap: 0;
        align-items: center;
        flex-direction: column;
    }

    .speaker-name {
        font-size: large;
        max-width: none;
    }

    .speaker-bio{
        width: 90%;
    }
    .session-card {
        width: 80%;
    }
}


@media screen and (max-width: 400px) {
    article {
        gap: 0;
    }

    .card-content {
        width: 100%;
    }

    .speaker-bio{
        width: 90%;
    }
    .session-card {
        width: 80%;
    }
}