/* v3.5.9.1 — Migration content & alerts layout hotfix */
@media (min-width:821px){
  .alerts-list > .alert-card:last-child:nth-child(odd){
    grid-column:1 / -1;
    width:calc((100% - 18px) / 2);
    justify-self:center;
  }
}
@media (max-width:820px){
  .alerts-list > .alert-card:last-child:nth-child(odd){
    grid-column:auto;
    width:auto;
    justify-self:stretch;
  }
}
