
/* JobLik 0.33.283
   Goal:
   - Return desktop platform cards to 0.33.281 visual proportions.
   - Add only a few pixels of card height for CTA breathing room.
   - Do NOT change image sizes.
   - Quick Access is moved by JS to the second view. */

@media (min-width:761px){

  /* Neutralize the unwanted 0.33.282 card/body padding and CTA transform. */
  .jpx-card--smartcard,
  .jpx-card--featured,
  .jpx-card--construction{
    padding-bottom:0!important;
    box-sizing:border-box!important;

    /* only a few pixels taller than the previous stable architecture */
    height:318px!important;
    min-height:318px!important;
    max-height:318px!important;
  }

  .jpx-card--smartcard .jpx-card__body,
  .jpx-card--featured .jpx-card__body,
  .jpx-card--construction .jpx-card__body{
    padding-bottom:12px!important;
    box-sizing:border-box!important;

    /* preserve image size; extra card height belongs to body/CTA area */
    height:176px!important;
    min-height:176px!important;
    max-height:176px!important;
  }

  .jpx-card--smartcard .jpx-card__body>strong,
  .jpx-card--featured .jpx-card__body>strong,
  .jpx-card--construction .jpx-card__body>strong{
    transform:none!important;
    margin-bottom:0!important;
  }

  /* Important: restore Quick Access visibility; JS will move it lower. */
  .jpx-quick{
    display:grid!important;
    margin-top:18px!important;
  }
}

/* Mobile is intentionally untouched. */
