.speaker_container {
    margin-top: 20px;
    margin-bottom: 20px;
    figure {
        width: 200px;
        img {
            width: 100%;
            height: auto;
        }
    }
}
.btn_bio {
    a {
        width: 100px;
        display: block;
        color: #fff;
        font-weight: bold;
        text-decoration: none;
        text-align: center;
        padding: 4px 0;
        border-radius: 5px;
        background: linear-gradient(to top, #0066cc, #0066cc);
        background-repeat: no-repeat;
        background-position: left top;
        &:hover {
            filter:alpha(opacity=75);
			-moz-opacity:0.75;
			-khtml-opacity: 0.75;
			opacity:0.75;
        }
    }
}
.speaker_box {
    margin-bottom: 30px;
}
.speaker_box + .speaker_box {
    border-top: 1px solid #ccc;
}
.flex_dl {
    display: flex;
    gap: 10px;
    dt {
        white-space: nowrap;
    }
}
.italic_txt {
    font-style: italic;
}
.speaker_container {
    display: flex;
    gap: 20px;
    align-items: end;
}


@media screen and (max-width: 640px){
    .speaker_container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

	
	
}










