.learn-more-ui {
  margin-top: 2rem;
}

.learn-more-ui .learn-more {
  position: relative;
  display: inline-block;
  width: 12rem;
  padding: 0;
  border: 0;
  outline: 0;
  color: inherit;
  cursor: pointer;
  background: transparent;
  font: inherit;
  text-decoration: none;
}

.learn-more-ui .circle {
  position: relative;
  display: block;
  width: 3rem;
  height: 3rem;
  margin: 0;
  border-radius: 1.625rem;
  background: #f4f4f5;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: width 0.45s cubic-bezier(0.65, 0, 0.076, 1), background-color 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.learn-more-ui .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.learn-more-ui .icon.arrow {
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: #151515;
}

.learn-more-ui .icon.arrow::before {
  position: absolute;
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #151515;
  border-right: 0.125rem solid #151515;
  content: "";
  transform: rotate(45deg);
}

.learn-more-ui .button-text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 0 0 1.85rem;
  padding: 0.75rem 0;
  color: #f8fafc;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.learn-more-ui .learn-more:hover .circle,
.learn-more-ui .learn-more:focus-visible .circle {
  width: 100%;
  background: #f4f4f5;
}

.learn-more-ui .learn-more:hover .icon.arrow,
.learn-more-ui .learn-more:focus-visible .icon.arrow {
  transform: translateX(1rem);
}

.learn-more-ui .learn-more:focus-visible {
  border-radius: 1.625rem;
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.learn-more-ui .learn-more:hover .button-text,
.learn-more-ui .learn-more:focus-visible .button-text {
  color: #151515;
}
