
/* The Account Hub's card headings and sub-lines were rendering as their own white
   pills inside the card. Cause: the global
   `.card, [class*="-card"], [class*="card-"], .tile, …` rule matches ANY class
   containing "card-", and these are `.ah-card-h` / `.ah-card-s`. They are text, not
   cards, so the fill, radius, border and shadow are cleared and the panel reads as
   one tile with the text on it. Affects all 16 panels, which all had the same fault. */
#accountHub .ah-card-h,
#accountHub .ah-card-s{
  background:none !important;
  background-color:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  padding:0 !important;
}
