/* HLB V5.4.1x - Mobile post owner menu */
@media (max-width: 900px) {
  body.hlb-post-menu-open {
    overflow: hidden !important;
  }

  .hlb-post-owner-sheet-layer {
    position: fixed;
    inset: 0;
    z-index: 100080;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 12px 12px max(12px, env(safe-area-inset-bottom, 0px));
    background: rgba(0,0,0,.58);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: hlbPostMenuFade .14s ease-out;
  }

  .hlb-post-owner-sheet {
    width: min(520px, 100%);
    padding: 8px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    background: rgba(28,30,35,.985);
    box-shadow: 0 22px 60px rgba(0,0,0,.48);
    animation: hlbPostMenuUp .18s cubic-bezier(.2,.8,.2,1);
  }

  .hlb-post-owner-sheet-handle {
    width: 38px;
    height: 4px;
    margin: 2px auto 10px;
    border-radius: 999px;
    background: #60646e;
  }

  .hlb-post-owner-sheet-title {
    padding: 4px 12px 10px;
    color: #9ca1ac;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
  }

  .hlb-post-owner-action-link,
  .hlb-post-owner-delete-form {
    display: block;
    margin: 0;
    text-decoration: none;
  }

  .hlb-post-owner-delete-form > button {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
  }

  .hlb-post-owner-action {
    min-height: 54px;
    padding: 0 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f6f7f9;
    background: transparent;
    font-size: 15px;
    font-weight: 750;
  }

  .hlb-post-owner-action:active {
    background: rgba(255,255,255,.07);
  }

  .hlb-post-owner-action-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #373a42;
    color: #fff;
    font-size: 17px;
  }

  .hlb-post-owner-action.danger {
    color: #ff626b;
  }

  .hlb-post-owner-action.danger .hlb-post-owner-action-icon {
    background: rgba(255,75,84,.14);
    color: #ff626b;
  }

  .hlb-post-owner-cancel {
    width: 100%;
    min-height: 50px;
    margin-top: 7px;
    border: 0;
    border-radius: 14px;
    background: #393c44;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
  }

  @keyframes hlbPostMenuFade {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes hlbPostMenuUp {
    from { opacity: 0; transform: translateY(20px) scale(.98); }
    to { opacity: 1; transform: none; }
  }
}
