.promo-banner {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.promo-image {
  display: block;
  max-width: 100%;
  height: auto;
}

.ad-menu-container {
  position: absolute;
  top: 0px;
  right: 2px;
  z-index: 100;
}

.ad-menu-btn {
  background: rgba(100, 100, 100, 0.6);
  color: #fff;
  border: none;
  border-radius: 4px;
  width: 28px;
  height: 12px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.ad-menu-btn:hover {
  background: rgba(255, 255, 255, 0.8);
}

.ad-dropdown-menu {
  display: none; 
  position: absolute;
  right: 0;
  top: 32px;
  background: #EAEAD6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 8px 0;
  min-width: 220px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #333;
}

.ad-menu-item {
  padding: 6px 12px;
  line-height: 1.4;
}

.ad-menu-divider {
  height: 1px;
  background: #eee;
  margin: 6px 0;
}

.erid-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

