.writer__link {
    text-decoration: none;
    font-weight: var(--headers-weight);
    color: var(--text-color-dark);
    display: inline-block;
    vertical-align: middle;
    background: #fff;
    border-radius: 50%;
    max-height: 50px;
    max-width: 50px;
    width: 100%;
    overflow: hidden;
}

.writer__link img {
    object-fit: cover;
    height: 50px;
    width: 50px;
    object-position: top;
}

.post-author__details {
    display: grid;
    grid-gap: 0.375rem 0;
    font-size: var(--body-small);
}

.post-date__item {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    opacity: 0.6;
}

.post-date__item span {
    line-height: 1;
    color: var(--text-color-dark);
}

.post-author {
    display: flex;
    max-width: 700px;
    margin: 1rem auto;
    align-items: center;
    column-gap: 0.5rem;
}

.single .post-author {
    margin: 1rem 0;
    height: auto;
}

.review__summary--link h1 {
    margin-bottom: 0;
}

.writer__name {
    color: var(--text-color-dark);
    cursor: pointer;
    text-decoration: none;
}

.writer__name:hover {
    text-decoration: underline;
}

@media (min-width: 992px) {
    .post-author__details {
        grid-template-columns: auto auto;
        width: max-content;
        /* grid-gap: 0.3rem 1rem; */
    }

    .writer__name {
        grid-column: -1/1;
    }
}