.header-body.scrolled #dnn_LOGO7_imgLogo {
    height: 150px !important; /* Your new desired height on scroll */
}

.banner-wrap{
  position:relative;
  display:inline-block;
  overflow:hidden;
  border-radius:8px; /* optional */
}
.banner-img{ display:block; width:100%; height:auto; }

/* Shine */
.banner-wrap::after{
  content:"";
  position:absolute;
  top:-20%;
  left:-40%;
  width:40%;
  height:140%;
  transform:skewX(-20deg);
  background:linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.25) 50%,
    rgba(255,255,255,0) 100%);
  animation:shine 3.2s linear infinite;
  pointer-events:none;
}

@keyframes shine{
  0%   { left:-50%; }
  100% { left:120%; }
}

/* Optional pause on hover */
.banner-wrap:hover::after { animation-play-state:paused; }

/* Example CTA positioning */
.cta{
  position:absolute; bottom:16px; left:16px;
  background:#00e05a; color:#111; font-weight:800;
  padding:10px 16px; border-radius:6px; text-decoration:none;
}
