/* ============================================
   FLOATING BANNER ADS — Fixed left & right
   ============================================ */

.floating-banner {
  position: fixed;
  z-index: 999;
  overflow: hidden;
  border-radius: 10px;
  line-height: 0;
}

/* Left banner: top-left, just below the navbar (~120px tall) */
.floating-banner-left {
  left: 20px;
  top: 120px;
}

/* Right banner: bottom-right, flush to the viewport bottom */
.floating-banner-right {
  right: 20px;
  bottom: 120px;
}

.floating-banner a {
  display: block;
}

.floating-banner img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Mobile: cap at 80px wide to reduce viewport intrusion */
@media (max-width: 767px) {
  .floating-banner img {
    max-width: 80px;
  }
}
