/* assets/css/scroll-cta.css */
#n10-scroll-cta {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  max-width: 320px;
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  padding: .5rem;
  transition: transform .3s ease, opacity .3s ease;
  transform: translateY(100%);
  opacity: 0;
  z-index: 1000;
}
#n10-scroll-cta:not(.hidden) {
  transform: translateY(0);
  opacity: 1;
}
#n10-scroll-cta img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: .25rem;
  margin-right: .5rem;
}
#n10-scroll-cta-text {
  display: flex;
  flex-direction: column;
}
#n10-scroll-cta-close {
  position: absolute;
  top: .25rem;
  right: .25rem;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 600px) {
  #n10-scroll-cta {
    left: 50%;
    right: auto;
    transform: translate(-50%, 100%);
  }
}
