/**
 * CSS for the glw_person_content shortcode
 */

/* Hide read more content on initial page load */
body:not(.et-fb) .glw_person_readmore_content_container {
    display: none;
}

.glw_person_container {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-bottom: 1em;
}

.glw_person_content_container {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 2em;
    /* Other styling properties for the container */
}

.glw_person_name {
    color: initial;
    font-weight: normal;
    font-size: initial;
}

.glw_person_title {
    color: initial;
    font-size: initial;
    font-style: normal;
    font-weight: normal;
    margin-top: 0.5em;
    margin-bottom: 5%;
}

.glw_person_image_container img {
    border-radius: 100%;
    overflow: hidden;
    width: 80%;
    height: auto;
}

.glw_person_excerpt {
    color: initial;   /* Default value */
    font-size: inherit;
    font-style: normal;
    font-weight: normal;
}

.glw_person_readmore_link_container {
    padding-top: 1em;
    position: relative;
    bottom: 0;
}

.glw_person_readmore_link {
    display: inline-block;
    background-color: #000FFF;
    min-width: max-content;
    width: 11vh;
    text-align: center;
    border: solid;
    /*border-width: 2px !important;*/
    /*border-color: #9595f1;*/
    border-radius: 35px !important;
    outline: 2px solid #9595f1;
    padding: 5px 0 5px 0;
    margin-top: auto;
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 600;
}

.glw_person_readmore_link.clickable {
    cursor: pointer;
}

.glw_person_readmore_content_container {
    color: initial;   /* Default value */
    font-size: inherit;
    font-style: normal;
    font-weight: normal;
    background-color: initial;
}
