/* Brand-specific 300x600 creative used in directory and news sidebars. */
.brand-sidebar-ad {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 1.25rem;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.brand-sidebar-ad img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 2;
}
.brand-sidebar-ad:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(10, 14, 26, .22);
}
.brand-sidebar-ad:focus-visible {
  outline: 3px solid #6ba3e0;
  outline-offset: 3px;
}
@media (max-width: 900px) {
  .brand-sidebar-ad { margin-top: .25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-sidebar-ad { transition: none; }
  .brand-sidebar-ad:hover { transform: none; }
}
