.logo {
  display: flex;
  align-items: center; /* Выравнивает элементы по вертикали по центру */
}

.logo__mask {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 0.6rem; 
  margin-right: 0.6rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.logo__title {
  font-size: 1.4rem;
  font-weight: 600;
}

