/***** Adunits *****/

.lb1 { margin-bottom: 0; }
.sky1, .sky3 { left: -280px; width: 300px; display: flex; justify-content: right; }
.sky2, .sky4{ right: -280px; width: 300px; display: flex; justify-content: left; }
.sky { position: absolute; margin-top: var(--generic-gap); }
.press-sky1, .press-sky2 { display: inline-block; }
.article-widget-height { height: 100%; }
.widget-height { height: 50%; }
.widget-sticky { display: flex; position: -webkit-sticky; position: sticky; top: 120px; }
.cncpt-outstream { margin-bottom: 1.25rem; }
#div-1x1 { display: none; }
.ad-label {
	display: block;
    color: var(--lighter-dark-color);
    font-size: small;
	text-align: center;
}

/* Topscroll & Wallpaper */
.adsm-wallpaper { position: absolute !important; top: 203px !important; }
.adsm-outstream { background-color: none !important; margin-bottom: 1.25rem !important; }


/* 3-column wrapper: side gutters + fixed center width */
.page-with-sidebanners{
  display: grid;
  grid-template-columns: 1fr minmax(0, 1040px) 1fr;
  width: 100%;
  margin: 0 auto;
  align-items: start;
}

/* Center column stays like before */
.content-column{
  grid-column: 2;
  width: 100%;
}

/* Side columns */
.sidebanner-container{
  display: flex;
  align-items: flex-start;
  min-width: 0;
}

.sidebanner-container.left{
  grid-column: 1;
  justify-content: flex-end;
  min-height: 100%;
}

.sidebanner-container.right{
  grid-column: 3;
  justify-content: flex-start;
  min-height: 100%;
}

/* Sticky inner (this is the actual sticky element) */
.sidebanner-sticky{
  position: sticky;
  top: 120px;
  width: 300px;
  height: fit-content;
  z-index: 50;
}

/* Hide skies below breakpoint */
@media (max-width: 1360px){
  .page-with-sidebanners{
    grid-template-columns: minmax(0, 1040px);
  }
  .content-column{ grid-column: 1; }
  .sidebanner-container{ display: none; }
}