#speaker-1, #speaker-2, #speaker-3, #speaker-4 {
    position: relative;
    display: none;
}
.promo-speaker-container {
    width: 100%;
    position: relative;
    & .large-12 {
        height: 400px;
    }
    & .promo-speaker-image-container {
        position: relative;
        top:0;
        left:0;
        width:100%;
        height: 300px;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
        & img {
            width: 100%;
            height:100%;
            border-top-right-radius: 5px;
            border-top-left-radius: 5px;
            object-fit: cover;
            object-position: center center;
        }
    }
    & .promo-speaker-text {
        position: relative;
        z-index: 9;
        height: 90px;
        bottom: 0;
        left:0;
        width:100%;
        background-color: #385770;
        padding: 12px;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;

        & h1 {
            color: #fff;
            font-size: 1.2rem;
            line-height: 1.3rem;;
        }
        & p {
            color: #fff;
            font-size: 0.9rem;
            line-height: 1rem;
            margin-top: 0.25rem;
        }
    }
}