/* Ad-GetViral Container & Slideshow Styles */
.agv-ad-wrapper {
  display: block;
  width: 100%;
  margin: 15px auto;
  text-align: center;
  clear: both;
  position: relative;
  box-sizing: border-box;
}

.agv-ad-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  margin-bottom: 4px;
}

.agv-ad-stacked {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.agv-ad-item {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.agv-ad-item img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.agv-ad-item img:hover {
  transform: scale(1.01);
}

.agv-ad-item video {
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
}

.agv-ad-slideshow {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 80px;
}

.agv-ad-slideshow .agv-ad-slide {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.agv-ad-slideshow .agv-ad-slide.agv-active {
  display: block;
  opacity: 1;
}

.agv-slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
}

.agv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.agv-dot.active {
  background: #0073aa;
}
