:root {
    /*Colors*/
    --white-text: #ffffff;
    --red: #E21818;
    --red-pallete: rgba(226, 24, 24, 0.5);

    --white-bg: #fbfbfe;
    --white-bg-hover: #d1cece;
    --block-bg: #f2efef;

    --black-text: #191618;
    --grey-text: #555;
    --white-low-text: #cbcbcb;

    --coral-bg: #fa9494;
    --coral-bg-opacity: #fa9494c9;

    --spacing-small: 68px;
    --spacing-medium: 16px;
    --spacing-large: 75px;

    --font-family: "Monda", sans-serif;
    --second-family: "Montserrat", sans-serif;

    --white: #f2f1f1;
    --gold: #ffd700;
    --grey-white: #7c828d;
    --grey: #292b2f;
    --bg: #1b1c1d;
    --purple: #48467d;
    --yellow-white: #ffee93;
}

.author-container {
    width: 100%;
    max-width: calc(100% - 84px);
    margin: 0 auto 0 auto;
    background: var(--grey);
    border-radius: 60px;
}

.author-content {
    width: 100%;
    max-width: 1300px;
    padding: 32px 20px 32px 340px;
    position: relative;
    min-height: 180px;
    margin: 60px auto;
}
.related_blogs_by_author{
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px 10px;
}
.author-image {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
}

.author-description {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 15px;
}

.author-publications {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 29px;
    color: #7C828D;
}

.author-publications span {
    color: var(--gold);
}
.description{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.description p {
    font-family: var(--second-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #7C828D;
}
.description ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 10px;
}
.description ul li {
    font-family: var(--second-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #7C828D;
}
@media (max-width: 1400px) {
.author-container{
    max-width: 100%;
    padding-left: 20px;
}
.full-container{
    padding: 0!important;
}
}
@media (max-width: 1100px) {
    .author-container{
        padding: 0;
    }
    .author-image{
        width: 200px;
        height: 200px;
    }
    .author-content{
        padding-left: 240px;
    }
}
@media (max-width: 1024px) {
    .author-content{
        padding: 20px 30px 20px 240px;
    }
}
@media (max-width: 900px) {
    .author-image{
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        margin: -45px auto 0 auto;
        width: 150px;
        height: 150px;
    }
    .author-publications{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 5px;
    }
    .description p,.description ul li{
        text-align: center;
    }
    .author-content{
        display: flex;
        flex-flow: column;
        align-items: center;
        gap: 20px;
        padding: 20px 30px;
        margin-top: 50px;
    }
}
@media (max-width: 768px) {
    .author-container{
        border-radius: 50px;
    }
    .related_blogs_by_author{
        max-width: 100%;
    }
}
@media (max-width: 560px) {
    .author-content{
        padding: 15px;
        margin-top: 30px;
        margin-bottom: 40px;
    }
     .author-image{
        width: 100px;
        height: 100px;
        margin-top: -30px;
     }
     .author-publications{
        font-size: 16px;
     }
}