/* h-verify-banner.css — POC verify banner (copied 1:1 from prod otc-verify-banner.css)
 * ONLY CHANGE vs prod: base .otc-verify-banner position → in-flow under header (#2 в ТЗ):
 *   position: relative (was sticky/top:0) → раздвигает контент вниз, НЕ overlay поверх шапки;
 *   z-index 29 (< header's 30) so the header always wins on any overlap;
 *   min-height 42px per spec. Everything else is identical to prod. */
.otc-verify-banner {
    position: relative;
    top: auto;
    z-index: 29;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    min-height: 42px;
    box-sizing: border-box;
    background: linear-gradient(180deg, #e87b00, #c76200);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
    font-size: 13px;
    line-height: 1.3;
    box-shadow: 0 2px 6px rgba(0,0,0,.18);
  }
  .otc-verify-banner__icon { font-size: 14px; flex-shrink: 0; }
  .otc-verify-banner__text {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .otc-verify-banner__email {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
  }
  .otc-verify-banner__actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
  }
  .otc-verify-banner__btn {
    height: 26px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.18);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .12s;
    -webkit-tap-highlight-color: transparent;
  }
  .otc-verify-banner__btn:hover, .otc-verify-banner__btn:focus-visible {
    background: rgba(255,255,255,.28);
    outline: none;
  }
  .otc-verify-banner__btn:active { background: rgba(255,255,255,.12); }
  .otc-verify-banner__btn--ghost { background: transparent; border-color: rgba(255,255,255,.25); }
  .otc-verify-banner__btn--ghost:hover { background: rgba(255,255,255,.10); }

  @media (max-width: 380px) {
    .otc-verify-banner { flex-wrap: wrap; padding: 8px 12px 10px; }
    .otc-verify-banner__text { flex-basis: 100%; }
    .otc-verify-banner__actions { width: 100%; justify-content: flex-end; }
  }

  @media (prefers-reduced-motion: reduce) {
    .otc-verify-banner__btn { transition: none; }
  }
