.elementor-568 .elementor-element.elementor-element-1be96b0{--display:flex;--margin-top:010px;--margin-bottom:10px;--margin-left:0px;--margin-right:0px;--padding-top:10px;--padding-bottom:50px;--padding-left:50px;--padding-right:50px;}.elementor-568 .elementor-element.elementor-element-fcaad28{--display:flex;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-568 .elementor-element.elementor-element-2fa820a{text-align:center;}.elementor-568 .elementor-element.elementor-element-2fa820a .elementor-heading-title{font-family:"Lato", Sans-serif;font-size:32px;font-weight:600;}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}}@media(min-width:768px){.elementor-568 .elementor-element.elementor-element-1be96b0{--content-width:1340px;}}@media(max-width:767px){.elementor-568 .elementor-element.elementor-element-1be96b0{--padding-top:16px;--padding-bottom:16px;--padding-left:16px;--padding-right:16px;}.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}}/* Start custom CSS for html, class: .elementor-element-9cf381d *//* PRINT MEDIA GRID */
.print-media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Image base */
.print-media-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* NO STRETCH */
  background: #fff;
  padding: 12px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

/* Horizontal newspapers */
.print-media-grid .horizontal {
  grid-column: span 2;
}

/* Vertical newspapers */
.print-media-grid .vertical {
  grid-row: span 2;
}

/* Tablet */
@media (max-width: 1024px) {
  .print-media-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .horizontal {
    grid-column: span 2;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .print-media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .horizontal,
  .vertical {
    grid-column: span 2;
    grid-row: auto;
  }
}
/*  LIGHTBOX OVERLAY  */
.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Visible state */
.image-lightbox.active {
  display: flex;
}

/* CONTENT  */
.lightbox-content {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  max-width: 80vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

/* ================= CLOSE BUTTON ================= */
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}
/* NAV BUTTONS  */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;

  /* Glass effect */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;

  color: #50589c;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

/* Hover – slightly stronger glass */
.lightbox-nav:hover {
  background: rgba(80, 88, 156, 0.35);
  color: #ffffff;
}


.lightbox-nav.prev {
  left: 32px;
}

.lightbox-nav.next {
  right: 32px;
}

/*  MOBILE */
@media (max-width: 768px) {
  .lightbox-content {
    max-width: 92vw;
    max-height: 70vh;
  }

  .lightbox-nav {
    font-size: 24px;
    padding: 10px;
  }

  .lightbox-close {
    font-size: 30px;
    top: 16px;
    right: 20px;
  }
}
@media (max-width: 768px) {
  .lightbox-nav {
    padding: 8px 10px;
    font-size: 14px;
  }
}/* End custom CSS */