.more {
  display: inline-block;
  position: absolute;
  bottom: 15px;
  right: 13px;
  border: 1px solid #ea1126;
  border-radius: 4px;
  overflow: hidden;
  background-color: transparent;
  transition: color 0.4s;
}

.more a {
  display: block;
  padding: 5px 18px;
  color: #ea1126;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: color 0.4s;
}

.more::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: #ea1126;
  z-index: 1;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}

.more:hover::before {
  opacity: 1;
  transform: scaleX(1); 
}

.more:hover a {
  color: #fff;
}




