.author-card-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4em;
}

.author-card {
    display: flex;
    width:60%;
    gap: 1em;
}

.author-info {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    gap: 0.5em;
    flex: 60%;
}

.author-info h2 {
    font-size: 2em;
}

.author-info p {
    font-size: 1em;
}

.author-info h3 {
    font-size: 1.2em;
}

.author-name {

}

.author-bio {

}



.author-pic {
    height: 100%;
    width: 100%;
    flex: 20%;
}

.author-footer {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.author-location {
    font-weight: bold;
}



@media (max-width: 767px) {
    .author-card {
        width: 90%;
        flex-direction: column;
    }

    .author-card .gh-author-social svg {
        height: 35px;
        width: 35px;
    }
}