.author-top {
    padding-top: 10px;
    padding-bottom: 10px;
}
.author-top .breadcrumbs {
    margin-bottom: 20px;
}
.author-top h1 {
    margin: -2px 0 6px;
}
.author-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}
.author-info__userpic img {
    display: block;
    width: 124px;
    height: 124px;
    border-radius: 50%;
}
.author-info__position {
    display: inline-block;
    padding: 4px 12px;
    text-align: center;
    border-radius: 4px;
    background: #E53765;
    color: #ffffff;
}
.author-info__other .socials {
    justify-content: flex-start;
    margin-top: 16px;
}
.author-reviews {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
}
.author-review {
    padding: 13px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 13px;
    border-radius: 8px;
    background: #FFF;
    /*box-shadow: 0 1px 0 1px #c4d7d7;*/
    /*border: 1px solid #c4d7d7;*/
    box-shadow: 16px 14px 38px 0 rgba(0, 0, 0, 0.10);
}
.author-review__logo-info {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: center;
}
.author-review__logo {
    flex: 0 0 50px;
}
.author-review__logo img {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.author-review__title {
    color: #2D3142;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 24px; /* 100% */
    margin-bottom: 8px;
}
.author-review__meta {
    color: #529D9D;
    font-family: "Roboto Slab", Arial, serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px; /* 120% */
    letter-spacing: 1px;
    text-transform: uppercase;
}
.author-review__meta span span {
    color: #234B4B;
}
.author-review__rating {
    flex: 0 1 130px;
    /*width: 130px;*/
    padding: 0 15px;
    color: #5777BD;
    text-align: center;
    font-family: "Roboto Slab", Arial, serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px; /* 100% */
    letter-spacing: -1.44px;
}
.author-review__actions {
    flex: 0 0 max-content;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.author-review__actions button {
    padding: 12px 60px;
}

.author-listings {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 16px 0;
}
.author-listing {
    flex: 0 1 234px;
    max-width: 100%;
    padding: 12px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 8px;
    background: #FFF;
    /*box-shadow: 0 1px 0 1px #c4d7d7;*/
    /*border: 1px solid #c4d7d7;*/
    box-shadow: 16px 14px 38px 0 rgba(0, 0, 0, 0.10);
}
.author-listing__logo-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}
.author-listing__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.author-listing__title {
    flex: 1;
    color: #2D3142;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 24px; /* 100% */
    margin-bottom: 8px;
}
.author-listing__meta {
    color: #529D9D;
    font-family: "Roboto Slab", Arial, serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px; /* 120% */
    letter-spacing: 1px;
    text-transform: uppercase;
}
.author-listing__meta .dates>span {
    display: block;
}
.author-listing__meta span span {
    color: #234B4B;
}
.author-listing__actions {
    display: flex;
    justify-content: center;
    align-items: center;
}
.author-listing__actions .button {
    display: block;
    width: 100%;
}

@media (max-width: 767px) {
    .author-review {
        flex-direction: column;
    }
    .author-review__logo-info {
        flex: 0 0 auto;
        justify-content: center;
    }
    .author-review__rating {
        flex: 0 0 auto;
        display: none;
    }
    .author-review__actions {
        justify-content: center;
        align-items: center;
    }

}
@media (max-width: 683px) {
    .author-listing {
        flex: 0 0 100%;
    }
    .author-listing__logo-info {
        justify-content: center;
    }
    .author-listing__meta .dates>span {
        display: inline-block;
    }

}
