:root {
    --sg-container-padding: 20px;
    --sg-container-sm-padding: 20px;
    --sg-gap: 20px;
    --sg-container-xs: 100%;
    --sg-container-sm: 536px;
    --sg-container-md: 728px;
    --sg-container-lg: 984px;
    --sg-container-xl: 100%;
    --sg-container-xxl: 1330px;

    --white: #fff;
    --acsent: #fb8d69;
    --dark-txt: #1c4a66;
    --dark-blue: #0e2838;
    --bg: #061b28;
    --black: #252525;
    --font-family: "Aleo", sans-serif;
    --second-family: "Montserrat", sans-serif;
    --third-family: "Noto Sans", sans-serif;
}

.blog-author {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.blog-author__header {
    display: flex;
    flex-flow: row;
    justify-content: center;
    gap: 30px;
    width: max-content;
    margin-bottom: 20px;
}

.author-thumbnail {
    width: 100%;
    max-width: 100%;
    flex: 0 0 120px;
    border: 10px solid rgba(180, 198, 208, 1);
    border-radius: 14px;
    display: flex;
}

.author-thumbnail img {
    border-radius: 3px;
    max-width: 100px;
    width: 100%;
    max-height: 100px;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.blog-author__header-data {
    flex: 1;
    gap: 10px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
}

.blog-author__header-data h1 {
    margin-top: 0;
}

.author-publications {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.author-publications img {
    margin-right: 10px;
}

.author-publications span {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: var(--acsent);
}

.related-posts-section {
    margin-top: 10px !important;
    margin-bottom: 30px !important;
}

.recomended_wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

@media screen and (max-width: 475px) {
    .blog-author__header {
        flex-flow: column;
        gap: 15px;
        align-items: center;
    }

    .blog-author__header-data {
        align-items: center;
    }

    .author-thumbnail {
        border-width: 7px;
        flex: 0 0 87px;
        width: 87px;
        height: 87px;
    }
}