/* Specific styles for the tool iframes */
.tool-iframe {
  width: 100%;
  height: 75vh;        /* fills most of the viewport */
  min-height: 700px;   /* prevents tiny iframes on desktop */
  border: 0;
  display: block;
  overflow: auto;      /* default: allow iframe scrolling */
}

/* Cookie Audit only: prevent double scrollbars */
.tool-iframe--no-scroll {
  overflow: hidden;
}
    
/* Ensure cards behave responsibly on mobile without extra media queries */
.tool-card {
  width: 100%;
  max-width: 450px;
}