private void Awake()
        {
            if (_textSource == null)
            {
                return;
            }

            var excerpt = _textSource.TakePassage();

            _textComponent.text = excerpt;
        }