<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.blogAuthorContainer {
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 18px 24px 18px 24px;
    /* max-width: 80vw; */
    border-radius: 5px;
    background-color: #ffffff;
    margin-top: 16px;
    margin-bottom: 16px;
    border: 1px solid lightgray;
    gap: 18px;
}
#aboutAuthor {
    padding: 0;
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}
.authorName {
    display: flex;
    font-weight: 600;
    color: #0C71C3;
    font-size: 18px;
    gap: 9px;
}
.authorSubtitle {
    color: gray;
    font-size: 14px;
    font-weight: 400;
}
.authorDescription {
    color: black;
}
#readFullBio {
    border: none;
    background: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    color: #0C71C3;
}
.rowDisplay{
    /* position: relative; */
   display: flex;
   gap: 16px;
}
.columnDisplay{
    display: flex; 
    flex-direction: column;
}
.authorImageContainer{
    width: 70px; 
    height: 70px; 
    border-radius: 50%;
    padding: 0!important;
}
.authorImageContainer img {
    width: 100%;
    height: 100%; 
    object-fit: cover;
    border-radius: 50%; 
    padding: 0!important
}
.author-cta-container{
    position: absolute;
    right: 0;
}
.autherheading{
    display: flex;
    position: relative;
}
.author-profile{
    position: absolute;
    right: 0;
}
.author-profile-button{
    border: 3px solid #0C71C3;
    border-radius: 36px;
    color: white;
    background: linear-gradient(91deg, #1989F2 0%, #0E54B5 100%);
    box-shadow: 4px 4px 16px 0px rgba(255, 255, 255, 0.32) inset,
    -6px -6px 16px 0px rgba(0, 0, 0, 0.32) inset,
    4px 4px 8px 0px rgba(0, 0, 0, 0.32);
    padding: 4px 14px;
}

.author-profile-button:hover {
    background: linear-gradient(91deg, #075095 0%, #0f3974 100%);
}

.author-social-container{
    padding-top: 6px;
    padding-bottom: 6px;
    display: flex;
    gap: 6px;
}
.author-social-logo{
    height: 40px;
}
@media screen and (max-width:768px) {
    .author-social-container{
        padding-top: 0px;
    }
    .slash{
        display: none;
    }
    .authorImageContainer{
        width: 90px;
        height: 90px;
    }
    .authorName{
        display: block !important;
        font-weight: 600;
        color: #0C71C3;
        font-size: 18px;
    }
    .rowDisplay{
        margin-top: 16px;
    }
    .blogAuthorContainer{
        gap: 12px;
    }
    .author-profile{
        right: -15px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .author-profile-button{
        padding: 4px 8px;
    }
    
}</pre></body></html>