.more-wrapper {
    position: relative;
    display: inline-block;
}

.show-more-btn {
    height: 48px;
    width: 48px;
    border-radius: 8px;
    border: none;
    background: var(--white--white100, #FFFFFF);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}
.show-more-btn:hover {
    background: var(--grey--grey80, #D7D7D7);
}
.show-more-btn__icon {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}