/* Sponsor/Promo Styles - Ad blocker friendly names */
/* These are copies of ad- styles but with promo- prefix to avoid ad blockers */

.promo-wrapper {
  margin-bottom: 1.5rem;
}

.promo-container {
  position: relative;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  padding: 0;
  text-align: center;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.promo-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-color: #0d6efd;
}

.promo-content {
  display: block;
  width: 100%;
}

.promo-link {
  display: block;
  text-decoration: none;
  color: inherit;
  line-height: 0;
}

.promo-image {
  width: 100%;
  height: 150px;
  display: block;
  border-radius: 0.25rem;
  object-fit: cover;
}

.promo-placeholder {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9ecef;
  border-radius: 0.25rem;
  padding: 1rem;
}

.promo-placeholder i {
  font-size: 2rem;
  color: #6c757d;
}

.promo-sponsored-label {
  margin-top: 0.5rem;
  text-align: center;
  padding: 0.5rem;
}

.promo-sponsored-label small {
  color: #6c757d;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.promo-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0.25rem;
}

.promo-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.25rem;
}

.promo-link-container {
  padding: 2rem;
}

/* Responsive sizes */
@media (max-width: 991px) {
  .promo-container {
    padding: 0;
  }
  
  .promo-placeholder {
    min-height: 200px;
    padding: 0.75rem;
  }
}
