/* 运营位外层 - 紧凑横向布局 */
.promo-wrap {
  margin: 12px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 统一卡片样式 - 横向布局 */
.promo-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--bg-color, #f0f9ff);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: all 0.2s;
}

.promo-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.promo-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--bg-color, #f0f9ff);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

/* 图标区域 */
.promo-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
}

.promo-icon {
  font-size: 36px;
  line-height: 1;
}

/* 内容区域 */
.promo-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.promo-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e293b;
  line-height: 1.3;
}

.promo-desc {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.3;
}

/* 按钮区域 */
.promo-btn-wrap {
  margin-left: 12px;
  flex-shrink: 0;
}

.promo-btn {
  display: inline-block;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: var(--btn-color, #2563eb);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.promo-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.promo-btn:disabled,
.promo-btn.claimed {
  background: #94a3b8;
  cursor: default;
  box-shadow: none;
}

.promo-btn:disabled:hover,
.promo-btn.claimed:hover {
  transform: none;
}
