/**
 * Read More
 */

.read-more {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  font-weight: 700;
  width: fit-content;
  margin: 0.5rem 0;
}
.read-more:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("../../images/link/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.1s;
}
.read-more:hover::before {
  transform: translateX(2px);
}
