/* Custom Ad Styling */
.dream-custom-ad {
  position: sticky;
  top: 2rem;
  max-width: 200px;
}

.dream-custom-ad img {
  transition: transform 0.2s ease-in-out;
}

.dream-custom-ad img:hover {
  transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .dream-custom-ad {
    position: static;
    max-width: 100%;
  }
}

/* Dark mode support */
html.dark .dream-custom-ad {
  border-color: #374151;
}

/* Print hiding */
@media print {
  .dream-custom-ad {
    display: none !important;
  }
}
