/* .author_credit_section {
    display: block;
} */

.author_credit_section .section_inner {
    padding: 10px 15px 10px 15px;
    margin: 40px 0 0 0;
    border: 1px solid #ccc;
    display: flex;
    gap: 10px;
    /*align-items: center;*/
    background-color: #fafafa;
}

.author_credit_section:has(.author-credit-left-side:empty) {
    display: none;
}

.author_credit_section .author-credit-left-side {
    flex-shrink: 0;
}

.author_credit_section .author-credit-left-side img {
    width: 150px;
    height: auto;
    object-fit: cover;
}

.author_credit_section .author-credit-right-side .author-short-bio-line {
    font-size: 16px;
    line-height: 24px;
    font-style: italic;
    margin-top: 8px;
}

.author_credit_section .author-credit-right-side .social-media-side a {
    display: inline-flex;
    width: 17px;
    height: 17px;
}

.author_credit_section .author-credit-right-side .social-media-side a svg {
    width: 100%;
    height: 100%;
}

.author_credit_section .author-credit-right-side .social-media-side a svg path {
    transition: all 0.5s ease;
}

.author_credit_section .author-credit-right-side .social-media-side a:hover svg path {
    fill: #267544 !important;
}

.author_credit_section .author-credit-right-side .author-written-by-line {
    font-weight: bold;
    font-size: 17px;
    line-height: 17px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.author_credit_section .author-credit-right-side .author-written-by-line .name-side {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}



@media (max-width:767px) {
    .author_credit_section .section_inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width:420px) {
    .author_credit_section .author-credit-right-side .author-written-by-line {
        flex-direction: column;
        align-items: flex-start;
    }
}