.employee-bios-container {
    background-color: var(--pure-white);
    padding: 24px;
}



.employee-bios-container .headline {
    font-style: normal;
    font-weight: 420;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    letter-spacing: 0.025em;
    color: var(--azamara-blue);
}

.employee-bios-container .eyebrow {
    font-weight: 420;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--night-sky);
}

.employee-bios-container .blurb {
    font-style: normal;
    font-weight: 390;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.05em;
    color: var(--night-sky);

    margin-bottom: 48px;
}

.employee-bios-container .employee {
    background-color: #fff;
    margin-bottom: 48px;

    display: flex;
}

.employee-bios-container .employee .image-container {
    --bs-gutter-x: 0;
}


.employee-bios-container .employee img {
    padding-right: 24px;
    max-width: 146px;
    max-height: 150px;
    text-align: right;
}

.employee-bios-container .employee .name {
    font-weight: 420;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0.025em;
    color: var(--deep-ocean);

    margin-top: 6px;
}

.employee-bios-container .employee .title {
    font-weight: 390;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--deep-ocean);
    margin-bottom: 1rem;
}


.employee-bios-container .employee .blurb:not(.in-modal) {

    font-style: normal;
    font-weight: 390;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.05em;
    color: var(--night-sky);

    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;

    -webkit-box-orient: vertical;

    margin-bottom: 1rem;
    margin-right: 2rem;
}


.employee-bios-container .employee .read-more {
    font-weight: 420;
    font-size: 20px;
    line-height: 30px;

    margin-bottom: 48px;

    letter-spacing: 0.05em;
    text-decoration-line: underline;
    color: var(--azamara-blue);
}


/* modal styles */

.employee-bios-container .modal-header {
    width: 100%;
}

.employee-bios-container .modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;

    background: #F8F8F8;

    box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.employee-bios-container .modal-body {
    display: inline-block;
    width: 100%;
    min-height: 650px;
}

.employee-bios-container .modal-body  img {
    float: left;
    height: 237px;
    padding-bottom: 24px;
}

.employee-bios-container .employee .modal-body .blurb {
    text-align: left;
    overflow: visible;
}

.employee-bios-container .modal-footer {
    justify-content: space-between;
    width: 100%;
}


/* -sm breakpoint */
@media (min-width: 576px) {

}

/* -md breakpoint */
@media (min-width: 768px) {
    .employee-bios-container {
        padding: 48px;
    }


    .employee-bios-container .employee img {
        padding-right: 48px;
        max-width: 236px;
        max-height: 250px;
        text-align: right;
    }

    .employee-bios-container .employee .name {
        margin-top: 24px;
    }

    .employee-bios-container .modal-body  img {
        padding-bottom: 24px;
    }

    .employee-bios-container .employee .modal-body .blurb {
        text-align: left;
        overflow: visible;
    }

    .employee-bios-container .employee .blurb:not(.in-modal) {

        text-align: left;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;

        margin-bottom: 1rem;
        margin-right: 2rem;
    }

}

/* -lg breakpoint*/
@media (min-width: 992px) {

    .employee-bios-container {
        padding: 48px;
        max-width: 90%;
    }


}

/* -xl breakpoint */
@media (min-width: 1200px) {

}

/* -xxl breakpoint */
@media (min-width: 1400px) {

}