
/* ╔═════════════════════════════════════════════════════════════════════════╗ */
/* ║               RESPONSIVE : iPad mini 6th gen (LANDSCAPE)                ║ */
/* ╚═════════════════════════════════════════════════════════════════════════╝ */

@media only screen
  and (min-width: 1024px)
  and (max-width: 1133px)
  and (orientation: landscape)
  and (hover: none)
  and (pointer: coarse) {

    /* nothing to declare */
}



/* ╔═════════════════════════════════════════════════════════════════════════╗ */
/* ║                 RESPONSIVE : iPad mini 6th gen (PORTRAIT)               ║ */
/* ╚═════════════════════════════════════════════════════════════════════════╝ */

@media only screen
  and (min-width: 744px)
  and (max-width: 768px)
  and (orientation: portrait)
  and (hover: none)
  and (pointer: coarse) {


  .phone-portrait { display: block; }
  .desktop, .tablet-portrait, .tablet-landscape, .phone-landscape { display: none; }


  /* display portrait imagery and text on portrait orientation */
  .orientation-wrapper .framed-wrapper .orientation-image .img-portrait  { display: block; }
  .orientation-wrapper .framed-wrapper .orientation-image .img-landscape { display: none;  }

  .orientation-text .text-portrait  { display: block; }
  .orientation-text .text-landscape { display: none;  }
}
