    /* ========= SHARED BUTTONS ========= */

  .btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;

    padding: 6px 14px;
    margin: 6px 0px;
    border-radius: 999px;
    border: 1px solid rgba(247, 224, 182, 0.55);
    background: transparent;

    font-size: 13px;
    font-weight: 500;
    color: #f7e0b6;
    cursor: pointer;
    text-decoration: none; /* works for <a> as well */
  }

  .btn-pill:hover {
    background: rgba(247, 224, 182, 0.07);
  }

  /* Variant if you ever want a stronger CTA */
  .btn-pill--solid {
    background: rgba(247, 224, 182, 0.12);
  }

  .btn-pill--ghost {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
  }