.speaker {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
    height: 100%;
    
}

@media (max-width: 576px) {
    .speaker {
        flex-direction: row;
    }

    .organising .speaker {
        flex-direction: column;
    }
}

.speaker-img {
    border-radius: 50%;
    object-fit: cover;
    width: 160px;
    height: 160px;
    box-shadow: 3px 5px 8px rgba(0, 0, 0, .5);
    margin: 0 auto;
}

@media (max-width: 576px) {
    .speaker-img {
        width: 160px;
        height: 160px;
    }
}

.speaker-img:hover {
    /* background-color: var(--primary-light); */
    background-image: none;
}

.speaker-img img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    /* border: 3px solid #FFF; */
    /* box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.25); */
}

.speaker-info {
    flex: 1;
}
.speaker-info span {
    display: block;
    line-height: 1.5rem;
}
.speaker-info-name {
    flex: 1;
}


@media (max-width: 576px) {
    .speaker-info {
        text-align: left;
        flex: 1;
    }

    .organising .speaker-info {
        text-align: center;
    }
}

.speaker-info .name {
    font-weight: 700;
}

.speaker-info .position {
    font-weight: 700;
    color: var(--primary);
}

.speaker-info .affiliation {
    line-height: 1.2;
    color: var(--body-text-color);
}

.btn-bio {
    font-size: 14px;
    font-weight: 700;
    color: #FFF !important;
    text-decoration: none !important;
    padding: 0.25rem 1rem;
    border-radius: 24px;
    background-color: #8BA624;
}
.btn-bio:hover {
    background-color: #294C37;;
}

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

.btn-close {
    font-weight: bold;
    font-size: 2rem;
    color: #8BA624;
    line-height: 1rem;
    cursor: pointer;
}