/*                                                                      */
/* 		            HIGHLIGHTS - TABLET UP                 		        */
/*                                                                      */
/* v001 02 Aug 2019 -   Initial version created from WOL tablet.css     */
/* v002 07 Aug 2019 -   Remove rule about highlight box top padding     */
/*                                                                      */
/*                                                                      */


  section.content article.highlight-box {
	margin-left: 50px;
	margin-right: 35px;
    padding-left: 20px;                 /* Needed to overrule standard article padding */
    padding-right: 20px;                /* Needed to overrule standard article padding */
  }
  section.content article.highlight-box ul.resource {
	margin-bottom: 0px;
  }
  section.content article.highlight-box.action,
  .highlight-box.action {
	/*xxbackground: xrl({_css_image-call2action}) no-repeat 100% 0;*/
	min-height: 190px;
	padding-right: 150px;
  }
  section.content article.highlight-box.indent,		/* Has indent but not the background image */
  .highlight-box.indent {
	padding-right: 150px;
  }


  /* **************************************** */
  /*              LOZENGE                     */
  /* **************************************** */

  /* change them to two columns, but only in an article, not in the side bar */

  div.lozenges {
    overflow: auto;
  }
  article p.lozenge {
    float: left;
    width: calc( (100% - var(--left-margin) ) / 2 );
    margin-right: var(--left-margin);
  }
  article p.lozenge:nth-of-type(2n) {
    margin-right: 0px;
  }
  
  /* change them to two columns at 1400, but in the sidebar only */
  @media screen and (min-width: 1400px) {
    section#main div.promo.side-note.double-stack .lozenges p.lozenge {
      float: left;
      width: calc( (100% - var(--grid-margin) ) / 2 );
      margin-right: var(--grid-margin);
    }
    section#main div.promo.side-note.double-stack .lozenges p.lozenge:nth-of-type(2n) {
      margin-right: 0px;
    }
  }
