/* ==========================================
   Кнопка «Показати ще» на странице автора
   ========================================== */

.author-works .show-all-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.author-works .show-all-container .show-all {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-decoration: none;
    position: relative;
    color: #FFF;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.375rem;
    padding: 7px 15px 7px 14px;
    border-radius: 100px;
    background: #231F20;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: background 0.5s ease;
    border: none;
    outline: none;
}

.author-works .show-all-container .show-all:hover {
    background: #E93944;
}

.author-works .show-all-container .show-all:disabled {
    opacity: 0.6;
    cursor: wait;
}