Subrayado desde el centro

Subrayado desde el centro: botón en CSS. Copia las reglas, o el prompt que reproduce el resultado.

underlinetext-buttonborder-drawcenter-origin

CSS
.btn-066 {
  position: relative;
  font: 500 15px/1 Georgia,serif;
  color: #292524;
  background: none;
  border: 0;
  padding: 6px 2px;
  cursor: pointer
}
.btn-066::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #b45309;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s
}
.btn-066:hover::after {
  transform: scaleX(1)
}
.btn-066:focus-visible {
  outline: 2px solid #b45309;
  outline-offset: 4px
}
.btn-066:active {
  color: #b45309
}
HTML
<button class="btn-066">Our story</button>
Prompt

Un botón de texto serif (15px, #292524, sin caja) con un subrayado fino de 1px ámbar #b45309 que crece desde el centro hacia fuera al pasar el cursor (scaleX de 0 a 1, origen central, 300ms). En active el texto se vuelve ámbar. Outline de foco de 2px ámbar.