/*

Theme Name: Pro &ndash; Child Theme
Theme URI: https://theme.co/pro/
Author: Themeco
Author URI: https://theme.co/
Description: Make all of your modifications to Pro in this child theme.
Version: 1.0.0
Template: pro

*/

/* Author Section of POST */

.custom-author-bio {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-top: 50px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.custom-author-bio .author-image img {
    border-radius: 100%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: top;
}

.custom-author-bio .author-info {
    flex: 1;
}

.custom-author-bio .author-name {
    margin: 0 0 10px;
    font-size: 24px;
}

.custom-author-bio .author-description {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.custom-author-bio .author-link {
    display: inline-block;
    margin-top: 10px;
    color: rgb(28, 41, 66);
    font-weight: 500;
    text-decoration: none;
}

.custom-author-bio .author-link:hover {
    text-decoration: unset;
    color: #f7c244;
}


.custom-author-bio-wrapper {
    padding: 60px 0px 30px 0px;
}


/* Responsive CSS */

@media screen and (max-width: 992px) {

    .custom-author-bio {
        flex-direction: column;
    }
}

@media screen and (max-width: 640px) {
    .custom-author-bio .author-image img {
        width: 80px;
        height: 80px;
    }
}