/**
 * Fix for PCNRC module-slideshow iframe width overflow
 * Overrides inline style="width:150%" to prevent layout issues
 */

iframe.module-slideshow {
  width: 100% !important;
  max-width: calc(100vw - 40px) !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  iframe.module-slideshow {
    width: 100% !important;
    max-width: calc(100vw - 20px) !important;
  }
}