@layer specific {
  .button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #dc3b41;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease;
  }

  .button:hover,
  .button:focus-visible {
    background: #b82f34;
    color: #fff;
    text-decoration: none;
  }
}
