/* Переключение цвета фона слева направо */
.btn-9 .tn-atom {
  z-index: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px; /* Без скругления изначально */
  transition: border-radius 0.3s ease; /* Плавный переход для скругления */
}

.btn-9 .tn-atom:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #FFDFB5; /* Цвет фона при наведении */
  transition: all 0.3s ease;
}

.btn-9 .tn-atom:hover {
  color: #0D0624 !important; /* Цвет текста при наведении */
  border-radius: 4px; /* Скругление углов при наведении */
}

.btn-9 .tn-atom:hover:after {
  left: 0;
  width: 100%;
}

.btn-9 .tn-atom:active {
  top: 2px;
}

.t-feed__post-tag {
    font-size: 10px !important;
}


.t-submit {
  z-index: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px; /* Без скругления изначально */
  transition: border-radius 0.3s ease; /* Плавный переход для скругления */
}
.t-submit:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #FFDFB5; /* Цвет фона при наведении */
  transition: all 0.3s ease;
}

.t-submit:hover {
  color: #0D0624 !important; /* Цвет текста при наведении */
  border-radius: 4px; /* Скругление углов при наведении */
}

.t-submit:hover:after {
  left: 0;
  width: 100%;
}

.t-submit:active {
  top: 2px;
}

.t-feed__post-tag {
    font-size: 10px !important;
}