/* V203 — clickable-card link integrity.
 * Legacy button styling was shrinking the absolute hit area to its padding
 * width. Reset that presentation only for the semantic full-card link.
 */
.ia-card--clickable{isolation:isolate}
.ia-card--clickable>.ia-card__hit-area{
  position:absolute!important;
  inset:0!important;
  z-index:3!important;
  display:block!important;
  width:auto!important;
  min-width:0!important;
  height:auto!important;
  min-height:0!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  border-radius:inherit!important;
  background:transparent!important;
  color:inherit!important;
}
.ia-card--clickable>.ia-card__hit-area:focus-visible{outline:3px solid rgba(37,99,235,.72);outline-offset:-4px}
