.btn-read-more {
  /* Позиционирование и отображение */
  display: inline-flex;
  align-items: center;
  gap: 10px; /* Расстояние между иконкой и текстом */

  /* Размеры */
  min-width: 145px;
  height: 30px;
  padding: 0 18px;
  box-sizing: border-box;
  
  /* Стиль кнопки */
  background-color: #07093A;
  border-radius: 20px;
  text-decoration: none;
  
  /* Текст */
  color: #FFFFFF !important;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: 500; /* Немного плотнее для читаемости */
  white-space: nowrap;
  
  transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Эффект при наведении */
.btn-read-more:hover {
  background-color: #12155a;
  transform: translateX(2px); /* Легкое движение вправо */
}

/* Стиль иконки внутри кнопки */
.btn-read-more svg {
  flex-shrink: 0;
}