<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.click-author-box {
    font-family: 'Nunito Sans', Arial, sans-serif;
    max-width: 100%;
    margin: 20px 0;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    flex-direction: column;
    font-size:16px;
}

.author-box-tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #000000;
}

.author-tab {
    flex: 1;
    text-align: center;
    padding: 10px 20px;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid #ddd;
    border-bottom: none;
	color: #000000;
}

.author-tab.active,
.author-tab:hover {
    color:#ffffff;
	background: #000000;
    border-top: 2px solid black;
}

.author-box-content {
    display: none;
    padding: 20px;
    border-top: 1px solid #ddd;
}

.author-box-content.active {
    display: flex;
    align-items: flex-start;
}

.author-image,
.author-initials-box {
    flex-basis: 100px;
    height: 100px;
    background-color: #f7f7f7;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
	margin-bottom:10px;
}

.author-info {
    display: flex;
    flex-grow: 1;
    padding-left: 20px;
    align-items: center;
}


.author-profile {
	padding:10px;
}

.author-bio {
    flex-grow: 1;
}

.author-box h3 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    color: #333;
}

.author-box p {
    margin: 0;
    line-height: 1.6;
    color: #000000;
}

.author-social-links {
    display: flex;
    align-items: center;
    margin-top: 0px;
    flex-direction: column;
}

.author-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-right: 0px;
    font-size: 24px;
    color: #000000;
    padding: 5px 10px;
}

.author-social-links a:hover {
    color: teal;
}

/* Font Awesome Icons */

.author-social-links a {
    margin-right: 5px;
    display: inline-block;
    font-weight: 900;
	color: #000000;
}

/* Responsiveness */
@media (max-width: 768px) {
    .author-box-content.active {
        flex-direction: column;
        align-items: center;
    }

    .author-info {
        flex-direction: column;
        align-items: center;
        padding-left: 0;
    }
	
	.author-social-links {
    display: flex;
    align-items: center;
    margin-top: 20px;
    flex-direction: row;
    }

    .author-icons a {
        margin-right: 10px; /* space between icons */
        margin-bottom: 0;
    }

    .author-tab {
        margin-right: 0;
    }
}
</pre></body></html>