/* V20.01.0014 — Firefox desktop Search card alignment + deterministic Matches tab paint.
   Desktop Firefox only: keep the approved iOS/mobile layouts untouched. */
@-moz-document url-prefix(){
  @media (min-width:901px){
    /* Search cards: every card fills its grid row and the profile button stays
       pinned to the same bottom line even when profile details wrap differently. */
    html body #discover-overlay:not([data-mb-matches-mode="1"]) .discover-grid{
      display:grid!important;
      align-items:stretch!important;
      grid-auto-rows:1fr!important;
    }
    html body #discover-overlay:not([data-mb-matches-mode="1"]) .discover-card{
      display:flex!important;
      flex-direction:column!important;
      height:100%!important;
      min-height:100%!important;
      align-self:stretch!important;
    }
    html body #discover-overlay:not([data-mb-matches-mode="1"]) .discover-photo{
      flex:0 0 auto!important;
      width:100%!important;
    }
    html body #discover-overlay:not([data-mb-matches-mode="1"]) .discover-body{
      display:flex!important;
      flex:1 1 auto!important;
      flex-direction:column!important;
      min-height:0!important;
      height:100%!important;
    }
    html body #discover-overlay:not([data-mb-matches-mode="1"]) .discover-detail-list{
      flex:1 1 auto!important;
      padding-bottom:12px!important;
    }
    html body #discover-overlay:not([data-mb-matches-mode="1"]) button[data-mb-profile-direct="1"]{
      width:100%!important;
      min-height:48px!important;
      margin-top:auto!important;
      align-self:stretch!important;
    }

    /* Matches tabs: aria-selected is the single visual source of truth.
       A stale .primary/.active class can no longer leave a second tab painted active. */
    html body #discover-overlay[data-mb-matches-mode="1"] #mb-match-social-tabs .btn,
    html body #discover-overlay[data-mb-matches-section="1"] #mb-match-social-tabs .btn{
      background:transparent!important;
      color:#665f63!important;
      box-shadow:none!important;
    }
    html body #discover-overlay[data-mb-matches-mode="1"] #mb-match-social-tabs .btn[aria-selected="false"],
    html body #discover-overlay[data-mb-matches-section="1"] #mb-match-social-tabs .btn[aria-selected="false"]{
      background:transparent!important;
      color:#665f63!important;
      box-shadow:none!important;
    }
    html body #discover-overlay[data-mb-matches-mode="1"] #mb-match-social-tabs .btn[aria-selected="true"],
    html body #discover-overlay[data-mb-matches-section="1"] #mb-match-social-tabs .btn[aria-selected="true"]{
      background:linear-gradient(135deg,#c73473,#7a3fc6)!important;
      color:#fff!important;
      box-shadow:none!important;
    }
  }
}
