@charset "UTF-8";
.gazeta-author-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.gazeta-author-list__item {
    color: #000000;
    display: block;
    margin: 0 20px 20px 0;
    text-decoration: none;
    max-width: 100px;
}

.gazeta-author-list__item:hover {
    text-decoration: none;
}

.gazeta-author-list__item-photo-small {
    border: none;
    display: block;
    height: 100px;
    width: 100px;
}

.gazeta-author-list__item-name {
    font: bold 14px Arial, sans-serif;
}

.gazeta-author {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.gazeta-author__position {
    font: bold 14px Arial, sans-serif;
    margin: 0 0 10px 0;
}

.gazeta-author__photo {
    border: none;
    display: block;
    min-width: 200px;
    margin: 18px 30px 0 0;
}

.gazeta-author__article-headline {
    margin: 30px 0 0 0;
}

.gazeta-author__article-item {
    margin: 0 0 20px 0;
}

.gazeta-author__headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gazeta-author__headline a {
    color: #878787;
    padding-top: 20px;
    text-transform: uppercase;
}

@media screen and (max-width: 640px) {
    .gazeta-author {
        display: block;
    }

    .gazeta-author__photo {
        width: 100%;
    }

    .gazeta-author__headline a {
        padding-top: 0;
    }
}